What VB Code Minimizes the Database Window

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shiznaw
    New Member
    • Jun 2007
    • 29

    What VB Code Minimizes the Database Window

    Hey everyone, what's up?

    I would like to minimize the database window and open a form when the end user opens the database. Does anyone know how to do that? I suspect it would be in the global module? I'm sure its complex, I just don't know where to begin. Maybe if one of you guru's can point me to a reference or something.

    Thanx in advance.
    ---shiznaw
  • ADezii
    Recognized Expert Expert
    • Apr 2006
    • 8834

    #2
    Originally posted by shiznaw
    Hey everyone, what's up?

    I would like to minimize the database window and open a form when the end user opens the database. Does anyone know how to do that? I suspect it would be in the global module? I'm sure its complex, I just don't know where to begin. Maybe if one of you guru's can point me to a reference or something.

    Thanx in advance.
    ---shiznaw
    1. Create a Macro.
    2. In the first line in the Action Column, enter Minimize.
    3. In the second line, enter OpenForm in the Action Column and specify any Parameters in Action Arguments below.
    4. Save the Macro and name it AutoExec.
    5. When the Database opens, the Database Window will become Minimized and the Form you specified will open.

    Comment

    • shiznaw
      New Member
      • Jun 2007
      • 29

      #3
      Originally posted by ADezii
      1. Create a Macro.
      2. In the first line in the Action Column, enter Minimize.
      3. In the second line, enter OpenForm in the Action Column and specify any Parameters in Action Arguments below.
      4. Save the Macro and name it AutoExec.
      5. When the Database opens, the Database Window will become Minimized and the Form you specified will open.

      This works !! I also found some other methods.

      --shiznaw

      Comment

      Working...