Hi, i'm using the code below to get the filename from filechooser and put it in a i tag of imageview.
But i obtain a number instead of filename.
Sub chooser_Result (Success As Boolean, Dir As String, FileName As String)
If Success Then
selectpecs.Bitmap=LoadBitmap(Dir,FileName)
selectpecs.Tag = FileName.SubString(FileName.LastIndexOf("/") + 1)
End If
End Sub
But i obtain a number instead of filename.
Sub chooser_Result (Success As Boolean, Dir As String, FileName As String)
If Success Then
selectpecs.Bitmap=LoadBitmap(Dir,FileName)
selectpecs.Tag = FileName.SubString(FileName.LastIndexOf("/") + 1)
End If
End Sub