The application is driven from the ribbon. So, if there is an entry point on the ribbon, that would be the way to do it. I'll have to refresh myself, though, as it's been many months since launch.
On the other hand, it's a template, so if you prefer to modify it, please feel free to do it.
Edit: OK, found that with a right click, but the behaviour is the same.
When go go into the form it automatically adds an empty record at the top, whilst you are on the bottom record about to enter a new value.
Decide you do not want to add one anyway and are unable to close the form without an error message.
I just found it by going to the form from the navigation list.
Edit: OK, found that with a right click, but the behaviour is the same.
When go go into the form it automatically adds an empty record at the top, whilst you are on the bottom record about to enter a new value.
Decide you do not want to add one anyway and are unable to close the form without an error message.
I just found it by going to the form from the navigation list.
Thank you. One of the dangers of testing is that you get used to doing the same things the same way and don't stumble on problems on on paths. I'll make sure it gets on the list to be addressed
I dug a little into this error. It looks like this is not a code problem per se. Rather it looks like the sample data provided for the template contains one bad record. I.e. a record with no value in the "Title" field. I'm relieved that it isn't a problem in design, though. How and when that null ZLS Title got into the table I can't say. Thanks again for catching this.
OK, I think it might be just due to no validation on an empty record, and as the table is
then that record appears at the top and the new record is at the bottom.
That appears to be my issue.
I added
Code:
Private Sub Form_BeforeUpdate(Cancel As Integer)
If Nz(Me.Title, "") = "" Then
Me.Undo
End If
End Sub
and that appears to correct it.
I know you would expect a developer to add their own validation, but I was just looking at a few forms, and found this issue doing that.
So as you say, not a bug.
OK, I think it might be just due to no validation on an empty record, and as the table is View attachment 113827
then that record appears at the top and the new record is at the bottom.
That appears to be my issue.
I added
Code:
Private Sub Form_BeforeUpdate(Cancel As Integer)
If Nz(Me.Title, "") = "" Then
Me.Undo
End If
End Sub
and that appears to correct it.
I know you would expect a developer to add their own validation, but I was just looking at a few forms, and found this issue doing that.
So as you say, not a bug.