S
SF
Hi,
I have a main form to display Organization type of information and subform
to display how many organization fall under this Org type. The form is
working fine. Now user want to go a little bit deeper, they want to have an
option to display only those organization who are directly invlove.
I have add a button hoping that user can click on it to switch the rowsource
of the form but it appear not working
If Me.cmdSwitchOrgSource.Caption = "List only Pact Partner" Then
Me.subfrmContactOrganizations.RowSource
="subfrmContactOrganizationsPartner"
Else
Me.subfrmContactOrganizations.RowSource = "subfrmContactOrganizations"
End If
Me.subfrmContactOrganizations.Requery
Could somebody advice?
SF
I have a main form to display Organization type of information and subform
to display how many organization fall under this Org type. The form is
working fine. Now user want to go a little bit deeper, they want to have an
option to display only those organization who are directly invlove.
I have add a button hoping that user can click on it to switch the rowsource
of the form but it appear not working
If Me.cmdSwitchOrgSource.Caption = "List only Pact Partner" Then
Me.subfrmContactOrganizations.RowSource
="subfrmContactOrganizationsPartner"
Else
Me.subfrmContactOrganizations.RowSource = "subfrmContactOrganizations"
End If
Me.subfrmContactOrganizations.Requery
Could somebody advice?
SF