So I had a question come in regarding showing the progress of a task.
Access has an ActiveX control that you can use called the ProgressBar and you can follow the guide in the image above to add it to your form.
On you long running process you can show the progress bar so the user knows something is happening
Sub LongRunningProcess_Click()
Me.ProgressBar2.Min = 1 ‘(your starting point: some starting number like, 1)
Me.ProgressBar2.Max = 100 ‘(your total records like: rst.RecordCount)
Me.ProgressBar2.Value = 1
For i = 1 To 100
Me.ProgressBar2.Value = i
DoEvents ‘show the changes on the progress bar
Next i
End Sub
Let me know if you have any questions
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
Picking a file to load in your Microsoft App is a very important skill to know. In this blog post you will see how to do it. First you need to set a reference to the MS office object library From VBE editor –> select Tools > MS office object library (click check mark) Sub […]
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 […]
How do I run VBA code when form opens
How do I run VBA code when form opens? There are probably several ways people do it, and some may say “He’s not doing it right. It’s done this way…” Good for you. This is the way I do it now, and it has worked well for me. 1. Find the form you want to […]