Click here to Skip to main content
15,887,214 members
Home / Discussions / C#
   

C#

 
GeneralRe: multi-user winforms application Pin
Mycroft Holmes30-Sep-09 23:25
professionalMycroft Holmes30-Sep-09 23:25 
Questiononshutdown() problem Pin
Ajithevn30-Sep-09 20:54
Ajithevn30-Sep-09 20:54 
AnswerRe: onshutdown() problem Pin
N a v a n e e t h30-Sep-09 21:11
N a v a n e e t h30-Sep-09 21:11 
GeneralRe: onshutdown() problem Pin
Ajithevn30-Sep-09 21:25
Ajithevn30-Sep-09 21:25 
QuestionHow to view a Column Name in listbox by selecting the Column in DataGridView Pin
mumair78630-Sep-09 20:51
mumair78630-Sep-09 20:51 
AnswerRe: How to view a Column Name in listbox by selecting the Column in DataGridView Pin
Mycroft Holmes30-Sep-09 23:09
professionalMycroft Holmes30-Sep-09 23:09 
GeneralRe: How to view a Column Name in listbox by selecting the Column in DataGridView Pin
mumair7861-Oct-09 0:38
mumair7861-Oct-09 0:38 
GeneralRe: How to view a Column Name in listbox by selecting the Column in DataGridView Pin
Henry Minute1-Oct-09 1:12
Henry Minute1-Oct-09 1:12 
Try:
private void FillColumnNamesListBox()
{
    this.namesListBox.Items.Clear();
    foreach (DataGridViewColumn col in this.dataGridView1.Columns)
    {
        this.namesListBox.Items.Add(col.HeaderText);
    }
}


Henry Minute

Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”

GeneralRe: How to view a Column Name in listbox by selecting the Column in DataGridView Pin
mumair7861-Oct-09 2:21
mumair7861-Oct-09 2:21 
QuestionFunction waiting Pin
discreetz30-Sep-09 20:40
discreetz30-Sep-09 20:40 
AnswerRe: Function waiting Pin
Paramhans Dubey30-Sep-09 20:48
professionalParamhans Dubey30-Sep-09 20:48 
GeneralRe: Function waiting Pin
discreetz30-Sep-09 21:14
discreetz30-Sep-09 21:14 
GeneralRe: Function waiting Pin
Mirko198030-Sep-09 22:05
Mirko198030-Sep-09 22:05 
GeneralRe: Function waiting Pin
discreetz30-Sep-09 22:10
discreetz30-Sep-09 22:10 
GeneralRe: Function waiting Pin
Mirko198030-Sep-09 22:19
Mirko198030-Sep-09 22:19 
GeneralRe: Function waiting Pin
discreetz30-Sep-09 22:26
discreetz30-Sep-09 22:26 
GeneralRe: Function waiting Pin
Mirko198030-Sep-09 22:58
Mirko198030-Sep-09 22:58 
AnswerRe: Function waiting Pin
harold aptroot30-Sep-09 22:47
harold aptroot30-Sep-09 22:47 
AnswerRe: Function waiting Pin
Luc Pattyn30-Sep-09 23:54
sitebuilderLuc Pattyn30-Sep-09 23:54 
GeneralRe: Function waiting Pin
discreetz1-Oct-09 13:35
discreetz1-Oct-09 13:35 
GeneralRe: Function waiting Pin
Luc Pattyn1-Oct-09 13:51
sitebuilderLuc Pattyn1-Oct-09 13:51 
GeneralRe: Function waiting Pin
discreetz1-Oct-09 15:12
discreetz1-Oct-09 15:12 
GeneralRe: Function waiting Pin
pradnya_k2-Oct-09 1:41
pradnya_k2-Oct-09 1:41 
QuestionHow to wait for a window to appear before sending keystrok using sendkeys? Pin
Paramhans Dubey30-Sep-09 20:31
professionalParamhans Dubey30-Sep-09 20:31 
AnswerRe: How to wait for a window to appear before sending keystrok using sendkeys? Pin
Mycroft Holmes30-Sep-09 23:28
professionalMycroft Holmes30-Sep-09 23:28 

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.