View Single Post
  #2 (permalink)  
Old 05-08-2008, 06:48 PM
Erel's Avatar
Erel Erel is offline
Administrator
 
Join Date: Apr 2007
Posts: 3,185
Default

Interesting question with a nice solution:
Code:
Sub App_Start
    Form1.Show
    Hardware1.New1
    timer1.Interval = 5000
    timer1.Enabled = true
    Msgbox("Some Message","title",cMsgboxOK)
    timer1.Enabled = false    
End Sub

Sub Timer1_Tick
    Timer1.Enabled = False
    Hardware1.KeyPress(13)
End Sub
Reply With Quote