Hello !
I have 2 tables:
and one form, frmChilds, bound to tblChilds
In this form, a combo box (named ID_Parent)
The Row Source is:
and the Control Source is ID_Parent
The question is:
How to open this form and have sorted it's records by ParentName by default ?
Thank you !
I have 2 tables:
Code:
tblParents:
ID_Parent (autonumber)
ParentName (Text)
Code:
tblChilds:
ID_Child (autonumber)
ID_Parent (Look Up field on tblParents)
ChildName
In this form, a combo box (named ID_Parent)
The Row Source is:
Code:
SELECT [tblParents].[ID_Parent], [tblParents].[ParentName] FROM tblParents ORDER BY [ParentName];
The question is:
How to open this form and have sorted it's records by ParentName by default ?
Thank you !
Comment