Skip to content

Latest commit

 

History

History
40 lines (23 loc) · 1.52 KB

Access.Control.Name.md

File metadata and controls

40 lines (23 loc) · 1.52 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Control.Name property (Access)
vbaac10.chm10173
vbaac10.chm10173
Access.Control.Name
b1e31997-1b99-0476-eda8-afef8975420b
02/13/2019
medium

Control.Name property (Access)

Use the Name property to determine the string expression that identifies the name of an object. Read-only String.

Syntax

expression.Name

expression A variable that represents a Control object.

Remarks

A valid name must conform to the standard naming conventions for Microsoft Access. For Access objects, the name may be up to 64 characters long. For controls, the name may be as long as 255 characters.

For an unbound control, the default name is the type of control plus a unique integer. For example, if the first control that you add to a form is a text box, its Name property setting is Text1.

For a bound control, the default name is the name of the field in the underlying source of data. If you create a control by dragging a field from the field list, the field's FieldName property setting is copied to the control's Name property box.

You can't use "Form" or "Report" to name a control or section.

Controls on the same form, report, or data access page can't have the same name, but controls on different forms, reports, or data access pages can have the same name. A control and a section on the same form can't share the same name.

[!includeSupport and feedback]