Hi all. The event in VB6 for form objects called
objectName_KeyPress(KeyAscii As Integer)
reads a key press and has the ascii value as a parameter.
If you put a pause point in the function with a reference to the parameter and press keys in the field, you can find out the ascii value of whatever you want by mouse over of the variable. My question is....
Why will 'tab' not register as a key press. The function never launches when 'tab' is pressed? I know that 'tab' is ascii 9 but the keyPress event ignores it. Is there a way to have it recognized? Thanks all
PB
objectName_KeyPress(KeyAscii As Integer)
reads a key press and has the ascii value as a parameter.
If you put a pause point in the function with a reference to the parameter and press keys in the field, you can find out the ascii value of whatever you want by mouse over of the variable. My question is....
Why will 'tab' not register as a key press. The function never launches when 'tab' is pressed? I know that 'tab' is ascii 9 but the keyPress event ignores it. Is there a way to have it recognized? Thanks all
PB