11
Answers

Previous version of application is not removed in c#

Jyoti Jodha

Jyoti Jodha

7y
318
1

Previous version of application is not removed when installing new version

 
I have a setup project which gives me a .exe file
When I try to install this on a machine which already had installed its earlier version...it gives me an error and asks me to remove it from Add/Remove programs.
What should i do, so that the installer either repairs or uninstalls and reinstalls it automatically?
Answers (11)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
Unless I'm missing something here, I'd have thought that you should be able to create an XmlDocument and then use its LoadXml method to load the XML string you've received from the serial device without needing to save it to a file first.

You can then create an XPathNavigator by calling the XmlDocument's CreateNavigator method.

So, in code, that would be be something like this:

XmlDocument doc = new XmlDocument();
doc.LoadXml (xmlString);
XPathNavigator nav = doc.CreateNavigator();

Alternatively, you could forget about XPathNavigator and use LINQ to XML which can certainly parse in-memory XML strings.