Click here to Skip to main content
15,926,035 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Simple Case statement problem Pin
Visual Very Basic2-Jun-07 14:31
Visual Very Basic2-Jun-07 14:31 
GeneralRe: Simple Case statement problem Pin
Dave Kreskowiak2-Jun-07 17:19
mveDave Kreskowiak2-Jun-07 17:19 
GeneralRe: Simple Case statement problem Pin
Visual Very Basic2-Jun-07 17:50
Visual Very Basic2-Jun-07 17:50 
GeneralRe: Simple Case statement problem Pin
Christian Graus2-Jun-07 18:56
protectorChristian Graus2-Jun-07 18:56 
GeneralRe: Simple Case statement problem Pin
Visual Very Basic2-Jun-07 19:15
Visual Very Basic2-Jun-07 19:15 
GeneralRe: Simple Case statement problem Pin
Christian Graus2-Jun-07 19:32
protectorChristian Graus2-Jun-07 19:32 
GeneralRe: Simple Case statement problem Pin
Visual Very Basic2-Jun-07 22:03
Visual Very Basic2-Jun-07 22:03 
GeneralRe: Simple Case statement problem Pin
Christian Graus3-Jun-07 1:30
protectorChristian Graus3-Jun-07 1:30 
The core question is, how will you store the information ? I'd lean towards an XML file, which means you need to go to the w3c site to read their tutorials on XPath, so you know how to search your XML to get the values out. A database is probably easier to search, but more work to set up. SQL Server Express is free, if you wanted to try that instead.

If you set up XML like

<airplanes>
<plane>
<name>Messerschmidt
<year>1942
<origin>German
<passengers>2



( or whatever data you want, obviously )

then you can load it into an XmlDocument with the Load method, and do a foreach on document.SelectNodes("/airplanes/plane") which will give you a node for each group, then you can do node.SelectSingleNode("name") for the node with the name, etc.


Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

GeneralRe: Thanks for your advice and assistance Pin
Visual Very Basic3-Jun-07 21:24
Visual Very Basic3-Jun-07 21:24 
GeneralRe: Simple Case statement problem Pin
Dave Kreskowiak3-Jun-07 4:33
mveDave Kreskowiak3-Jun-07 4:33 
GeneralRe: Simple Case statement problem Pin
Paul Conrad3-Jun-07 5:13
professionalPaul Conrad3-Jun-07 5:13 
AnswerRe: Simple Case statement problem Pin
Dave Sexton3-Jun-07 3:27
Dave Sexton3-Jun-07 3:27 
QuestionFTP Pin
Sharma Nakul2-Jun-07 5:09
Sharma Nakul2-Jun-07 5:09 
AnswerRe: FTP Pin
Dave Kreskowiak3-Jun-07 4:17
mveDave Kreskowiak3-Jun-07 4:17 
GeneralRe: FTP Pin
Sharma Nakul3-Jun-07 22:43
Sharma Nakul3-Jun-07 22:43 
GeneralRe: FTP Pin
Dave Kreskowiak4-Jun-07 2:08
mveDave Kreskowiak4-Jun-07 2:08 
GeneralRe: FTP [modified] Pin
Sharma Nakul4-Jun-07 3:34
Sharma Nakul4-Jun-07 3:34 
GeneralRe: FTP Pin
Dave Kreskowiak4-Jun-07 13:27
mveDave Kreskowiak4-Jun-07 13:27 
QuestionNeed Help With Buttons and Panels Pin
LAPEC2-Jun-07 3:15
LAPEC2-Jun-07 3:15 
AnswerRe: Need Help With Buttons and Panels Pin
Dave Kreskowiak2-Jun-07 9:19
mveDave Kreskowiak2-Jun-07 9:19 
Questioncan i programatically enable the macro of word2003... Pin
koolprasad20032-Jun-07 2:24
professionalkoolprasad20032-Jun-07 2:24 
AnswerRe: can i programatically enable the macro of word2003... Pin
Dave Kreskowiak2-Jun-07 9:16
mveDave Kreskowiak2-Jun-07 9:16 
QuestionAutomating Database connection Pin
ips_sun2-Jun-07 0:13
ips_sun2-Jun-07 0:13 
AnswerRe: Automating Database connection Pin
Dave Kreskowiak2-Jun-07 9:15
mveDave Kreskowiak2-Jun-07 9:15 
Questiondisplaying mesage [modified] Pin
trialnerror1-Jun-07 23:42
trialnerror1-Jun-07 23:42 

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.