I'm trying to follow other people's examples and also Microsoft's. Help?
Two Comboboxes: Combo1 is Section and Combo2 is Title. There are 5 different Titles in a Section.
' ****tTitle (TABLE)*****
' iTitleID = Primary Key
' Title = name of combobox for Titles
' SM_Title = Name of title for Service Member
' Sec_Title = Name of Sections (5 Sections per title)
' fkeySectionID = (number) for sharing to SectionID (?)
' ****tSection (TABLE)*****
' SectionID = Primary Key
' Section = Name of dropdown for Sections
Me.Title.RowSource = "SELECT SM_Title FROM" & _
" Title WHERE Sec_Title= " & Me.Section & _
Me.Title = Me.Title.ItemData(0)
Two Comboboxes: Combo1 is Section and Combo2 is Title. There are 5 different Titles in a Section.
' ****tTitle (TABLE)*****
' iTitleID = Primary Key
' Title = name of combobox for Titles
' SM_Title = Name of title for Service Member
' Sec_Title = Name of Sections (5 Sections per title)
' fkeySectionID = (number) for sharing to SectionID (?)
' ****tSection (TABLE)*****
' SectionID = Primary Key
' Section = Name of dropdown for Sections
Me.Title.RowSource = "SELECT SM_Title FROM" & _
" Title WHERE Sec_Title= " & Me.Section & _
Me.Title = Me.Title.ItemData(0)