Advertisement

07.04.2008 at 07:51AM PDT, ID: 23539546
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.7

read xml to fill in text field

Asked by revo1059 in Extensible Markup Language (XML), Microsoft Visual Basic.Net

Tags:

I am using visual studio 2008 and VB.net  In my app, i have a drop down menu with values that are populated from an xml file.  That part I have working no problem.  What I need Is a way to fill in some text boxes when the user selects a different value from the drop down

Example

if I have the server name, ip and port of 3 servers in a xml file, the drop down would show the name from the xml file.  when the user selects a different server, 2 text boxes fill in with the ip and port of the selected server

the combo box is filled in with the value from name.  I added ServerNumber thinking i could use that as like an index.  I am used to MYSQL database where I can just say where ID = 1 etc.

My ultimate goal is to store the values (that the users chooses by selecting the server name) in my.settings so I can use the over and overStart Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
here is my XML File
 
<?xml version="1.0" encoding="utf-8"?>
<root>
  <server>
    <serverNumber>0</serverNumber>
    <name>Team Leader</name>
    <ip>
    </ip>
    <port>
    </port>
    <webkey>
    </webkey>
  </server>
  <server>
    <serverNumber>1</serverNumber>
    <name>Team Deathmatch</name>
    <ip>
    </ip>
    <port>
    </port>
  </server>
  <server>
    <serverNumber>2</serverNumber>
    <name>Attack and Defend</name>
    <ip>
    </ip>
    <port>
    </port>
  </server>
  <server>
    <ServerNumber>My test server</ServerNumber>
    <name>444.444.444.444</name>
    <ip>444.444.444.444</ip>
    <port>3343</port>
    <webkey>12345abcde</webkey>
  </server>
  <server>
    <ServerNumber>1</ServerNumber>
    <name>34234</name>
    <ip>34234</ip>
    <port>234</port>
    <webkey>sdfsdfs</webkey>
  </server>
  <server>
    <ServerNumber>1</ServerNumber>
    <name>2</name>
    <ip>2</ip>
    <port>2</port>
    <webkey>2</webkey>
  </server>
</root>
 
the combo box is filled in with the value from name
[+][-]07.04.2008 at 09:12AM PDT, ID: 21933787

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.04.2008 at 09:16AM PDT, ID: 21933817

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.04.2008 at 09:29AM PDT, ID: 21933874

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.04.2008 at 05:02PM PDT, ID: 21935311

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.04.2008 at 05:19PM PDT, ID: 21935347

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.05.2008 at 06:19AM PDT, ID: 21936972

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.05.2008 at 06:55AM PDT, ID: 21937092

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.05.2008 at 06:59AM PDT, ID: 21937104

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.05.2008 at 06:38PM PDT, ID: 21939020

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Extensible Markup Language (XML), Microsoft Visual Basic.Net
Tags: VB.net, XML
Sign Up Now!
Solution Provided By: margajet24
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20081112-EE-VQP-42 / EE_QW_2_20070628