[FONT="]Hi Guys,
I'm really new to this so all your help and comments are really appreciated, thanks in advanced!
I had spent 12 hours doing this:banghead: earlier today but to my satisfaction I've figured out one part of the puzzle; how to create 1 cascading combo box.
I have a Request form which has a variety of combos on it. The first combo is titled Request Type (cboRequestType) and the synced combo titled RequestTo (cboRequestTo).
I followed the instruction pretty much to the T in the following sequence;
Change Request Combo Event After Update to ...[/FONT]
[FONT="]The problem is;[/FONT]
[FONT="]If it doesn't make to much sense just let me know and I'll try to explain better. [/FONT]
[FONT="]Thanks
[/FONT]
I'm really new to this so all your help and comments are really appreciated, thanks in advanced!
I had spent 12 hours doing this:banghead: earlier today but to my satisfaction I've figured out one part of the puzzle; how to create 1 cascading combo box.
I have a Request form which has a variety of combos on it. The first combo is titled Request Type (cboRequestType) and the synced combo titled RequestTo (cboRequestTo).
I followed the instruction pretty much to the T in the following sequence;
Change Request Combo Event After Update to ...[/FONT]
- [FONT="]Private Sub cboRequestType_AfterUpdate()
Me.cbORequestTo.Requery
If Me.cbORequestTo.ListCount > 0 Then
Me.cbORequestTo = Me.cbORequestTo.ItemData(0)
Me.cbORequestTo.SetFocus
Me.cbORequestTo.Dropdown
End If
End Sub[/FONT]
- [FONT="]SELECT LocalAuthority.LocalAuthorityName, LocalAuthority.RequestType FROM LocalAuthority WHERE (((LocalAuthority.RequestType)=[Forms]![Requests]![cboRequestType])) ORDER BY LocalAuthority.LocalAuthorityName, LocalAuthority.RequestType; [/FONT]
- [FONT="]SELECT LocalAuthority.LocalAuthorityName, LocalAuthority.RequestType FROM LocalAuthority WHERE (((LocalAuthority.RequestType)=[Forms]![Requests]![cboRequestType])) ORDER BY LocalAuthority.LocalAuthorityName, LocalAuthority.RequestType; [/FONT]
[FONT="]The problem is;[/FONT]
- [FONT="]I'm unsure how to do this across the 4 other fields I'll need to. These other tables are Company, Contact, Universities and Events.[/FONT]
- [FONT="]Doing this in the contact field requires Combo Box Columns as the full names is split across; Salutation, First & Second.[/FONT]
[FONT="]If it doesn't make to much sense just let me know and I'll try to explain better. [/FONT]
[FONT="]Thanks
[/FONT]