Click here to Skip to main content
15,890,506 members
Home / Discussions / C#
   

C#

 
QuestionFace detection algorithm? Pin
tuanlm7522-Apr-07 20:34
tuanlm7522-Apr-07 20:34 
AnswerRe: Face detection algorithm? Pin
Christian Graus22-Apr-07 22:44
protectorChristian Graus22-Apr-07 22:44 
QuestionXML Output Formatting with Formatting.Indented [modified] Pin
livez22-Apr-07 20:23
livez22-Apr-07 20:23 
AnswerRe: XML Output Formatting with Formatting.Indented Pin
livez22-Apr-07 22:01
livez22-Apr-07 22:01 
Question[Message Deleted] Pin
7122-Apr-07 19:17
7122-Apr-07 19:17 
AnswerRe: DataGridView.CellBeginEdit Event() Pin
Sathesh Sakthivel22-Apr-07 19:33
Sathesh Sakthivel22-Apr-07 19:33 
GeneralRe: DataGridView.CellBeginEdit Event() Pin
Sathesh Sakthivel22-Apr-07 20:24
Sathesh Sakthivel22-Apr-07 20:24 
AnswerRe: DataGridView.CellBeginEdit Event() Pin
Keshav V. Kamat22-Apr-07 22:32
Keshav V. Kamat22-Apr-07 22:32 
hi Prasad,

you must have a got a pretty decent idea by now about the CellBeginEvent.
In the same, you need to validate the text to be of integer type.
Use the following piece of code for DataGrid1, its row 1 and cell 1

if (!Char.IsDigit(e.KeyChar) && e.KeyChar !=(char)8)
    { 
MessageBox.Show("The text that you have entered is not integer.");
    } 
else 
{
            LoggerDatagrid.Rows[1].Cells[1].Value = integer value that you want;
}


I hope this helps.

Keshav Kamat Smile | :)
India

QuestionMediaplayer using a userdefined audiodevice Pin
pyjamaboy22-Apr-07 19:14
pyjamaboy22-Apr-07 19:14 
Questionhelp me how to convert BindingSource to DataTable ??? Pin
phantanagu22-Apr-07 18:26
phantanagu22-Apr-07 18:26 
AnswerRe: help me how to convert BindingSource to DataTable ??? Pin
_mubashir22-Apr-07 20:53
_mubashir22-Apr-07 20:53 
AnswerRe: help me how to convert BindingSource to DataTable ??? Pin
Keshav V. Kamat22-Apr-07 22:19
Keshav V. Kamat22-Apr-07 22:19 
QuestionLogin Page Pin
nuraprakash22-Apr-07 18:17
nuraprakash22-Apr-07 18:17 
AnswerRe: Login Page Pin
Christian Graus22-Apr-07 18:45
protectorChristian Graus22-Apr-07 18:45 
GeneralRe: Login Page Pin
Vikram A Punathambekar23-Apr-07 2:14
Vikram A Punathambekar23-Apr-07 2:14 
GeneralRe: Login Page Pin
Christian Graus23-Apr-07 2:17
protectorChristian Graus23-Apr-07 2:17 
AnswerRe: Login Page Pin
Keshav V. Kamat22-Apr-07 22:10
Keshav V. Kamat22-Apr-07 22:10 
AnswerRe: Login Page Pin
Keshav V. Kamat22-Apr-07 22:13
Keshav V. Kamat22-Apr-07 22:13 
AnswerRe: Login Page Pin
Keshav V. Kamat22-Apr-07 22:15
Keshav V. Kamat22-Apr-07 22:15 
Questionhow to HTTP post multiple files and key-value pairs? Pin
Patrick Klug22-Apr-07 17:40
Patrick Klug22-Apr-07 17:40 
QuestionOnPaint Pin
netJP12L22-Apr-07 17:17
netJP12L22-Apr-07 17:17 
AnswerRe: OnPaint Pin
Christian Graus22-Apr-07 18:10
protectorChristian Graus22-Apr-07 18:10 
GeneralRe: OnPaint Pin
netJP12L23-Apr-07 4:09
netJP12L23-Apr-07 4:09 
GeneralRe: OnPaint Pin
Christian Graus23-Apr-07 10:37
protectorChristian Graus23-Apr-07 10:37 
QuestionEmbedded User Control in IE - Events Pin
linuxdude22-Apr-07 15:23
linuxdude22-Apr-07 15:23 

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.