Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
MicrosoftError said:[blue]Compile error:
Method or data member not found[/blue]
[blue]Private Sub Name_AfterUpdate()
Dim rst As DAO.Recordset, hld As String
Set rst = Me.RecordsetClone
hld = rst[COLOR=red yellow].Credits[/color]
End Sub[/blue]
Microsoft said:[blue]Use the ! and . (dot) operators in expressions[/blue]
You use the ! and . (dot) operators in an [blue]identifier[/blue] to indicate the type of item that immediately follows.
The ! operator indicates that what follows is a [purple]user-defined item[/blue] ([blue]an element of a collection[/blue]). For example, use the ! operator to refer to an open form, an open report, or a control on an open form or report.
[tt] Identifier Refers to
************************ *******************************************
Forms![Orders] The open Orders form
Reports![Invoice] The open Invoice report
Forms![Orders]![OrderID] The OrderID control on the open Orders form[/tt]
The . (dot) operator usually indicates that what follows is an [purple]item defined by Microsoft Access[/purple]. For example, use the . (dot) operator to refer to a property of a form, report, or control.
Note You can also use the . (dot) operator to refer to a field value in an SQL statement, a Visual Basic for Applications method, or a collection. For example, the identifier Forms![Orders].Controls refers to the Controls collection of the Orders form. However, because the Controls collection is the default collection for forms and reports, it's usually not necessary to refer to it explicitly.
Not one of Microsoft's more precise statements. If I create a public sub on a form called SayHelloWorld(), that is a method not defined by Microsoft Access.Microsoft said:The . (dot) operator usually indicates that what follows is an item defined by Microsoft Access. For example, use the . (dot) operator to refer to a property of a form, report, or control.