Showing Splash Screen
-
hi, i want to show a splash screen in my vb.net windows project. a splash screen or welcome screen should come up as the project is loading on running the EXE file. experienced VB developers might know the solution to this in vb.net any ideas on how to implement that? Regards, Kapil Thakur (Where's there is Kapil , there is a way) - thakur.kapil@gmail.com
-
hi, i want to show a splash screen in my vb.net windows project. a splash screen or welcome screen should come up as the project is loading on running the EXE file. experienced VB developers might know the solution to this in vb.net any ideas on how to implement that? Regards, Kapil Thakur (Where's there is Kapil , there is a way) - thakur.kapil@gmail.com
There's a component built in, but it's trivial. Create a window with no frame, put your bitmap on it, and show it as the first step in your app, hide it with a timer
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
hi, i want to show a splash screen in my vb.net windows project. a splash screen or welcome screen should come up as the project is loading on running the EXE file. experienced VB developers might know the solution to this in vb.net any ideas on how to implement that? Regards, Kapil Thakur (Where's there is Kapil , there is a way) - thakur.kapil@gmail.com
if you're in debugging window screen of vb.net, click Project from toolbar and select "Add new item" then select Splashscreen... then right click at your project name (sample) then choose properties, then select the "Application" tab and you will see a "Start Up" chose the splash screen then save... and then play your application... you have to set a timer for the splash screen...
nothing is impossible.....
-
hi, i want to show a splash screen in my vb.net windows project. a splash screen or welcome screen should come up as the project is loading on running the EXE file. experienced VB developers might know the solution to this in vb.net any ideas on how to implement that? Regards, Kapil Thakur (Where's there is Kapil , there is a way) - thakur.kapil@gmail.com
hi , creat a new form called splash.vb , add images ,labels to this form in the load event of the startup form in the project wrtie the following
dim frmSplash as new splash frmSplash.show
in the end , write thisfrmsplash.close
this code show the splash screen until the load proccess is complete , then closed automaticalyMohamad A. Flefel mflefel@hotmail.com +962 79 5963865 C#.net & VB.net Developer
-
if you're in debugging window screen of vb.net, click Project from toolbar and select "Add new item" then select Splashscreen... then right click at your project name (sample) then choose properties, then select the "Application" tab and you will see a "Start Up" chose the splash screen then save... and then play your application... you have to set a timer for the splash screen...
nothing is impossible.....
hi, i did not your meaning by "if you're in debugging window screen of vb.net, click Project from toolbar and select "Add new item" then select Splashscreen..." please elaborate it a little although i have searched every option avaialble in VisualStudio.Net......but i did not find any option as "Splash screen" please specify Regards, Kapil Thakur (Where's there is Kapil , there is a way) - thakur.kapil@gmail.com