splash screen

  • Thread starter Thread starter freddy
  • Start date Start date
freddy said:
how do I create a splash screen to load before the app

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.
 
Back
Top