Hi, I have a class which gets a html page and writes to a sql database.
I need to wait for it to finish.
I call it from some other activities using:
s.Initialize
s.wNtSyncro(0,0)
Now, trying to use wait for, as I understood from the PDF manual (4.6.4), I add the following line in the JobDone Sub of my class:
CallSubDelayed(Me,"SyncOk")
and in my calling code
s.Initialize
s.wNtSyncro(0,0)
Wait For SyncOk
Then I get an error: Sub SyncOk was not found.
How to do it?
Thanks