ms-access-forms

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

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

How to setup cascading comboboxes in datasheet subform

In this post we will discuss how to setup cascading comboboxes in your subform. This post was in response to this issue that someone was having: So the real key to solving this issue is the ways the tables are setup. Here are the tables: -tblCashVouchers -tblCashVouchersDetails -tblAccountNames -tblAccountTypes tblCashVouchers tblCashVouchersDetails tblAccountNames tblAccountTypes The 1st […]

Continue Reading

How To Make An Access Report Based On Form Inputs

Hi, this post is on “How To Make An Access Report Based On Form Inputs”. Many times you want your report based on dynamic criteria. In this post I am going to show you how you can generate a report based on data selected from combo box inputs on your form. It’s easier to do […]

Continue Reading

MS ACCESS FORM VALIDATION – PT4

In this video we will cover VBA validation functions like: Validating Text Strings Check the string for null values. IsNull function Check the length of a string. Len Function Check the presence of characters present in a string. InStr function Inpect a portion of a string. Left, Right, Mid functions Removing the leading or trailing […]

Continue Reading

MS ACCESS FORM VALIDATION – 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: ms access text validation validation rule access input mask in access an input mask validation in access microsoft access table Here is the video: Data validation is a useful method to guide users […]

Continue Reading