VB6 app.

Connecting remotely to my database can take sometime... I would like to have a form load that disables the original form show onscreen and reads simply, "Please wait while I process your request."

Then when the connection is made, the info is queried and filled, have the please wait form unload itself.

I tried wrapping my connections with:

Code:
frmWait vdModal, Me

all my code and fillfields stuff here

unload frmwait
but that didn't work. frmWait never unloads... I guess because it is shown modally. However, I thought that was a decent idea. Maybe that idea just needs from tweaking?