ShortcutsEnabled on TextBox (WinForms DotNet) does not perform SelectAll with Control+A
Friday, 3 November 2006
In the KeyPress event handler
If Asc(e.KeyChar) = 1 Then
CType(sender, TextBox).SelectAll()
e.Handled = True
End If
technorati tags:.net, textbox, vb.net, c#, shortcutsenabled