Blank Add Record Form

  • Thread starter Thread starter dvlnblk
  • Start date Start date
D

dvlnblk

Guest
Hi, I am an ASP programmer and really, and I mean REALLY new to ACCESS programming. I have created a form but it populates with my first record. I just want a blank form that will insert a new record into my DB. Can someone help with this? Thanks, DVLNBLK
 
Open the form using the acFormAdd constant.

Code:
DoCmd.OpenForm "MyForm", , , , acFormAdd
 
How good an Asp programmer? :)
Think of the access form as a blank html form, your choice if you want bound/unbound.

If bound, use SJs post above.


Vince
 

Users who are viewing this thread

Back
Top Bottom