hide blank / new record in continuous forms

  • Thread starter Thread starter Rod Isaacs, St George Hospital
  • Start date Start date
R

Rod Isaacs, St George Hospital

Hi all,
can anyone tell me how to elegantly hide the blank/new record in continuous
forms for easily confused users. Obviously there needs to be a way to show a
new record when required. I have tried putting a button on each continuous
form that toggles allowadditions to true (form design time default is Allow
Additions = No) but then there is no way to add the first record!
Thanks in advance.
 
Hi,
You could put this code in the form's open event:

If Me.RecordsetClone.RecordCount = 0 Then
Me.AllowAdditions = True
End If
 
Back
Top