I have this in Globals:
And this in Main Activity_Create:
And this sub:
The problem is that it does not go through the sub.
Thanks
PK
Globals:
Private InterNetJob As HttpJob
Private InternetAccess As Boolean
And this in Main Activity_Create:
Job:
InterNetJob.Initialize("Job1", Me)
InterNetJob.Download("http://www.google.com")
And this sub:
Sub:
Sub JobDone(Job As HttpJob)
If Job.JobName="Job1" And InterNetJob.Success=False Then
InternetAccess = False
Else
InternetAccess = True
End If
Job.Release
End Sub
The problem is that it does not go through the sub.
Thanks
PK