Microsoft Access Form : Setting New Record

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ESAKKI109
    New Member
    • Jul 2014
    • 13

    Microsoft Access Form : Setting New Record

    In Microsoft access 2013 how can I set new record as a default without VBA coding and macro when form opens?
  • twinnyfo
    Recognized Expert Moderator Specialist
    • Nov 2011
    • 3662

    #2
    On the Form settings, set the form's Data Entry property to Yes. However, this will "hide" any other records.

    Other than that, you can't do it without VBA or a macro (as far as I know).

    Comment

    • NeoPa
      Recognized Expert Moderator MVP
      • Oct 2006
      • 32662

      #3
      An alternative is to specify you want data entry only in the code that opens the form - assuming you have any.

      Comment

      • ESAKKI109
        New Member
        • Jul 2014
        • 13

        #4
        I have created parent Form with subform without any coding . So let me know how to write coding to open a form with new record option as default.

        Comment

        • NeoPa
          Recognized Expert Moderator MVP
          • Oct 2006
          • 32662

          #5
          Not for a subform, as they aren't opened as such. Certainly not with code. They become open when the main form is opened, but the code would only open the main form.

          Comment

          Working...