Hi:
That is the only error that is shown.
This code resides in a service module. It worked perfectly before updating to v8.8.
The code is:
Sub Process_Globals
Private job1 as HttpJob
End Sub
'*******************************************************
Public Sub btnGet
job1.Initialize("Job1", Me)
job1.Download("http://" & NAME_SERVER_DOMAIN & "/dir1/default.htm")
End Sub
'*******************************************************
Sub JobDone (Job As HttpJob)
Log("Event Fired.")
If Job.Success = True Then
Select Job.JobName
Case "Job1"
ToastMessageShow(Job.GetString, True)
End Select
End If
Job.Release
End Sub
'*******************************************************
Thanks, Rob
Edit: The tab indents don't show when I post.