Subforms with ADO

J

jerry

I've used forms/subforms, but never by coding ADO connections and the
associated SQL. Is there a source for some code examples on how to do this?
 
D

Douglas J. Steele

Forms and subforms don't care whether you're using DAO or ADO. There's no
difference in how you set up the relationship between the form and its
subform(s): you use the LinkChildFields and LinkMasterFields properties of
the subform control.
 
Top