Results 1 to 2 of 2

Thread: Problems loading a form!!!

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jan 2000
    Location
    south africa
    Posts
    16

    Post

    I have a form that is binded to a data control,the thing is,each time I load this form the textboxes have values in them.

    How can I ensure that when the form is loaded my controls don't show current records instead a blank record?

    please help me

  2. #2
    Addicted Member
    Join Date
    Oct 1999
    Posts
    253

    Post

    You can do that by ading a new record when the form is loaded:

    Private Sub Form_Load()
    Data1.Recordset.AddNew
    End Sub

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width