i am trying to enable specific key presses. i am having trouble with the period key and the decimal key. i tried this
but it doesn't seem to work... the first line does not respond to any key press, while the second line responds to pressing "n" lowercase... i am puzzled... anyone have an idea?
Code:
Asc(e.KeyChar) = Keys.Decimal
Asc(e.KeyChar) = Keys.OemPeriod
but it doesn't seem to work... the first line does not respond to any key press, while the second line responds to pressing "n" lowercase... i am puzzled... anyone have an idea?