MS ACCESS FORM OBJECTS – PT1

Get all the videos in this Access VBA collection 100% FREE by signing up at https://vbahowto.com/ms-access-tutorial

In this video I talk about vba properties and methods of ms access form object items. I also will show how to reference ms access form object items.

This is part 1 of a 3 part video series.

You can reference different ms access form objects with the “!” (bang) or “.” (dot).

Like Forms!frmCategories – Forms collection, then the “bang” and then the form name.

The “.” (dot) is for the property, like Forms!frmCategories.Caption = the caption of the frmCategories form.

The “Me” keyword is used to reference the current form in use. All of the objects on the form currently in use belong to “Me”.

Option Compare Database

Private Sub Form_Current()
    Dim intResult As Integer
    
    Forms!Categories.Caption = Me.CategoryName
    
    intResult = calculate(6, 6)
    
    MsgBox intResult
    
    
End Sub

Function calculate(num1, num2)
    Dim dblResult As Double
    
    dblResult = num1 + num2
    
    calculate = dblResult
    
End Function

<< MS Access VBA Control Events – PT3 | MS Access Form Objects – PT2 >>




By the way, if you got or are getting value from the VBA information, please click the "Donate" button to give me a small token of your appreciation, thanks!


These posts may help answer your question too...

Learn Access VBA: Understand Tables, Queries, Forms, and Reports

Learn Access VBA: From Zero to Database Hero If you’ve ever opened Microsoft Access and wondered how all the pieces fit together — tables, queries, forms, and reports — this tutorial is made for you. In just a few minutes, you’ll understand how Access works behind the scenes and see how VBA (Visual Basic for […]

How To Make An Access Form Time Picker

Here is a relatively easy way to select times for your time entry text boxes. It’s a reusable form that allows you to pick a time from an Access form. There are probably different ways to do this but here is the way I would do it. On the form that has the time fields, […]

How to pick a file to load In VBA

How to Pick a File in VBA: FileDialog & GetOpenFilename Explained When building Excel VBA applications, you’ll often need to let users pick a file to load in VBA. Instead of hard-coding file paths, you can use built-in dialogs that make file selection easy and user-friendly. VBA offers two main approaches: FileDialog object (flexible, customizable) […]

What is the purpose of the Me keyword in Access VBA?

What does the Me keyword mean? “Me” refers to the Access form currently in focus. Instead of writing out the entire form reference, you can just use the keyword “Me” which is easier. Like: Me.txtbox = “I am a textbox on the form that currently has the focus.” or you can update a label’s caption […]


Support these sponsors:
Previous Post

MS ACCESS FORM OBJECTS – PT2

Next Post

MS Access VBA Control Events – PT3

Leave a Reply

Your email address will not be published. Required fields are marked *