M
Matt Gilarde
Guest
The AVM doesn't set LASTKEY for keypress events in .NET controls. You have to look at the KeyEventArgs object which is sent to your event handler. METHOD PRIVATE VOID radTextBox1_KeyUp( INPUT sender AS System.Object, INPUT e AS System.Windows.Forms.KeyEventArgs ): IF e:KeyCode = System.Windows.Forms.Keys:Enter THEN MESSAGE "hi" VIEW-AS ALERT-BOX RETURN. END METHOD.
Continue reading...
Continue reading...