Posts Tagged ‘vba’

Microsoft Access Tutorial: Project Scoring with Multiple Criteria – Part 2 of 3

Sunday, April 4th, 2010

In this tutorial, you will learn how to calculate a score for projects based on multiple criteria in multiple categories using combo boxes, custom SQL, and a little VBA. You’ll also learn about the VAL and NZ functions.

Duration : 0:9:45

(more…)

Access Database | Dough-si-Dough Order Management

Friday, March 5th, 2010

This is a database developed to track Customer orders, products, production, payments and shipping for a small business.

Duration : 0:7:28

(more…)

2.32 Queries Using SQL And VBA in Access

Wednesday, February 17th, 2010

Using QBE builder to provide SQL and sticking it into VBA in order to run a delete query

Duration : 0:6:23

(more…)

2.29 Password Protecting Queries with Access VBA

Monday, February 1st, 2010

Forcing a password to be entered in order to run a query
Here’s the code I used
Password.SetFocus
If Password = “Manager1″ Then
MsgBox “Access Granted”, vbInformation, “CD Shop”
MsgBox “Delete Query Active”, vbInformation, “CD Shop”
DoCmd.RunMacro “M_ArchiveStock”
MsgBox “Deletion Confirmed”
Else
MsgBox “Please re-enter your Password.”
End If

Duration : 0:6:54

(more…)

Microsoft Access AfterUpdate Event

Friday, January 29th, 2010

Video Tutorial: How to create an AfterUpdate event in a form with Microsoft Access. Learn how to select a customer and have all of his address information automatically filled in.

Duration : 0:6:21

(more…)

Microsoft Access Advanced: RecordSets to Access Data in VBA

Wednesday, December 30th, 2009

This is an advanced Microsoft Access tutorial that will show you how to use RecordSets in Visual Basic (VBA) to access data stored in a table in your code.

Duration : 0:9:53

(more…)

2.33 Populating a text box (or control) using a form button

Tuesday, November 17th, 2009

Simple VBA that creates a ‘Help Form’ in Access

Duration : 0:6:8

(more…)

1.7 Adding a Real Time Clock to Forms in Microsoft Access

Friday, November 13th, 2009

Using a tiny bit of vba to add a clock to your form

Duration : 0:3:4

(more…)

Microsoft Access: Tracking Student Attendance, Append Query

Saturday, October 10th, 2009

In this Microsoft Access tutorial, I will show you how to use an Append Query to track student attendance in classes. We’ll create a couple of tables and a form, then use an Append Query to transfer the data from our student table to our attendance history table. I’ll also throw in a little VBA code just to spice things up.

Duration : 0:9:6

(more…)

Microsoft Access: Tracking Student Attendance, Append Query

Saturday, October 10th, 2009

In this Microsoft Access tutorial, I will show you how to use an Append Query to track student attendance in classes. We’ll create a couple of tables and a form, then use an Append Query to transfer the data from our student table to our attendance history table. I’ll also throw in a little VBA code just to spice things up.

Duration : 0:9:6

(more…)