access

Forum home » Delegate support and help forum » Microsoft Access Training and help » Access

Access

resolvedResolved · Low Priority · Version 2003

Brynjar has attended:
Access Advanced course

Access

Is it vital to learn VBA for database development?

RE: Access

Hi Brynjar

The short answer is Yes.

In Access you cannot develop a sophisticated Access database without it.

Although Access produces great Databases you need VBA to automate connections especially in forms.

It is also a stepping stone to SQL programming.

Hope this helps.

Carlos

Thu 16 Apr 2009: Automatically marked as resolved.


 

Access tip:

Open A Combo Box Automatically

This is helpful if users need to enter large amounts of data. There are two ways to open ComboBoxes when they get the focus by using the tab keys.

When the ComboBox gets focus:

Press Alt + Down Arrow on the keyboard

For it to happen automatically, needs a bit of coding:

1. Add a combo box and a text box control to the form
2. Set the combo box's On Got Focus property to the following event procedure:

Private Sub ComboBoxName _GotFocus()

Me!ComboBoxName.Dropdown

End Sub


3. Open your form in Form View and use the TAB key to make sure it works.

View all Access hints and tips


Server loaded in 0.09 secs.