Click here to Skip to main content
15,929,597 members
Home / Discussions / C#
   

C#

 
GeneralRe: More stuff that cause LightweightFramework to crash. Pin
Dave Kreskowiak1-Mar-05 8:13
mveDave Kreskowiak1-Mar-05 8:13 
GeneralRe: More stuff that cause LightweightFramework to crash. Pin
Tristan Rhodes1-Mar-05 10:26
Tristan Rhodes1-Mar-05 10:26 
GeneralRe: More stuff that cause LightweightFramework to crash. Pin
Dave Kreskowiak1-Mar-05 11:44
mveDave Kreskowiak1-Mar-05 11:44 
GeneralSilent console application Pin
Esmo20001-Mar-05 4:21
Esmo20001-Mar-05 4:21 
GeneralTreeview question Pin
Aaron Schaefer1-Mar-05 3:19
Aaron Schaefer1-Mar-05 3:19 
GeneralRe: Treeview question Pin
leppie1-Mar-05 3:51
leppie1-Mar-05 3:51 
GeneralRe: Treeview question Pin
Aaron Schaefer1-Mar-05 4:51
Aaron Schaefer1-Mar-05 4:51 
GeneralRe: Treeview question Pin
Nick Parker1-Mar-05 10:37
protectorNick Parker1-Mar-05 10:37 
Try handling the AfterSelect event instead. You can do something like the following:

private void treeView1_AfterSelect(object sender, System.Windows.Forms.TreeViewEventArgs e)
{
    TreeNode node = e.Node as TreeNode;
    if(node != null)
    {
        MessageBox.Show(node.Text);
    }
}


- Nick Parker
Microsoft MVP - Visual C#
My Blog | My Articles

GeneralRe: Treeview question Pin
Aaron Schaefer1-Mar-05 11:19
Aaron Schaefer1-Mar-05 11:19 
GeneralRe: Treeview question Pin
Luis Alonso Ramos1-Mar-05 10:52
Luis Alonso Ramos1-Mar-05 10:52 
GeneralRe: Treeview question Pin
Aaron Schaefer1-Mar-05 11:13
Aaron Schaefer1-Mar-05 11:13 
Questionwhat is the fastest way to access files?? Pin
penecilllin1-Mar-05 2:52
penecilllin1-Mar-05 2:52 
AnswerRe: what is the fastest way to access files?? Pin
Esmo20001-Mar-05 4:03
Esmo20001-Mar-05 4:03 
GeneralRe: what is the fastest way to access files?? Pin
Dave Kreskowiak1-Mar-05 7:08
mveDave Kreskowiak1-Mar-05 7:08 
GeneralRe: what is the fastest way to access files?? Pin
Esmo20001-Mar-05 10:57
Esmo20001-Mar-05 10:57 
AnswerRe: what is the fastest way to access files?? Pin
J4amieC1-Mar-05 6:00
J4amieC1-Mar-05 6:00 
GeneralRe: what is the fastest way to access files?? Pin
Esmo20001-Mar-05 11:01
Esmo20001-Mar-05 11:01 
GeneralMessage Closed Pin
1-Mar-05 11:49
penecilllin1-Mar-05 11:49 
GeneralRe: what is the fastest way to access files?? Pin
Esmo20002-Mar-05 3:02
Esmo20002-Mar-05 3:02 
Generalto manage bitmap pixels Pin
Anonymous1-Mar-05 2:18
Anonymous1-Mar-05 2:18 
GeneralRe: to manage bitmap pixels Pin
Dave Kreskowiak1-Mar-05 3:39
mveDave Kreskowiak1-Mar-05 3:39 
GeneralRe: to manage bitmap pixels Pin
Anonymous1-Mar-05 4:24
Anonymous1-Mar-05 4:24 
GeneralRe: to manage bitmap pixels Pin
Dave Kreskowiak1-Mar-05 11:42
mveDave Kreskowiak1-Mar-05 11:42 
Generalpass events across projects Pin
Member 4558381-Mar-05 1:27
Member 4558381-Mar-05 1:27 
QuestionRegex(@"[_A-Za-z]+[A-Za-z]\w*") Can it be improved ? Pin
ektoras1-Mar-05 0:37
ektoras1-Mar-05 0:37 

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.