Just assume, I have 3 xml files (file1.xml, file 2.xml adnfile 3.xml); each file, contains fisrt and last name. How to load them to listbox using radio button? waht I mean is that I have three option to load them to a list box and I only want to load to listbox only the first name. Anyone can help?
Oh, I use Visual Basic 2008.
-
- Read about how logo jewelry can be used to reward and motivate employees.
-
Recent Posts
- The Methods That The IContact Service Could Help Assist In Website Promotion
- 3D Computer Monitors Rock! – Take Computer Gaming To Another Level
- Using IContact To Optimize The Effectiveness Of Your Email Marketing
- The Reasons Behind Why You Should Use An IContact Coupon Code
- Software Programmers Or Software Developers Are Required To Develop Applications For Various Purposes.
- Several Quick Tricks For Boosting Your Internet Site Web Optimization
- Small businesses now have affordable access to sophisticated online and mobile telephone systems at affordable prices. Check out the big daddy of the Virtual PBX category with this RingCentral Review.
Blogroll
One Comment
No sure which language you are using but will see if I can help.
First, a radio button is a strange choice to use as a trigger. You typically use two or more radio buttons to give someone a choice. For your example you could list file1.xml as button one, file2.xml as button two, etc. When a push button is pressed on your form you would look at the radioButton.checked value and load the appropriate file.
Assuming you want to use the radio button as the trigger you’ll have to put in a CheckChanged event handler.
See the attached URL below for an example in VB and C++.
Post a Comment