ACC2000: How to Open a Combo Box Automatically

ID: Q209585


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

Moderate: Requires basic macro, coding, and interoperability skills.

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


SUMMARY

When you are entering a large amount of data and want to open a combo box, it is inconvenient to have to press additional keys or stop to use the pointer. In Microsoft Access, you can use the Dropdown method to force the list in the specified combo box to drop down. Using this method is identical to pressing the F4 key when the control has the focus.


MORE INFORMATION

The following steps show how to create a new form with a combo box named EmpLastName that will automatically display the list when you select the combo box.

  1. Open the sample database Northwind.mdb or Access project NorthwindCS.adp.


  2. Create a new form with the following controls:


  3. 
       Form: MyForm
       ------------------------------
       ControlSource: Employees Table
    
       Text box
       -----------
       Name: Text0
    
       Combo box
       -----------------------------------------------------
       Name: EmpLastName
       Row Source Type: Table/Query or Table/View/StoredProc
       Row Source: SELECT [LastName] FROM Employees;
    
       Command button
       ---------------------------
       Name: Command4 
  4. Set the combo box's OnGotFocus property to the following event procedure:


  5. 
    Private Sub EmpLastName_GotFocus()
       EmpLastName.Dropdown
    End Sub 
  6. Open your form in Form view, and press the TAB key to move to your combo box.



REFERENCES

For more information about the Dropdown method, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type "Dropdown method" in the Office Assistant or the Answer Wizard, and then click Search to view the topic.

Additional query words: inf

Keywords : kbdta AccCon KbVBA
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbhowto


Last Reviewed: May 13, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.