Another problem I am looking into is the following:
How does one use a command button to run private sub's (again) or (at all)?
For instance if a website isn't available at the exact moment that it is being checked for certain information on it. I have it set to say "not there." Then, I want to have a "retry" command button appear (which it does) and call the same sub's that did the work b4 to check for that information again in case the site was just too busy or whatever...
I have been googling for the better part of a day on this. I cant seem to get this to work without errors (syntax).
Private Sub Command2_Click()
Call Winsock2_Connect
End Sub
That "should" go to the sub that I want to run again. Then after that I want it to go to another sub for 'data-arrival'... (But no point in that if I cant get the first one to work) again if the retry button is clicked. I hope this is clear enough to actually understand. :)
Any ideas? Thanks :)