Android Question Open failed no such file or directory

khwarizmi

Active Member
Licensed User
Longtime User
Hi all

This error appears on some devices, not all:
android.system.errnoxexception open failed no such file or directory

B4X:
Dim job2 As HttpJob
            job2.Initialize("", Me)
            job2.Download("http://mywebside.com/addstu.php?nm=" & txtname.Text & "&fl=" & cmbbr2.SelectedIndex & "&lvl=" & cmblvl.SelectedIndex & "&un=" & txtnum.Text & "&phn=" & txtphn.Text)
            ProgressDialogShow("Processing")
            Wait For (job2) JobDone(job2 As HttpJob)
            ProgressDialogHide
            Dim res As String
            res = job2.GetString
            If res.Contains("added") Then
                ToastMessageShow("Added successfully",True)
            End If

Any ideas??
Thanks.
 
Top