I would like to call a message box only after a number key (1234567890) has been pressed. what is the event and code that i need to use? the code i am trying to modify is
Code:
Private Sub ib_payout_Change()
If MsgBox("Please use good judgement when changing the payout price for an order. Are you sure you wish to change this price?", vbOKCancel, "Change Price") = vbOK Then
Exit Sub
Else
ib_total_form.Show
Exit Sub
End If
End Sub