Skip to content

Latest commit

 

History

History
49 lines (27 loc) · 1.25 KB

Access.Form.BeforeScreenTip(property).md

File metadata and controls

49 lines (27 loc) · 1.25 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Form.BeforeScreenTip property (Access)
vbaac10.chm13547,vbaac10.chm5112
vbaac10.chm13547,vbaac10.chm5112
Access.Form.BeforeScreenTip
4829b972-de4e-f8dc-f19c-c6a52c7dd14b
03/09/2019
medium

Form.BeforeScreenTip property (Access)

Returns or sets a String indicating which macro, event procedure, or user-defined function runs when the BeforeScreenTip event occurs. Read/write.

Syntax

expression.BeforeScreenTip

expression A variable that represents a Form object.

Remarks

Valid values for this property are:

  • macroname, where macroname is the name of a macro.

  • [Event Procedure], which indicates the event procedure associated with the BeforeScreenTip event for the specified object.

  • =functionname(), where functionname is the name of a user-defined function.

Example

The following example specifies that when the BeforeScreenTip event occurs on the first form of the current project, the associated event procedure should run.

Forms(0).BeforeScreenTip = "[Event Procedure]"

[!includeSupport and feedback]