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?
Printable View
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?
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