Access Form

MS ACCESS FORM OBJECTS – PT3

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 the “With” Statement, and 2 DoCmd methods, DoCmd.OpenForm and DoCmd.OpenReport There are many arguments for the OpenForm and OpenReport methods I will elaborate on at the blog, https://vbahowto.com This is part 3 of […]

Continue Reading

MS ACCESS FORM OBJECTS – PT2

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 continue to talk about ms access form object items as I demonstrate how to set control values. I also will show how to reference ms access form object items. This is part 2 of a […]

Continue Reading

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 […]

Continue Reading

MS Access Form Events – PT1

In this video I talk about how to program vba object items like the ms access form. Specifically we look at the Access Form Open Event, and add a password prompt in the open event of the form, cancelling the open event if it is incorrect. Also we will look at controlling the Form_Load with […]

Continue Reading

MS Access Form Events – PT2

This video covers the following MS Access Form Events: Form_Delete Form_Unload Form_Close Remember: The Unload Event happens before the Close Event. Private Sub Form_Close() ‘happens after the unload event End Sub Private Sub Form_Delete(Cancel As Integer) If MsgBox("Continue with Delete?", vbYesNo) = vbNo Then Cancel = True End If End Sub Private Sub Form_Unload(Cancel As […]

Continue Reading

MS Access VBA Form Filter Example

In a previous post I gave an example of a MS Access form filter. This revision is to demonstrate how to requery a form after the combobox changes, and not when a button is clicked. Here is the code: Private Sub cboDescription_AfterUpdate() Me.FilterOn = False m_Where = m_Where & ” AND Description = ‘” & […]

Continue Reading

How To Highlight The Current Row In A Continuous Form In 3 Steps

Somebody asked this question, and so I wanted to show how to do it here. It is really simple. As you may know, when you change the color for 1 row in a continuous form, every row will be affected! Not like Excel. So how do you fix this? Glad you asked…with VBA and conditional […]

Continue Reading

Docmd.OpenForm With Multiple Parameters

Hi everyone, I received a question as a result of one of my other posts: How To Open A Form To A Specific Record In Access 2016 VBA please help me. i’ve been trying to solve this problem but didn’t success. how to open a specific record in access 2016 with two conditions? for example […]

Continue Reading

How To Make A MS Access Filter Form With Combobox Using VBA

Hi, I was working on a filter similar to this query, and I noticed someone may have some questions on how to do it. So this post is going to show you how to filter some date records with a combobox, actually 2 comboboxes. Here’s the jist of the question: ” I have a Microsoft […]

Continue Reading

MS Access Subform Navigation Buttons

In the following example the ms access subform gets its value from parent form. In our example we have a main form which shows the customers and the subform which shows all the orders for the customer: Independently the forms function by themselves, however it is more meaningful if they are combined. This is how […]

Continue Reading