Persistent Radio button and Combo box selection.

Ludwig Stockmann

New member
Joined
Nov 23, 2006
Messages
3
Programming Experience
Beginner
Hi, everybody.
I am new to Vb.net (2003) and I need some help with a little form.
The form has two radio buttons one called "Yes," and the other "No". These radio buttons, when clicked enable one of two Combo boxes I have implemented.
When the radio button "Yes" is clicked, it enables Combo Box 2, and when radio button" No" is clicked, it enables Combo Box 1.
My question is?
How can I make the Radio button Selection (either yes or not), and the Combo box enabled by the radio button selection "Persistent" after the little form has been closed?. Basically I need the radio button selection, and the Combo box it has enabled to be the "defaults" settings all the time the form is started.
Note: This is Vb.net 2003.
Any help or guidance will be greatly appreciated.
 
When a selection is made save it to your application settings, this could be any type of file where data structure is defined by yourself, such as plain .txt or .ini or binary or xml, or you could save settings to registry. When you need to know what a setting is you just retrieve it from the storage.
 
Back
Top