Having some troubles with a program I'm writing. I'm using SharpDevelop, and I'm writing a VB.net program, that I am doing for a friend.
I have a combo box that has a list of races, that are already added (Human, Elf, Dark Elf, Draconian, Viera, Wingly). Upon selection, the appropriate jobs need to be listed. (Example: Wingly cannot be Berserkers, Viera cannot be Dark Knights, etc.)
How can I populate the second combo box when an option is selected in the first one?
Example:
Race Combo Box Contents: Human
Job Combo Box Contents:
Job 1
Job 2
Job 3
Job 4
Something like above, where Job 1, Job 2, etc. show up in the job combo box.
Then, on selection of a job in the job combo box, I want to populate a textbox/List grid with the abilities available to each level of a job, updating to show the relevant results for the selected job.
I'm not wanting to use SQL, or an Access Database to accomplish this. Any help will be gratefully accepted.