If I select classstandard in class combobox its correspoding subjects should display in subject combobox
and when this subjectcombobox item selected its branch should display in the branchcombobox.
Once I select the item in branchcombobox all its chapters should display in chaptercheckboxlist1 and
when I select chaptercheckboxlist1 that chapters containing questions should display in another checkboxlist
How to do this using windows form application c# with Access database
Loading
Jignesh TrivediPosted Jul 10, 2012, 11:58 PM
check box list control has SelectedIndexChanged event, with the help of this event I thing you can achieve same.
http://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.selectedindexchanged.aspx
Please refer for connect to access database.
http://www.codeproject.com/Articles/8269/How-to-link-to-an-Access-Database-in-a-C-Applicati
http://msdn.microsoft.com/en-us/library/5ybdbtte%28v=vs.71%29.aspx
hope this will help you.