I am using
Windows Datagridview [2005] - and want the pressed key change to Ucase
immediatley - without going upto the cellendedit() event,
Any idea:afrog:
Printable View
I am using
Windows Datagridview [2005] - and want the pressed key change to Ucase
immediatley - without going upto the cellendedit() event,
Any idea:afrog:
Set the DGV's DataGridViewTextBoxEditingControl.CharacterCasing = CharacterCasing.Upper and you'll be all set. In order to get a hold of the DataGridViewTextBoxEditingControl, you need to handle the DGV's EditingControlShowing event. Search this forum for the term "EditingControlShowing" and you will find some examples.