ACC2000: You Don't See the Toolbox in Design View of a Form or a Report

ID: Q248059


The information in this article applies to:
  • Microsoft Access 2000

Novice: Requires knowledge of the user interface on single-user computers.

This article applies to a Microsoft Access database (.mdb) and a Microsoft Access project (.adp).


SYMPTOMS

When you open a form or a report in Design view, you don't see the toolbox. This is true even though the Toolbox command is checked on the Toolbars submenu on the View menu.


CAUSE

The toolbox is positioned off the viewable area of the screen.


RESOLUTION

Because the toolbox is a CommandBar object, you can use code to position the toolbox on the screen again. To do so, follow these steps:

  1. Start Microsoft Access.


  2. Open a database.


  3. Open any form in Design view.


  4. Press CTRL+G to open the Immediate window in the Visual Basic Editor.


  5. Type the following command in the Immediate window, and then press ENTER:


  6. CommandBars("Toolbox").Left = 100 
  7. Type the following command in the Immediate window, and then press ENTER:


  8. 
    CommandBars("Toolbox").Top = 100 
  9. Press ALT+F11 to switch back to Design view of the form in Microsoft Access.


The toolbox should now be located 100 pixels from the left and 100 pixels from the top of the screen.


REFERENCES

For additional information about recovering design windows that have been positioned off the screen, such as the Form/Report Properties window, the field list, and the Sorting/Grouping dialog box, click the article number below to view the article in the Microsoft Knowledge Base:

Q200412 ACC97: Can't See Dialog Box on System That Had Dual Monitors

Additional query words: prb gone cannot can not can't see where did go tool box offscreen hidden hiding invisible visible is

Keywords : kbdta
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbprb


Last Reviewed: January 6, 2000
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.