Click here to Skip to main content
15,913,685 members
Home / Discussions / C#
   

C#

 
GeneralRe: Catch Database events (Oracle 10) Pin
V.28-Jul-11 20:10
professionalV.28-Jul-11 20:10 
QuestionListView docking under ToolStrip problem Pin
Chesnokov Yuriy26-Jul-11 21:05
professionalChesnokov Yuriy26-Jul-11 21:05 
AnswerRe: ListView docking under ToolStrip problem Pin
Shameel27-Jul-11 0:58
professionalShameel27-Jul-11 0:58 
AnswerRe: ListView docking under ToolStrip problem Pin
Chesnokov Yuriy27-Jul-11 1:30
professionalChesnokov Yuriy27-Jul-11 1:30 
GeneralRe: ListView docking under ToolStrip problem Pin
Shameel27-Jul-11 1:46
professionalShameel27-Jul-11 1:46 
GeneralRe: ListView docking under ToolStrip problem Pin
BobJanova27-Jul-11 1:53
BobJanova27-Jul-11 1:53 
GeneralRe: ListView docking under ToolStrip problem Pin
Shameel27-Jul-11 5:18
professionalShameel27-Jul-11 5:18 
GeneralRe: ListView docking under ToolStrip problem Pin
BobJanova27-Jul-11 6:57
BobJanova27-Jul-11 6:57 
GeneralRe: ListView docking under ToolStrip problem Pin
Shameel27-Jul-11 8:24
professionalShameel27-Jul-11 8:24 
QuestionCould you please check this exception? Pin
SungBae.Han26-Jul-11 20:22
SungBae.Han26-Jul-11 20:22 
AnswerRe: Could you please check this exception? Pin
Dave Kreskowiak27-Jul-11 1:22
mveDave Kreskowiak27-Jul-11 1:22 
AnswerRe: Could you please check this exception? Pin
Shameel27-Jul-11 1:49
professionalShameel27-Jul-11 1:49 
QuestionMessage Removed Pin
26-Jul-11 6:54
Member 811400226-Jul-11 6:54 
AnswerRe: Workflow Management Pin
Orcun Iyigun26-Jul-11 7:18
Orcun Iyigun26-Jul-11 7:18 
AnswerRe: Workflow Management Pin
GuyThiebaut26-Jul-11 8:41
professionalGuyThiebaut26-Jul-11 8:41 
GeneralRe: Workflow Management Pin
Richard MacCutchan26-Jul-11 9:26
mveRichard MacCutchan26-Jul-11 9:26 
GeneralRe: Workflow Management Pin
GuyThiebaut26-Jul-11 9:31
professionalGuyThiebaut26-Jul-11 9:31 
GeneralRe: Workflow Management Pin
Keith Barrow26-Jul-11 10:05
professionalKeith Barrow26-Jul-11 10:05 
GeneralRe: Workflow Management Pin
GuyThiebaut26-Jul-11 10:21
professionalGuyThiebaut26-Jul-11 10:21 
GeneralRe: Workflow Management Pin
PIEBALDconsult26-Jul-11 18:31
mvePIEBALDconsult26-Jul-11 18:31 
GeneralRe: Workflow Management Pin
Keith Barrow26-Jul-11 20:38
professionalKeith Barrow26-Jul-11 20:38 
GeneralRe: Workflow Management Pin
V.26-Jul-11 22:28
professionalV.26-Jul-11 22:28 
QuestionHow to find a Node in treeview Pin
NarVish26-Jul-11 4:23
NarVish26-Jul-11 4:23 
Hi,

I'm trying to find a particular node in treeview. I used below code to find out, but not working. Please let me know how to find out. Thanks in advance
approach 1:
treeView1.Nodes.Find("Company", true)


approach 2: it is searching at only one level, not child nodes
foreach ( TreeNode tn in theTreeView.Nodes ) 
{
   if ( tn.Text == "Company" ) 
   {
      return tn;
   }
}

My treeview:
Business
  |__Company
  |    |__BBS
  |         |__CBS
  |__Prod

AnswerRe: How to find a Node in treeview Pin
Richard MacCutchan26-Jul-11 4:52
mveRichard MacCutchan26-Jul-11 4:52 
AnswerRe: How to find a Node in treeview Pin
PIEBALDconsult26-Jul-11 8:44
mvePIEBALDconsult26-Jul-11 8:44 

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.