I have been using Access for awhile, but I have just recently dove into the VB realm and I am about to drown. This is all I want to do:
I have a table (Names) with - SSN, FirstName, LastName, DOB
I have a table (Active) with - SSN, Course, Title, EnrollDate, SendDate, DeadlineDate
I have a table (Completed) with - SSN, Course, Title, ActionDate, Grade
I have a table (Disenrolled) with - SSN, Course, Title, Grade, DisenrollDate
They are all linked 1 to Many by SSN
SSN is the primary key in the table Names
1 Form (NameFrm) with 1 Combobox (ComboBox) and 3 ListBoxes (ActiveList, CompletedList, DisenrolledList)
I want to have the combobox that lists all the names in table Names (which I have done, but if I try to bind it, when I go to select a name it won't let me)
When you select a certain name from the combobox, all the listboxes are updated with the info that matches the SSN.
Thank you if you can help... it sounded easy, I dont know why the problem...
I have a table (Names) with - SSN, FirstName, LastName, DOB
I have a table (Active) with - SSN, Course, Title, EnrollDate, SendDate, DeadlineDate
I have a table (Completed) with - SSN, Course, Title, ActionDate, Grade
I have a table (Disenrolled) with - SSN, Course, Title, Grade, DisenrollDate
They are all linked 1 to Many by SSN
SSN is the primary key in the table Names
1 Form (NameFrm) with 1 Combobox (ComboBox) and 3 ListBoxes (ActiveList, CompletedList, DisenrolledList)
I want to have the combobox that lists all the names in table Names (which I have done, but if I try to bind it, when I go to select a name it won't let me)
When you select a certain name from the combobox, all the listboxes are updated with the info that matches the SSN.
Thank you if you can help... it sounded easy, I dont know why the problem...