change the record source of subform runtime

  • Thread starter Thread starter 123
  • Start date Start date
1

123

thank you
is possible to change the record source of subform in runtime..
notes:
subform as data sheet in main form.
user can't make any design change because the protection
 
123 said:
is possible to change the record source of subform in runtime..
notes:
subform as data sheet in main form.
user can't make any design change because the protection

Use this kind of syntax:

Forms!mainform.nameofsubformcontrol.Form.RecordSource = ...
 
Back
Top