D
Douglas
I have a form which allows two modes
1. Browsing records (Show All)
2. Adding new records (Add New)
I have a button called "Add New" which sets
Form.AllowAdditions = True
Form.DataEntry = True
and a button called Show All which sets
Form.AllowAdditions = False
Form.DataEntry = False
this works fine but currently the user, when in Add New mode, can add
in multiple new records by using the navigations buttons but I would
like to restict the Add New mode to just 1 record. This means they
would click the "Add New" button, enter the data for one new record,
then click a Save button and it would jump back to "Show All" mode at
the record they just entered.
So my question is how do i restrict "Add new" to only allow 1 record
per "Add New".
Hope this makes sense
TIA
Doug
1. Browsing records (Show All)
2. Adding new records (Add New)
I have a button called "Add New" which sets
Form.AllowAdditions = True
Form.DataEntry = True
and a button called Show All which sets
Form.AllowAdditions = False
Form.DataEntry = False
this works fine but currently the user, when in Add New mode, can add
in multiple new records by using the navigations buttons but I would
like to restict the Add New mode to just 1 record. This means they
would click the "Add New" button, enter the data for one new record,
then click a Save button and it would jump back to "Show All" mode at
the record they just entered.
So my question is how do i restrict "Add new" to only allow 1 record
per "Add New".
Hope this makes sense
TIA
Doug