Hello, I bisngo for your help ... I wish that pressing the Esc key on the printer, be terminated with the mask, but do not know how or even if you can .....
thanks
Hello
Hello, I bisngo for your help ... I wish that pressing the Esc key on the printer, be terminated with the mask, but do not know how or even if you can .....
thanks
Hello
Don't really understand the question. Translation lacking.
I don't think pressing keyboard ESC will stop print.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Hello, I'm sorry .. I try to explain better .... I was wondering if it is possible by pressing the Esc key on the keyboard, close a form.
thanks
Hello
Hello, I found the solution on the internet that I report below
Private Sub Form_KeyDown (KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyEscape Then btnClose_Click
end Sub
Private Sub btnClose_Click ()
On Error GoTo Err_btnClose_Click
DoCmd.Close acForm, "frmArguments"
Exit_btnClose_Click:
Exit Sub
Err_btnClose_Click:
MsgBox Err.Description
Resume Exit_btnClose_Click
end Sub