Hi Damian,
I had this problem yesterday also when I was making a sample from a splash
form.
Today I thought let find somebody else find this solution for you, but
thinking it over it is simple.
I hope this helps?
Cor
\\\
private frm as new form2
Private WithEvents timer1 As New Windows.Forms.Timer
Private Sub Form1_Load(ByVal sender _
As Object, ByVal e As System.EventArgs) _
Handles MyBase.Load
timer1.Enabled = True
timer1.Interval = 12500
frm.Show()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles timer1.Tick
if frm.readyswitch = true then 'readyswitch as public variable
frm.Close()
frm.Dispose()
timer1.Enabled = False
end if
End Sub
///
|