Click here to Skip to main content
15,895,084 members
Home / Discussions / C#
   

C#

 
GeneralC# Keystroke logger? Pin
Anonymous1-Apr-04 21:58
Anonymous1-Apr-04 21:58 
GeneralRe: tracing keystrokes using c# Pin
Dave Kreskowiak2-Apr-04 4:27
mveDave Kreskowiak2-Apr-04 4:27 
Generalproblem using CommandBarComboBox in Outlook Add Ins Pin
naresh_pandey131-Apr-04 21:00
naresh_pandey131-Apr-04 21:00 
GeneralSetup Project Pin
DucLinh1-Apr-04 20:29
DucLinh1-Apr-04 20:29 
GeneralRe: Setup Project Pin
Heath Stewart2-Apr-04 10:04
protectorHeath Stewart2-Apr-04 10:04 
GeneralRe: Setup Project Pin
Demian Panello13-Apr-04 4:03
Demian Panello13-Apr-04 4:03 
GeneralDataGrid Pin
DucLinh1-Apr-04 20:12
DucLinh1-Apr-04 20:12 
GeneralRe: DataGrid Pin
benqazou2-Apr-04 5:46
benqazou2-Apr-04 5:46 
I am not sure what you need to do, but I think this can help you..

In the constructor of the form (for example), you add something like this :

DataGridTextBoxColumn _datagridtextBox = (DataGridTextBoxColumn)YourDataGrid.TableStyles[0].GridColumnStyles[X];<br />
			_datagridtextBox.TextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(Execute_This);

where X is the index of the column that is supposed to have only numbers of 4 characters..

You will also need to write something like this :

private void Execute_This(object sender, System.Windows.Forms.KeyPressEventArgs e)<br />
{<br />
<br />
   TextBox tBox = (textBox) sender;<br />
   //tBox.Text is the text that has been already written by the user..<br />
   //e.KeyChar is the chararacter corresponding to the character that the user has just written..You just make tests..<br />
<br />
}

Generaldatatype check Pin
Anonymous1-Apr-04 19:01
Anonymous1-Apr-04 19:01 
GeneralRe: datatype check Pin
Andy Wieberneit1-Apr-04 20:19
Andy Wieberneit1-Apr-04 20:19 
GeneralRe: datatype check Pin
Anonymous2-Apr-04 2:21
Anonymous2-Apr-04 2:21 
GeneralOptimization of C# code!! Pin
abc8761-Apr-04 18:15
abc8761-Apr-04 18:15 
GeneralRe: Optimization of C# code!! Pin
Tristan Rhodes1-Apr-04 20:02
Tristan Rhodes1-Apr-04 20:02 
GeneralRe: Optimization of C# code!! Pin
Daniel Turini1-Apr-04 20:35
Daniel Turini1-Apr-04 20:35 
GeneralRe: Optimization of C# code!! Pin
Kastellanos Nikos1-Apr-04 23:09
Kastellanos Nikos1-Apr-04 23:09 
GeneralRe: Optimization of C# code!! Pin
Kastellanos Nikos1-Apr-04 23:24
Kastellanos Nikos1-Apr-04 23:24 
GeneralA question of a Game Pin
lajiyo1-Apr-04 15:36
lajiyo1-Apr-04 15:36 
GeneralRe: A question of a Game Pin
Christian Graus1-Apr-04 15:53
protectorChristian Graus1-Apr-04 15:53 
GeneralRe: A question of a Game Pin
CWIZO2-Apr-04 2:42
CWIZO2-Apr-04 2:42 
GeneralRe: A question of a Game Pin
lajiyo2-Apr-04 23:01
lajiyo2-Apr-04 23:01 
GeneraldataSet, combobox Pin
DougW481-Apr-04 14:53
DougW481-Apr-04 14:53 
GeneralRe: dataSet, combobox Pin
Anonymous1-Apr-04 16:47
Anonymous1-Apr-04 16:47 
GeneralC# Whidbey Language Changes Pin
Eric Gunnerson (msft)1-Apr-04 13:57
Eric Gunnerson (msft)1-Apr-04 13:57 
GeneralRe: C# Whidbey Language Changes Pin
CWIZO2-Apr-04 2:46
CWIZO2-Apr-04 2:46 
Generalstruct conversion(VB-&gt;C#) problem Pin
Member 6548331-Apr-04 13:21
Member 6548331-Apr-04 13:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.