Getox Posted December 24, 2004 Posted December 24, 2004 im trying to get my program to check for updates like when the user clicks "Check for updates" how will i make it read a page that has the new version number ? i had something like this, but since i reinstalled vb when i build the app it crashes when checking for updates, help would be great. Quote Page Edit 2.0 Alpha 2 OUT NOW! - Download Now -
coldfusion244 Posted December 24, 2004 Posted December 24, 2004 im trying to get my program to check for updates like when the user clicks "Check for updates" how will i make it read a page that has the new version number ? i had something like this, but since i reinstalled vb when i build the app it crashes when checking for updates, help would be great. You could always use an XML document and check using the built in XML .net functions. Here is a sample of the code I use to read XML documents: [CS]XmlTextReader xtr = new XmlTextReader(strDocument); XmlDocument xd = new XmlDocument(); xd.Load(xtr);[/CS] strDocument can be local, or networked for example... @"C:\update.xml" or @"http://www.mywebsite.com/update/updatecheck.xml"... just some thoughts... Quote -Sean
GrenadeFX Posted July 20, 2005 Posted July 20, 2005 hey can you expand a little bit on what u mean bu that? coz i am having same problem as getox thanx Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.