0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
1 Posted Topic
There is a quick way to do this, set your (Solution)/(Project)/My Project/app.manifest to always copy to the output dir. then in your code use a simple XML reader to grab the version out of that file: [CODE]Try Dim m_xmld = New XmlDocument() m_xmld.Load(Application.ExecutablePath & ".manifest") Label14.Text = "v" & m_xmld.ChildNodes.Item(1).ChildNodes.Item(0).Attributes.GetNamedItem("version").Value …
The End.
jhebbel