Hi, by Erel advice I move my code to a Class.
This code reads an html page and update sql records.
I need to callit from many project activities but I need the class job to be completed until continue.
If I code:
Dim s as NtSyncro (my class)
s.initialize 'init the class
s.wNtSyncro(0,0) 'call the method
log("back from class")
DoUpdateList 'refresh a list
log("back from refresh")
I get in the log:
back from class
back from refresh
wNtSyncro log lines
Then the list is not refreshed
How to do it?
Please see atached image.