Click here to Skip to main content
15,892,927 members
Home / Discussions / C#
   

C#

 
AnswerRe: how can i create internal email for users to send receive to each other within my website? Pin
DaveyM6918-Feb-08 13:29
professionalDaveyM6918-Feb-08 13:29 
GeneralRe: how can i create internal email for users to send receive to each other within my website? Pin
aspmax19-Feb-08 16:59
aspmax19-Feb-08 16:59 
Questionhow do i gather info from fields and pass it over to a member profile page? Pin
aspmax18-Feb-08 12:43
aspmax18-Feb-08 12:43 
AnswerRe: how do i gather info from fields and pass it over to a member profile page? Pin
Not Active18-Feb-08 15:20
mentorNot Active18-Feb-08 15:20 
GeneralRe: how do i gather info from fields and pass it over to a member profile page? Pin
aspmax19-Feb-08 16:52
aspmax19-Feb-08 16:52 
GeneralRe: how do i gather info from fields and pass it over to a member profile page? Pin
aspmax19-Feb-08 17:46
aspmax19-Feb-08 17:46 
GeneralRe: how do i gather info from fields and pass it over to a member profile page? Pin
aspmax19-Feb-08 17:46
aspmax19-Feb-08 17:46 
GeneralReading/Parsing Complex XML Pin
student_rhr18-Feb-08 11:48
student_rhr18-Feb-08 11:48 
hello everyone:

I need to parse a complex xml file into meaningful controls. Here is what the XML file looks like:
<Controls>
  <group>
    <field name="CheckBox1" y="34.925" x="3.175" w="28" h="6">
      <ui>
        <checkButton>
          <border>
            <css style="single"/>
            <fill/>
          </border>
        </checkButton>
      </ui>
      <font face="Arial"/>
      <padding leftInset="1" rightInset="1"/>
      <textAlign vAlign="middle"/>
      <value>
        <integer>0</integer>
      </value>
      <label placement="right" reserve="21">
        <textAlign vAlign="middle"/>
        <font face="Arial"/>
        <value>
          <text>Select Check Box</text>
        </value>
      </label>
    </field>
    <field name="textBox" y="3.175" x="3.17" w="62" h="9">
      <ui>
        <textBox>
          <border>
            <css style="">
            </css>
          </border>
          <margin/>
        </textBox>
      </ui>
      <font face="Arial"/>
      <margin topInset="1" bottomInset="1" leftInset="1" rightInset="1"/>
      <textAlign vAlign="middle"/>
      <label reserve="25">
        <font face="Arial"/>
        <textAlign vAlign="middle"/>
        <value>
          <text>textbox label</text>
        </value>
      </label>
    </field>
  </group>
</Controls>


Can you help me figure out how to read this xml and come up with:
TextBox txtBox = new TextBox();
txtBox.name = "txtBox";
txtBox.Location = new Point(3,3)
txtBox.Size = new Size(9, 6);
...
and so on .. hopefully you get the idea of what I am trying to do.

I would really appreciate your help. Thanks.
GeneralRe: Reading/Parsing Complex XML Pin
PIEBALDconsult18-Feb-08 12:00
mvePIEBALDconsult18-Feb-08 12:00 
GeneralRe: Reading/Parsing Complex XML Pin
student_rhr18-Feb-08 13:27
student_rhr18-Feb-08 13:27 
GeneralRe: Reading/Parsing Complex XML Pin
PIEBALDconsult18-Feb-08 17:05
mvePIEBALDconsult18-Feb-08 17:05 
GeneralRe: Reading/Parsing Complex XML Pin
student_rhr19-Feb-08 4:43
student_rhr19-Feb-08 4:43 
GeneralConvert HTML to Xml. Pin
hdv21218-Feb-08 9:01
hdv21218-Feb-08 9:01 
GeneralRe: Convert HTML to Xml. Pin
Gareth H18-Feb-08 9:07
Gareth H18-Feb-08 9:07 
GeneralRe: Convert HTML to Xml. Pin
hdv21218-Feb-08 9:12
hdv21218-Feb-08 9:12 
GeneralRe: Convert HTML to Xml. Pin
Gareth H18-Feb-08 9:25
Gareth H18-Feb-08 9:25 
GeneralRe: Convert HTML to Xml. Pin
Christian Graus18-Feb-08 9:23
protectorChristian Graus18-Feb-08 9:23 
GeneralRe: Convert HTML to Xml. Pin
hdv21218-Feb-08 9:30
hdv21218-Feb-08 9:30 
GeneralRe: Convert HTML to Xml. Pin
Pete O'Hanlon18-Feb-08 9:44
mvePete O'Hanlon18-Feb-08 9:44 
GeneralRe: Convert HTML to Xml. Pin
Christian Graus18-Feb-08 10:37
protectorChristian Graus18-Feb-08 10:37 
GeneralRe: Convert HTML to Xml. Pin
Pete O'Hanlon18-Feb-08 22:07
mvePete O'Hanlon18-Feb-08 22:07 
GeneralReading Text files Pin
MumbleB18-Feb-08 8:02
MumbleB18-Feb-08 8:02 
GeneralRe: Reading Text files Pin
Pete O'Hanlon18-Feb-08 8:44
mvePete O'Hanlon18-Feb-08 8:44 
GeneralRe: Reading Text files Pin
Skippums18-Feb-08 10:49
Skippums18-Feb-08 10:49 
GeneralRe: Reading Text files Pin
Brady Kelly18-Feb-08 19:18
Brady Kelly18-Feb-08 19:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.