combo box on subform in tab control

  • Thread starter Thread starter WC Justice
  • Start date Start date
W

WC Justice

Access 2000

I am trying to refer to the value of a combo box within a subform within a
tab control, but cannot seem to get the reference right. The specifics are
as follows:

Form: Tract
Tab Control: TabCtl200
Subform: TenantTract subform
Combo Box: cboTenantID

Please provide the proper reference.

Thanks in advance.
 
WC said:
Access 2000

I am trying to refer to the value of a combo box within a subform within a
tab control, but cannot seem to get the reference right. The specifics are
as follows:

Form: Tract
Tab Control: TabCtl200
Subform: TenantTract subform
Combo Box: cboTenantID

Please provide the proper reference.

Fromanother form:
Forms!Tract.TenantTract.Form.cboTenantID

Within the main form containing the subform:
Me.TenantTract.Form.cboTenantID
 
Back
Top