Link to home
Start Free TrialLog in
Avatar of VBStarter
VBStarter

asked on

Background Processing

A VB newbie needs to know:

Another programmer I know wants to be able to load forms in the background and continue processing the main program.  Note: the forms have alot of controls and take some time to load.  

My question, is there a way to do this?

If not, I need to be able to tell him why.  

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Voodooman
Voodooman

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ofirg
ofirg

Try doing what most windows app do...
show a splash window on the startup of your application.

1) add this sub to one of your modul

Public Sub Main()
  frmSplash.Show
  call InitProgram ' your program initialization
  Unload frmSplash
End Sub

2) In project->properties set Sub Main as your start object

Joy and Happiness