Click here to Skip to main content
15,899,474 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Script for checking domain & Map Drive Pin
OrdinaryGal28-Oct-10 4:17
OrdinaryGal28-Oct-10 4:17 
Questionvb .net 2008 express edition remove a row in datagridview Pin
Denis999926-Oct-10 3:01
Denis999926-Oct-10 3:01 
AnswerRe: vb .net 2008 express edition remove a row in datagridview Pin
_Erik_26-Oct-10 5:49
_Erik_26-Oct-10 5:49 
AnswerRe: vb .net 2008 express edition remove a row in datagridview Pin
DaveAuld26-Oct-10 5:49
professionalDaveAuld26-Oct-10 5:49 
GeneralRe: vb .net 2008 express edition remove a row in datagridview Pin
Denis999928-Oct-10 0:06
Denis999928-Oct-10 0:06 
QuestionHow to get selected node in a XML with childnodes and childnodes' childnodes? Pin
sanyexian25-Oct-10 22:19
sanyexian25-Oct-10 22:19 
AnswerRe: How to get selected node in a XML with childnodes and childnodes' childnodes? Pin
Eaverae26-Oct-10 19:57
Eaverae26-Oct-10 19:57 
GeneralRe: How to get selected node in a XML with childnodes and childnodes' childnodes? Pin
sanyexian26-Oct-10 20:04
sanyexian26-Oct-10 20:04 
Hello,Eaverae! Your suggestion is helpful for me to get more details about the method "SelectedSingleNode".Thank you! I have got my solution like below:

For Each node1 In list1
            Dim val As String
            val = node1.Attributes("PN").Value
            If val = TextBox1.Text Then
                Dim list2 As XmlNodeList = node1.SelectNodes("Height")
                Dim node2 As XmlNode
                For Each node2 In list2
                    Dim val2 As String
                    val2 = node2.Attributes("DN").Value
                    If val2 = TextBox2.Text Then
                        TextBox3.Text = node2.InnerText
                    End If
                Next
            End If
        Next


What's more, I have change the XML element
<PN> 

to
<PN PN="1.6">
Smile | :)
QuestionFiles in a VB.NET project to put under Version control Pin
cages25-Oct-10 9:15
cages25-Oct-10 9:15 
AnswerRe: Files in a VB.NET project to put under Version control Pin
dan!sh 25-Oct-10 10:56
professional dan!sh 25-Oct-10 10:56 
GeneralRe: Files in a VB.NET project to put under Version control Pin
cages26-Oct-10 10:20
cages26-Oct-10 10:20 
AnswerRe: Files in a VB.NET project to put under Version control Pin
Gregory Gadow25-Oct-10 11:08
Gregory Gadow25-Oct-10 11:08 
GeneralRe: Files in a VB.NET project to put under Version control Pin
AspDotNetDev25-Oct-10 11:21
protectorAspDotNetDev25-Oct-10 11:21 
GeneralRe: Files in a VB.NET project to put under Version control Pin
DaveAuld25-Oct-10 11:33
professionalDaveAuld25-Oct-10 11:33 
GeneralRe: Files in a VB.NET project to put under Version control Pin
Abrojus27-Oct-10 2:50
Abrojus27-Oct-10 2:50 
GeneralRe: Files in a VB.NET project to put under Version control Pin
Dell.Simmons27-Oct-10 6:07
Dell.Simmons27-Oct-10 6:07 
GeneralRe: Files in a VB.NET project to put under Version control Pin
Kenneth Kasajian27-Oct-10 10:26
Kenneth Kasajian27-Oct-10 10:26 
AnswerRe: Files in a VB.NET project to put under Version control Pin
Stonkie26-Oct-10 19:22
Stonkie26-Oct-10 19:22 
GeneralRe: Files in a VB.NET project to put under Version control Pin
AdamEcc26-Oct-10 23:39
AdamEcc26-Oct-10 23:39 
GeneralRe: Files in a VB.NET project to put under Version control Pin
p51dfltln27-Oct-10 4:42
p51dfltln27-Oct-10 4:42 
GeneralRe: Files in a VB.NET project to put under Version control Pin
Stonkie27-Oct-10 15:30
Stonkie27-Oct-10 15:30 
AnswerRe: Files in a VB.NET project to put under Version control Pin
R. Erasmus26-Oct-10 21:09
R. Erasmus26-Oct-10 21:09 
AnswerRe: Files in a VB.NET project to put under Version control Pin
tbim27-Oct-10 2:34
tbim27-Oct-10 2:34 
AnswerRe: Files in a VB.NET project to put under Version control Pin
Pete BSC27-Oct-10 3:21
Pete BSC27-Oct-10 3:21 
AnswerRe: Files in a VB.NET project to put under Version control Pin
Peter Trevor27-Oct-10 6:47
Peter Trevor27-Oct-10 6:47 

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.