creating a splash screen in VB.NET

  • Thread starter Thread starter Reny J Joseph Thuthikattu
  • Start date 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
 
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
///
 
Hi Herfried,

(still saterday night)

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

Cor
 
Back
Top