A Armin Zingler Jan 9, 2004 #2 freddy said: how do I create a splash screen to load before the app Click to expand... module main sub main dim splash as splashform dim main as mainform splash = new splashform splash.show splash.refresh main = new mainform main.show splash.close application.run(main) end sub end module Set this sub as the startup object in the project properties.
freddy said: how do I create a splash screen to load before the app Click to expand... module main sub main dim splash as splashform dim main as mainform splash = new splashform splash.show splash.refresh main = new mainform main.show splash.close application.run(main) end sub end module Set this sub as the startup object in the project properties.