Click here to Skip to main content
15,891,372 members
Home / Discussions / C#
   

C#

 
QuestionSetting focus to the beginning of a MaskedTextBox Pin
NYTSX20-Jun-07 3:40
NYTSX20-Jun-07 3:40 
AnswerRe: Setting focus to the beginning of a MaskedTextBox Pin
Luc Pattyn20-Jun-07 4:05
sitebuilderLuc Pattyn20-Jun-07 4:05 
GeneralRe: Setting focus to the beginning of a MaskedTextBox Pin
NYTSX20-Jun-07 4:14
NYTSX20-Jun-07 4:14 
AnswerRe: Setting focus to the beginning of a MaskedTextBox Pin
Stu Richardson20-Jun-07 4:25
Stu Richardson20-Jun-07 4:25 
QuestionListbox items to array Pin
neer120-Jun-07 3:16
neer120-Jun-07 3:16 
AnswerRe: Listbox items to array Pin
Chintan.Desai20-Jun-07 3:37
Chintan.Desai20-Jun-07 3:37 
GeneralRe: Listbox items to array Pin
Stu Richardson20-Jun-07 3:40
Stu Richardson20-Jun-07 3:40 
AnswerRe: change de currentrow of datagridview Pin
Chintan.Desai20-Jun-07 3:45
Chintan.Desai20-Jun-07 3:45 
//Here, select any rows in your Datagrid view by mouse or tab key.
//just replace 'objView' with your data grid view name.

DataGridView objView = new DataGridView();
//This will return currently selected row.

DataGridViewRow row= objView.CurrentRow;
//Now here just specify the ColumnName and assign the updated value.In this case i have updated the column with string "Bill Gates".

row.Cells["ColumnName"].Value = "Bill Gates";
//Hop you understood.
//nJoy

Regards
Chintan
www.visharadsoft.com
(Nothing is so purify as KNOWLEDGE)

QuestionExporting Data to Multiple Excel Sheets in C# Windows Application Pin
meeram39520-Jun-07 2:10
meeram39520-Jun-07 2:10 
AnswerRe: Exporting Data to Multiple Excel Sheets in C# Windows Application Pin
Sandeep Akhare20-Jun-07 3:09
Sandeep Akhare20-Jun-07 3:09 
Questionhow can i make a full row select in a datagrid Pin
-spy-20-Jun-07 1:52
-spy-20-Jun-07 1:52 
AnswerRe: how can i make a full row select in a datagrid Pin
Not Active20-Jun-07 2:24
mentorNot Active20-Jun-07 2:24 
AnswerRe: how can i make a full row select in a datagrid Pin
Stu Richardson20-Jun-07 3:35
Stu Richardson20-Jun-07 3:35 
QuestionProgramming processes in C# - concurrency [modified] Pin
Theghost20-Jun-07 1:22
Theghost20-Jun-07 1:22 
AnswerRe: Programming processes in C# - concurrency Pin
J4amieC20-Jun-07 3:01
J4amieC20-Jun-07 3:01 
QuestionKey Press event of textbox Pin
Sapan Roy20-Jun-07 1:10
Sapan Roy20-Jun-07 1:10 
AnswerRe: Key Press event of textbox Pin
Martin#20-Jun-07 1:16
Martin#20-Jun-07 1:16 
QuestionString Concatenation Issue Pin
Brendan Vogt20-Jun-07 0:44
Brendan Vogt20-Jun-07 0:44 
AnswerRe: String Concatenation Issue Pin
Martin#20-Jun-07 0:51
Martin#20-Jun-07 0:51 
AnswerRe: String Concatenation Issue Pin
Sandeep Akhare20-Jun-07 0:59
Sandeep Akhare20-Jun-07 0:59 
Questionfile server Pin
sureshprabhu20-Jun-07 0:33
sureshprabhu20-Jun-07 0:33 
QuestionSerializing the same object instance twice... Pin
Shy Agam20-Jun-07 0:10
Shy Agam20-Jun-07 0:10 
AnswerRe: Serializing the same object instance twice... [modified] Pin
Martin#20-Jun-07 0:20
Martin#20-Jun-07 0:20 
AnswerRe: Serializing the same object instance twice... Pin
welbers20-Jun-07 0:29
welbers20-Jun-07 0:29 
AnswerRe: Serializing the same object instance twice... Pin
Shy Agam20-Jun-07 0:38
Shy Agam20-Jun-07 0:38 

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.