PDA

Click to See Complete Forum and Search --> : Urgent!!! 2 Problems Again


Luis Moises Rojas
Nov 4th, 1999, 07:11 PM
Not matter how i try, i can not use F3 on a text box to display a FORM. Does anybody knows the codes?

2. My App. control all windows app (Excel, Word,etc), its mean: Time in, Time out,etc. But How Could i control how many pages have been printing?

David Laplante
Nov 4th, 1999, 07:38 PM
For your first question try using the KeyDown event of your text box with the bkKeyF3 like this


Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
if KeyCode = vbKeyF3 then NameOfYourForm.show
End Sub