Click here to Skip to main content
15,900,511 members
Home / Discussions / C#
   

C#

 
AnswerRe: need coding in c# Pin
Martin#12-Apr-07 21:47
Martin#12-Apr-07 21:47 
QuestionRegarding Adding Bullets in C# Pin
sulabh202012-Apr-07 20:07
sulabh202012-Apr-07 20:07 
AnswerRe: Regarding Adding Bullets in C# Pin
Jaiprakash M Bankolli13-Apr-07 1:09
Jaiprakash M Bankolli13-Apr-07 1:09 
AnswerRe: Problem Regarding Adding Bulltes to word document using c# Pin
Sathesh Sakthivel12-Apr-07 19:54
Sathesh Sakthivel12-Apr-07 19:54 
QuestionRe: Problem Regarding Adding Bulltes to word document using c# Pin
sulabh202012-Apr-07 20:03
sulabh202012-Apr-07 20:03 
QuestionDateTimrPicker [modified] Pin
7112-Apr-07 19:48
7112-Apr-07 19:48 
QuestionHow to insert data directly in datagridview? Pin
indiaone12-Apr-07 19:41
indiaone12-Apr-07 19:41 
AnswerRe: How to insert data directly in datagridview? Pin
Sathesh Sakthivel12-Apr-07 19:57
Sathesh Sakthivel12-Apr-07 19:57 
Try Like this

  public class custDataGrid:DataGrid<br />
<br />
        {<br />
<br />
                protected override bool ProcessCmdKey(ref Message msg, Keys keyData)<br />
<br />
                {<br />
<br />
                        if(msg.WParam.ToInt32() == (int) Keys.Enter)<br />
<br />
                        {<br />
<br />
                                if( this.CurrentCell.ColumnNumber == 1 )<br />
<br />
                                {<br />
<br />
                                        string userid = this[this.CurrentRowIndex,0].ToString();<br />
<br />
                                        string passwd = this[this.CurrentRowIndex,1].ToString();<br />
<br />
                                        <br />
<br />
                                        //Do your insertion work here<br />
<br />
                                }<br />
<br />
                                SendKeys.Send("{Tab}");<br />
<br />
                                return true;<br />
<br />
                        }<br />
<br />
                        return base.ProcessCmdKey (ref msg, keyData);<br />
<br />
                }<br />
<br />
 <br />
<br />
        }<br />
<br />


Regards,

Satips.

Questionstatusbar Pin
kalyan_241612-Apr-07 19:41
kalyan_241612-Apr-07 19:41 
AnswerRe: statusbar Pin
Sathesh Sakthivel12-Apr-07 19:52
Sathesh Sakthivel12-Apr-07 19:52 
AnswerRe: statusbar Pin
KKrista12-Apr-07 19:59
KKrista12-Apr-07 19:59 
Questionmultiple instances Pin
picasso212-Apr-07 17:37
picasso212-Apr-07 17:37 
QuestionRe: multiple instances Pin
Vikram A Punathambekar12-Apr-07 18:08
Vikram A Punathambekar12-Apr-07 18:08 
AnswerRe: multiple instances Pin
Christian Graus12-Apr-07 18:16
protectorChristian Graus12-Apr-07 18:16 
AnswerRe: multiple instances Pin
Bhavik Solanki12-Apr-07 18:42
Bhavik Solanki12-Apr-07 18:42 
GeneralRe: multiple instances Pin
picasso212-Apr-07 19:02
picasso212-Apr-07 19:02 
GeneralRe: multiple instances Pin
Christian Graus12-Apr-07 19:19
protectorChristian Graus12-Apr-07 19:19 
QuestionConnect with Sqlserver! Pin
nguyenkiem12-Apr-07 17:28
nguyenkiem12-Apr-07 17:28 
AnswerRe: Connect with Sqlserver! Pin
Sathesh Sakthivel12-Apr-07 17:35
Sathesh Sakthivel12-Apr-07 17:35 
QuestionWeb Service Authentication Pin
Cheng Dehua12-Apr-07 16:19
Cheng Dehua12-Apr-07 16:19 
AnswerRe: Web Service Authentication Pin
Sathesh Sakthivel12-Apr-07 16:34
Sathesh Sakthivel12-Apr-07 16:34 
GeneralRe: Web Service Authentication Pin
Jaiprakash M Bankolli12-Apr-07 19:53
Jaiprakash M Bankolli12-Apr-07 19:53 
QuestionAsk about displaying records in Crystal report Pin
phantanagu12-Apr-07 16:16
phantanagu12-Apr-07 16:16 
AnswerRe: Ask about displaying records in Crystal report Pin
Sathesh Sakthivel12-Apr-07 17:17
Sathesh Sakthivel12-Apr-07 17:17 
GeneralRe: Ask about displaying records in Crystal report Pin
phantanagu12-Apr-07 21:47
phantanagu12-Apr-07 21:47 

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.