Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim job1T As HttpJob
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
'Activity.LoadLayout("Layout1")
job1T.Initialize("job1T", Me)
job1T.Download("http://www.MySite.com/MyText.txt")
End Sub
Sub JobDone(Job As HttpJob)
If Job.Success = True Then
Msgbox(Job.GetString, "")
End If
End Sub