creating a splash screen in VB.NET

  • Thread starter Reny J Joseph Thuthikattu
  • Start date
R

Reny J Joseph Thuthikattu

Hi
I want to create a splash screen for my VB.NET application.Any idean how do
i make one?
Reny
 
C

Cor Ligthert

Hi Reny,

typed roughly here see it as pseudo code

I hope this helps?

Cor

\\\
private tim as windows.forms.form.timer
private frm as new form2
sub formload
frm.show
tim.interval=5000
tim.enabled = true
end sub
sub tim.ticks event
frm.close
end sub
///
 
C

Cor Ligthert

Hi Herfried,

(still saterday night)

Did you see that splash screen from Armin, it is real great

Cor
 

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

Top