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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top