Results 1 to 2 of 2

Thread: Access Form In Excel List

  1. #1

    Thread Starter
    New Member
    Join Date
    Jun 2004
    Posts
    1

    Access Form In Excel List

    I created an Access Form while in Excell. No problem. What I am trying to do is when I open the excell file I want the Access Form to automatically open up so that the data will be entered this way. I tried different ways to do this but can figure it out. help

  2. #2
    Addicted Member
    Join Date
    Aug 2002
    Location
    Luton, UK
    Posts
    178
    Use View/Project Explorer in the VB Editor. Doubleclick ThisWorkBook and use the Workbook_Open event - something like this :-

    Code:
    Private Sub Workbook_Open()
        UserForm1.Show
    End Sub
    Regards
    BrianB
    -------------------------------

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