I'm using a timer slide 1 form out from behind another .
The probem is when is when the timer goes off
frm 2 gets in front of frm1Code:Private Sub Timer1_Timer() Form2.Left = Form2.Left - 75 If Form2.Left <= 2580 Then Timer1.Enabled = False End Sub
Heres the trigger
and frm2 loadCode:Private Sub Command3_Click() Form2.Show Timer1.Enabled = True End Sub
it would also be nice if it was locked to form1 until it was used . that way you could also move frm1 and frm2 would follow .Code:Private Sub Form_Load() Me.Top = Form1.Top Me.Left = Form1.Left Form1.SetFocus End Sub




Reply With Quote