User Profile

Collapse

Profile Sidebar

Collapse
datastreamcowboy
datastreamcowboy
Last Activity: Dec 8 '06, 07:08 PM
Joined: Nov 30 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • datastreamcowboy
    replied to Hi there;;;;
    in .NET
    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....
    See more | Go to post

    Leave a comment:


  • Application.Com monAppDataPath


    also Oreilly has a little pocket reference book for VB and C# cross reference.
    See more | Go to post

    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>
    ...
    See more | Go to post

    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...
    See more | Go to post
    Last edited by datastreamcowboy; Dec 1 '06, 03:22 PM. Reason: typo

    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?
    See more | Go to post

    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>...
    See more | Go to post
No activity results to display
Show More
Working...