Hey
I have a continuous form.
I want to add one button in the form header that say, "create new record".
Is this possible?
I only want to see the data that is already in the table that is connected to the form.
I do not want to see an empty row of data where i could enter data if i wanted to add a new record.
But if i press the button create new record, then i want to see the fields so the user can enter a new record.
How am i doing this?
I have tried this:
This works in a way but only if i set the option allowadditions to true.
But if i do that i always have an empty row of my fields at the end of the continious form.
So can i hide that row somehow?
I have a continuous form.
I want to add one button in the form header that say, "create new record".
Is this possible?
I only want to see the data that is already in the table that is connected to the form.
I do not want to see an empty row of data where i could enter data if i wanted to add a new record.
But if i press the button create new record, then i want to see the fields so the user can enter a new record.
How am i doing this?
I have tried this:
Code:
DoCmd.GoToRecord , , acNewRec
This works in a way but only if i set the option allowadditions to true.
But if i do that i always have an empty row of my fields at the end of the continious form.
So can i hide that row somehow?