sys info

ADO DOT NET

Centurion
Joined
Dec 20, 2006
Messages
160
I am getting system information on my form load event
but it takes some time to complete for my form to be loaded
so what do you recommend for this?
is there a from_load_complete or something similar for me to put my code there, so first my form loads and then it gets the sys info?
 
If you are doing this with .Net 2 then you might want to look at the BackgroundWorker component.

Other than that you would probably need to look at retreiving the information in a background thread rather than the main UI thread.
 
Back
Top