i have a main form that when opened runs a routine in another form that
checks for program updates from a remote website. The problem is the main form routine does not wait for the routine to finish. I have tried DoEvents in a couple places to no avail. Heres the routine:
frmDownLoad.CheckForUpdate
s
'DoEvents
If frmDownLoad.mNewVersionAva
ilable Then
frmDownLoad.Show
End If
end sub
How can i force the check for updates to run ?
Start Free Trial