I have an Orderform with a subOrderform. When the parent form opens for the first time, it may not permit to see any data as well in the Orderform as in the subOrderform, nor give the user the possiblity to make changes or enter new record without clicking the appropriate button.
So I want to see blanco fields in het parent form as well as in the subform by opening the form.
Do i reach this goal by putting the following code in the On Open event of the form:
Me.Dataentry = True
Me.allowAdditions = False
And what about the code in the click event of the buttons to
a) enter a new record
b) make changes to records
c) to delete records
d) to browse through the records?
And why do we see such a lot of dataentry forms, without a button to save new records or changes made?
So I want to see blanco fields in het parent form as well as in the subform by opening the form.
Do i reach this goal by putting the following code in the On Open event of the form:
Me.Dataentry = True
Me.allowAdditions = False
And what about the code in the click event of the buttons to
a) enter a new record
b) make changes to records
c) to delete records
d) to browse through the records?
And why do we see such a lot of dataentry forms, without a button to save new records or changes made?