Home  Fees/Services  Access Examples  Tutorials  Access Download  Articles  Search  Contact  Privacy  Links

DoCmd Examples - Access 2007 VBA
Open Form DoCmd

Docmd Macro VB Examples Macro DoCmd Functions

Access Database Tutorials>DoCmd Examples>DoCmd OpenForm

Download Access Database >



DoCmd AddMenu
DoCmd ApplyFilter
DoCmd CancelEvent
DoCmd Close
DoCmd CopyObject
DoCmd DeleteObject
DoCmd FindRecord
DoCmd FindNext
DoCmd GotoControl
DoCmd HourGlass
DoCmd Min/Max/Restore
DoCmd OpenForm
DoCmd OpenQuery
DoCmd OpenReport
DoCmd OutputTo
DoCmd RunSQL
DoCmd SendObject
DoCmd TransferDatabase
DoCmd TransferText

Create Export Specs



Microsoft Access Docmd.OpenForm Example

Open a form in Form view, Design view, Print Preview, or Datasheet view

access openform example
(the command line is continued below)
openform command in Microsoft Access

The arguments for the Open Form method are as follows:

FormName - A string or string variable that contains the name of the form to be opened.

New! Download a running example of the Docmd.OpenForm Method

View - The presentation format of the form to be opened.  The view argument has the following options:

acDesign
acFormDS    (datasheet view)
acFormPivotChart
acFormPivotTable
acNormal     (default. Opens the form in Form view.)
acPreview    (print preview)

FilterName - A string expression or variable that is a name of a query in the current database.

WhereCondition - A string expression containing an SQL WHERE clause without the word WHERE.  Such as, "Order_ID=" & Me.Order_ID

DataMode - The data entry mode for the form. This only applies to forms in Form view (default) or Datasheet view.  The DataMode argument has the following options:

acFormAdd - The user can add new records but can not edit existing records.
acFormEdit - The user can edit existing records and add new records.
acFormPropertySettings - (default - uses form's property settings)
acFormReadOnly - The user can only view records.

WindowMode - The window mode in which the form opens.  Window Mode can have the following values:

acDialog - The form's Modal and PopUp properties are set to Yes.
acHidden - The form is hidden.
acIcon - The form opens minimized in the Windows taskbar.
acWindowNormal - (default) Used the forms mode settings.

OpenArgs - A string expression used to set the form's OpenArgs property. The OpenArgs string can then be used by code in a form module, such as the On Open event procedure to perform actions based on the open arguments value.

More Open Form examples:

Active Labels: Form Links Using Labels

DoCmd.OpenForm stDocName, acNormal, , , acFormAdd, , "Add" Exit_lblContact_DblClick: Exit Sub Err_lblContact_DblClick: MsgBox Err.Description ...
www.blueclaw-db.com/active-label-links.htm

DblClick Event in Access

DoCmd.OpenForm "F_Order_Details", , , _ "Order_ID = Me.Order_ID" End Sub. The event order for clickable controls other than buttons is: ...
www.blueclaw-db.com/access_event_programming/dblclick.htm

Launch Outlook Email from Access Form

DoCmd.OpenForm "EmailClient", , , , acFormAdd Else If Not IsNull(Me!ContactEmail) And Not IsNull(EmailClient) Then ' if there is a \ on the end remove it ...
www.blueclaw-db.com/outlook-launch.htm





Contact Information

Custom Software Developers
MS Access 2007 2003 2000 All Windows Versions