Click here to Skip to main content
15,893,161 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Code in vb.net using asp.net Pin
Johan Hakkesteegt4-Feb-09 22:11
Johan Hakkesteegt4-Feb-09 22:11 
Questioncheck my code..TableLayoutPanel in vb.net Pin
dilipmca044-Feb-09 17:31
dilipmca044-Feb-09 17:31 
AnswerRe: check my code..TableLayoutPanel in vb.net Pin
Dave Kreskowiak5-Feb-09 2:18
mveDave Kreskowiak5-Feb-09 2:18 
GeneralRe: check my code..TableLayoutPanel in vb.net Pin
EliottA5-Feb-09 3:29
EliottA5-Feb-09 3:29 
GeneralRe: check my code..TableLayoutPanel in vb.net Pin
Dave Kreskowiak5-Feb-09 9:00
mveDave Kreskowiak5-Feb-09 9:00 
RantRe: check my code..TableLayoutPanel in vb.net Pin
EliottA5-Feb-09 9:04
EliottA5-Feb-09 9:04 
QuestionXML issues Pin
StuBaum4-Feb-09 15:03
StuBaum4-Feb-09 15:03 
AnswerRe: XML issues Pin
Johan Hakkesteegt5-Feb-09 0:12
Johan Hakkesteegt5-Feb-09 0:12 
I tried this adapted version of your code:
Private Function GetManifestVer(ByVal strManifestFile As String) As String
    Try
        GetManifestVer = ""
        Dim xmlr As XmlTextReader
        xmlr = New XmlTextReader(strManifestFile)
        While Not xmlr.EOF
            xmlr.Read()
            If xmlr.Name = "entryPoint" Then
                If xmlr.IsStartElement Then
                    GetManifestVer = xmlr.GetAttribute("version")
                    Exit While
                Else
                    GetManifestVer = "StartElement not found"
                End If
            Else
                GetManifestVer = "entryPoint not found"
            End If
        End While
        xmlr.Close()
    Catch ex As Exception
        Return ex.Message
    End Try
End Function


It does not find "entryPoint". Can there be a simple syntax error, or maybe it is case sensitive or something ?

My advice is free, and you may get what you paid for.

GeneralRe: XML issues Pin
StuBaum5-Feb-09 2:54
StuBaum5-Feb-09 2:54 
GeneralRe: XML issues Pin
Johan Hakkesteegt5-Feb-09 3:08
Johan Hakkesteegt5-Feb-09 3:08 
GeneralRe: XML issues Pin
StuBaum5-Feb-09 3:31
StuBaum5-Feb-09 3:31 
GeneralRe: XML issues Pin
Johan Hakkesteegt5-Feb-09 20:23
Johan Hakkesteegt5-Feb-09 20:23 
GeneralRe: XML issues Pin
StuBaum6-Feb-09 2:25
StuBaum6-Feb-09 2:25 
GeneralRe: XML issues Pin
StuBaum6-Feb-09 2:29
StuBaum6-Feb-09 2:29 
GeneralRe: XML issues Pin
Johan Hakkesteegt6-Feb-09 3:26
Johan Hakkesteegt6-Feb-09 3:26 
GeneralRe: XML issues Pin
StuBaum6-Feb-09 8:19
StuBaum6-Feb-09 8:19 
QuestionDelegates Pin
εїзεїзεїз4-Feb-09 3:49
εїзεїзεїз4-Feb-09 3:49 
AnswerRe: Delegates Pin
Christian Graus4-Feb-09 9:26
protectorChristian Graus4-Feb-09 9:26 
GeneralRe: Delegates Pin
εїзεїзεїз4-Feb-09 18:45
εїзεїзεїз4-Feb-09 18:45 
QuestionPopulate a Treeview from Database in VB6.0 Pin
kshincsk4-Feb-09 2:02
kshincsk4-Feb-09 2:02 
AnswerRe: Populate a Treeview from Database in VB6.0 Pin
Christian Graus4-Feb-09 9:26
protectorChristian Graus4-Feb-09 9:26 
Questionvs 2005 , vb.net Pin
hrishiS3-Feb-09 23:34
hrishiS3-Feb-09 23:34 
AnswerRe: vs 2005 , vb.net Pin
Rupesh Kumar Swami3-Feb-09 23:38
Rupesh Kumar Swami3-Feb-09 23:38 
GeneralRe: vs 2005 , vb.net Pin
hrishiS4-Feb-09 0:01
hrishiS4-Feb-09 0:01 
GeneralRe: vs 2005 , vb.net Pin
Rupesh Kumar Swami4-Feb-09 0:18
Rupesh Kumar Swami4-Feb-09 0:18 

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.