i use 2 programs to write C# and they also do VB.
1) visual studio (expensive)
2) monodevelop (free) http://www.mono-project.com/Downloads
Project mono is to bring .Net to non Microsoft OS's
also if you are looking to do ASP.NET development you can use
Visual Web Developer Express 2005 from http://www.asp.net
there they also have tutorials and starter kits. It is also a microsoft entity....
User Profile
Collapse
-
Application.Com monAppDataPath
also Oreilly has a little pocket reference book for VB and C# cross reference.Leave a comment:
-
ok i got it fixed... i can read my XML document.... and fill in the form.. and here is how:
the xml document
Code:<? xml> <document> <surface> <detail state="TX" county="Johnson" description="See LTC." /> <owners> <owner id="1" name="Sum Dum Guy" /> </owners>
Leave a comment:
-
ok i have set up XmlReader
Code:while (reader.Read()) { switch (reader.NodeType) { case XmlNodeType.Element: if (reader.Name == "owner") { tOName = reader.Value; } // ------ more code here
ok when i use reader.Name i get the variable...Leave a comment:
-
ok.. found the problem.... kinda... i got a string to show in the field of the text box... ruled that one out...
is it better to put the XML file in to a string and read/write it usign XMLReader/XMLWriter or as a dataset?Leave a comment:
-
XML, C# Windows Forms and one heck of a headache
Here's the deal I'm relatively new to C# and i got this windows form that i would like to use to edit the data in an XML file. I can use XMLRead and make a tree view that works.. but how do I get let's say the value in <owner> to show up in to the textbox so it can be entered if it is a new datafile or editited if its an old one.
I got the loading of the XML file working... tested it with the tree view.
<document>...
No activity results to display
Show More
Leave a comment: