Click here to Skip to main content
15,920,111 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Combo Box values Pin
rahsi27-Mar-06 23:50
rahsi27-Mar-06 23:50 
GeneralRe: Combo Box values Pin
Chatura Dilan28-Mar-06 1:09
Chatura Dilan28-Mar-06 1:09 
Questioncompare 2 images Pin
mamatharaghu27-Mar-06 19:12
mamatharaghu27-Mar-06 19:12 
QuestionInstalling Window Service Pin
nitin_ion27-Mar-06 19:09
nitin_ion27-Mar-06 19:09 
Questionchildnode for treeview Pin
thepityone27-Mar-06 19:06
thepityone27-Mar-06 19:06 
AnswerRe: childnode for treeview Pin
mamatharaghu27-Mar-06 20:01
mamatharaghu27-Mar-06 20:01 
AnswerRe: childnode for treeview Pin
mamatharaghu27-Mar-06 20:03
mamatharaghu27-Mar-06 20:03 
AnswerRe: childnode for treeview Pin
mamatharaghu28-Mar-06 18:04
mamatharaghu28-Mar-06 18:04 
hi see this
this is more perfect which u want

da = New SqlDataAdapter("select divisions from divisions", con)
da.Fill(ds, "Personals")
For i = 0 To ds.Tables(0).Rows.Count - 1
TreeView1.Nodes.Add(ds.Tables(0).Rows(i)(0))

Next

da1 = New SqlDataAdapter("select * from dept", con)
da1.Fill(ds1, "dept")
q = Me.TreeView1.Nodes

For Each p In q
For i = 0 To ds.Tables(0).Rows.Count - 1
p.Nodes.Add(ds1.Tables(0).Rows(i)(0))
Next
Next
da2 = New SqlDataAdapter("select * from sections", con)
da2.Fill(ds2, "sections")
Dim j As Integer
For j = 0 To ds.Tables(0).Rows.Count - 1
For i = 0 To ds2.Tables(0).Rows.Count - 1
q1 = Me.TreeView1.Nodes(j).Nodes
p = Me.TreeView1.Nodes(j).Nodes(i)
For Each p In q1
p.Nodes.Add(ds2.Tables(0).Rows(i)(0))
Next
Next
Next


mamatharaghu
QuestionReceive and Send SMS in VB.NET Pin
Mr. Unstoppable27-Mar-06 18:59
Mr. Unstoppable27-Mar-06 18:59 
QuestionHow to use WMI in VB.Net?? Pin
besah27-Mar-06 18:05
besah27-Mar-06 18:05 
QuestionHow do I program a multi-menu application? Pin
furjaw27-Mar-06 15:55
furjaw27-Mar-06 15:55 
Questionhow to perform non-maximum suppression and hysteresis Pin
preci27-Mar-06 13:54
preci27-Mar-06 13:54 
QuestionWindow Form Designer Generated Code Pin
Chatura Dilan27-Mar-06 13:48
Chatura Dilan27-Mar-06 13:48 
AnswerRe: Window Form Designer Generated Code Pin
Dave Kreskowiak27-Mar-06 17:31
mveDave Kreskowiak27-Mar-06 17:31 
GeneralRe: Window Form Designer Generated Code Pin
Chatura Dilan27-Mar-06 20:09
Chatura Dilan27-Mar-06 20:09 
QuestionYou Wonder Why We Bother??? Pin
Steve Pullan27-Mar-06 13:08
Steve Pullan27-Mar-06 13:08 
GeneralRe: You Wonder Why We Bother??? Pin
Chatura Dilan27-Mar-06 13:47
Chatura Dilan27-Mar-06 13:47 
GeneralRe: You Wonder Why We Bother??? Pin
FeRtoll28-Mar-06 4:57
FeRtoll28-Mar-06 4:57 
GeneralRe: You Wonder Why We Bother??? Pin
Chatura Dilan28-Mar-06 15:34
Chatura Dilan28-Mar-06 15:34 
AnswerRe: You Wonder Why We Bother??? Pin
J4amieC28-Mar-06 1:17
J4amieC28-Mar-06 1:17 
QuestionFtp Commands Pin
eagertolearn27-Mar-06 12:13
eagertolearn27-Mar-06 12:13 
Questionocx Pin
SVb.net27-Mar-06 11:11
SVb.net27-Mar-06 11:11 
AnswerRe: ocx Pin
Dave Kreskowiak27-Mar-06 17:26
mveDave Kreskowiak27-Mar-06 17:26 
QuestionCrystal Reports 7 on Windows 2003 server Pin
got2bchatty27-Mar-06 9:17
got2bchatty27-Mar-06 9:17 
Questionbroadcast video vb.net Pin
tnky27-Mar-06 7:40
tnky27-Mar-06 7:40 

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.