lets say that you have main form (frmMain), this is the startup object, and a config form (frmConfig).
When the app starts, the application automatically loads the main form (frmMain). at frmMain_Load() you can:
Load the config form (frmConfig) with Load frmConfig, this made the form be in memory but "hiden". In this way, when you just do frmConfig.Show (in a command button i.e.) it will take less time to show (but more mem,b/c the form is always in mem) than just doing frmConfig.show.
Ofcourse you can only do frmConfig.show, it only loads the form in that moment, it will take less mem, but more time.
hope it helps ...... :
bluenote@uyuyuy.com
(excuse my english)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.