I have a file open dialog box. When the user select the file I want to display the contents in a label one row at a time based on a timer. I have tried using RandomAccessFile but am having problems. I have a file stored on the the Emulator SDCARD but when I select the file it keeps telling me that it doesn't exist.
B4X:
fdlg.Show("Load File","Load File","Cancel","",Null)
Dim fle As String
fle = fdlg.FilePath
lblfilename.text = fle & "/" & fdlg.ChosenName
Dim raf As RandomAccessFile
raf.Initialize(File.l, lblfilename.text, False)
lblfilename.Text =raf.readObject(raf.CurrentPosition)