M
Mishanya
I've been reading a lot of threads on the issue, but still have no solution.
I want the form to open blank so the user can search records with unbound
cboSelectors in the Header, but it won't allow to change or add records, so
the "blank" record can't be "new" record.
Using On Open event procedure:
Me.Filter = "(False)"
Me.FilterOn = True
opens the form on "new" record in Add-one-record-only mode and disables the
cboSelectors.
Using the Load event procedure:
If Not Me.NewRecord Then
RunCommand acCmdRecordsGoToNew
End If
lets the cboSelectorswork, but opens the form on "new record in Add-enabled
mode.
Playing with AllowAdditions, AllowDeletions, AllowEdits and DataEntry
properties has not let me any further. I still can't find "Read only - open
blank (not on new record) - search with cboSelectors" mode.
I'll appreciate any help.
I want the form to open blank so the user can search records with unbound
cboSelectors in the Header, but it won't allow to change or add records, so
the "blank" record can't be "new" record.
Using On Open event procedure:
Me.Filter = "(False)"
Me.FilterOn = True
opens the form on "new" record in Add-one-record-only mode and disables the
cboSelectors.
Using the Load event procedure:
If Not Me.NewRecord Then
RunCommand acCmdRecordsGoToNew
End If
lets the cboSelectorswork, but opens the form on "new record in Add-enabled
mode.
Playing with AllowAdditions, AllowDeletions, AllowEdits and DataEntry
properties has not let me any further. I still can't find "Read only - open
blank (not on new record) - search with cboSelectors" mode.
I'll appreciate any help.