다음을 통해 공유


OpenView Macro Action

In an Access project, you can use the OpenView action to open a view in Datasheet view, Design view, or Print Preview. This action runs the named view when opened in Datasheet view. You can select data entry for the view and restrict the records that the view displays.

참고

데이터베이스가 신뢰할 수 없는 경우 이 작업은 허용되지 않습니다. 매크로를 사용하도록 설정하는 방법에 대한 자세한 내용은 이 문서의 See Also 섹션 링크를 참조하십시오.

Setting

The OpenView action has the following arguments.

Action argument

Description

View Name

The name of the view to open. The View Name box in the Action Arguments section of the Macro Builder pane shows all views in the current database. This is a required argument. If you run a macro containing the OpenView action in a library database, Microsoft Access first looks for the view with this name in the library database, and then in the current database.

View

The view in which the view will open. Click Datasheet, Design, Print Preview, PivotTable, or PivotChart in the View box. The default is Datasheet.

Data Mode

The data entry mode for the view. This applies only to views opened in Datasheet view. Click Add (the user can add new records but can't view or edit existing records), Edit (the user can view or edit existing records and add new records), or Read Only (the user can only view records). The default is Edit.

Remarks

This action is similar to double-clicking a view in the Navigation Pane, or right-clicking the view in the Navigation Pane and then clicking the command you want.

Tips

  • You can drag a view from the Navigation Pane to a macro action row. This automatically creates an OpenView action that opens the view in Datasheet view.

  • If you don't want to display the system messages that normally appear when a view is run (indicating it is a view and showing how many records will be affected), you can use the SetWarning action to suppress the display of these messages.

To run the OpenView action in a Visual Basic for Applications (VBA) module, use the OpenView method of the DoCmd object.