Hello everyone
how can i delay loading the form until all functions executes its work???
Printable View
Hello everyone
how can i delay loading the form until all functions executes its work???
Use Sub Main to load Form (at startUp) and Form.Show after the job is done. Use a splashForm if needed.
well what if this form is not the first
and i'm already using a splash form for the first
actually this is the second form and it has so many functions that should be executed befor showing the form
Then load it. Let functions and stuff work (but don't call the form by setting captions to labels or text in textboxes or anything connected to the form). When all is done: Form.Show.
i did it
thanks
:)
well done!Quote:
Originally Posted by om-yousif