fpendino
Registered User.
- Local time
- Today, 02:57
- Joined
- Jun 6, 2001
- Messages
- 73
It's been a while since using Access. Been doing ASP.net and SQL. I have a form with a subform. I'm trying to filter the subform which is disabled, with the value from a listbox.
On the double click of the listbox I have... frmTeamEdit is the subform
Forms!frmTeamMaintenance!frmTeamEdit.Form.Filter = "[TeamID] = " & Me.lstTeams
Me.frmTeamEdit.Enabled = True
Me.frmTeamEdit.Form.DataEntry = False
It is displaying only the first record in the table. It's showing the filter in the property window, but is not actually filtering.
Thanks in advance!
On the double click of the listbox I have... frmTeamEdit is the subform
Forms!frmTeamMaintenance!frmTeamEdit.Form.Filter = "[TeamID] = " & Me.lstTeams
Me.frmTeamEdit.Enabled = True
Me.frmTeamEdit.Form.DataEntry = False
It is displaying only the first record in the table. It's showing the filter in the property window, but is not actually filtering.
Thanks in advance!