Guide VBA Microsoft Access (MS Access) Tips and Tricks - Samples - Downloads - Discussion!

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,701
This is the thread where I post the tips and tricks I learn and have learned on the job as a Microsoft Access Developer and Consultant (Affordable IT)

www.affordableit.com

I have been doing this for over 20 years.

Microsoft Access is awesome if you know how to use it. If you know VB6 then you will feel right at home in Microsoft Access VBA. It integrates with Excel, Word, Power Point, QuickBooks, and a huge amount of other applications. You can really do anything in MS Access. It front ends pretty much any Database as well. Especially easy with SQL Server and the Personal Edition of SQL. It also has ODBC Drivers for MySQL :)

The first tip is a real nice one. It is a Calendar Report I found online doing research for.... a Microsoft Access Calendar Report :)

http://www.access.hookom.net/Samples.htm

Gives you an easy to configure Monthly Calendar Control in a report. Easily does anything that you want to show on a schedule if you have just a date for it.

The one I downloaded was http://www.access.hookom.net/Samples/CalendarReports.zip

This Access 2000 sample shows how to create several different calendar style reports. There is a doctor/patient schedule that displays a week-at-a-glance with dates across the top and times along the left (sample). Each appointment is "drawn" with the proper size and position. A similar report places multiple doctors across the top for a single day schedule.

A standard monthly calendar is also included (sample). This report uses copies of the same subreport for each day. A gantt type report (sample) is included which displays time bars across longer periods of time.

I will include pictures and my mods to it at a later time.

If you have any questions about this sample post in the thread!
 
Last edited:

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,701
Zip File Manager 7Zip - Free Download - Microsoft Access MDB File blocking in Outlook

7Zip is a Fantastic Free Zip file manager. You should never send (attach) any Microsoft Access .MDB file to an email without compressing it first.

If you need to manage compressed files (.zip or otherwise) 7Zip is the way to go. In zip format a Microsoft Access file can be compressed quite alot but if you use the 7Zip format then a Microsoft Access database can be compressed almost 50% more depending on what is in it. 7zip format is the way to go but the program handles .zip files just as well. It uses the free Dos version of though I believe.

7Zip Main Site
 
Last edited:

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,701
Microsoft Access (MS Access) Quickbooks ODBC Driver Integration - The Next Level!

Quickbooks Enterprise users get a free read only License for ODBC compliant applications like Microsoft Access (MS Access), Microsoft Word (MS Word), Microsoft Excel (MS Excel), and everything you need to access your Quickbooks Data is right there for you.

It is god awful slow though. That is something I am going to have to overcome but I will update this thread with my progress on that.

Work in Progress - Microsoft Access Quickbooks Integration with ODBC Drivers. MOAR Soon! :)

http://www.qodbc.com/qodbc.htm
 
Last edited:

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,701
Modal Property of Forms freezes VBA Code - Microsoft Access (MS Access)

If you open up a Modal Form in VBA using a Microsoft Access (MS Access) Event Procedure all code execution will stop until that form is closed. Using this you can run code after the Modal form is closed. Code execution resumes after the original Modal form open call (right after the code that opened the modal form).

You can do this using Microsoft Access (MS Access) Macros.

Very Handy
 

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,701
Middlewaresdk is an interface to ACT that you can use with any programming language. Not just .net I used Microsoft Access VBA.

This version works with ACT 8 and up I believe. I think ACT 11 and up have a different version. I will try to get more information on this but it works with ACT 10.

It is very handy to do specific tasks. Combined with the ACTReader OLEDB tool you can do anything with this baby. I am crippled in an earlier version of ACT but I can still do what I need to and more. The latest version for the latest ACT versions has lots more.

NOTE on the ACT READER - You need to have the OLEDB Data Source set up (I used a File DSN) on the Server that is running ACT. You can save your password in a file DSN. You can use the ACT READER if you are programming in an ODBC compliant environment. The middleware for ACT 8 - 10 is crippled without any account lookup functions so you will need the ACT READER to find the GUIDs to control ACT.

The newer version of the Middleware for ACT 11 and up includes better lookup functions I am told.

Great tool for interfacing any application with ACT. You could probably even suggest a new feature for the middleware to the author Kevin Ritch and he might even add it. He is a real nice guy and very open to feedback on the middleware.

http://middlewaresdk.com/

If you use the program and need any help post here and I can help.

NOTE - The VB6 examples included with the SDK download are wrong. The interface works through a jobcontrol.txt file that the ACT plug in reads for instructions. Any application that can write a command to that jobcontrol.txt file can use this middleware. The thing is that you need to load supporting files that are not well documented in the VB6 examples, the examples are wrong. If you look to the dotnet source code that is included you can find out what the file names are of what files you need to load for the commands you write to jobcontrol.txt to work. The vb6source code implies that the middleware writes guids and it does not. The only thing you write to jobcontrol.txt is commands and anything else goes in support .dat files.

ie if you do a cpop you need to write a guid to the proper .dat file. The dotnet source code contains all the file names.
 
Last edited:

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,701
td.connect - how to determine table attachments

The DAO Tabledefs object has a connect property that tells you what the connection string is for an Attached table (where the table actually exists).

You can read that property with the following code

Code:
dim db as dao.database, td as dao.tabledef

set db = currentdb 'using the current ms access database can be changed to access any database

set td = db.tabledefs("nameofattachedtableintableslist")

msgbox "The connect property is " & td.connect", vbokonly

set td = nothing
set db = nothing

You can modify this value then call the refreshlink to progmatically change table attachments.
 
Last edited:

KRITGuy

New Member
Reaction score
1
Hi Chris,

Yes, the documentation for MiddlewareSDK for ACT! by Sage 2008 is indeed rather thin. :)

A proper version will be written in Spring. Thanks for your enthusiasm Chris. It is much appreciated.

And for the valid criticism about the examples. But you have figured most of it out.

As you know, the old version for Sage ACT! 2008 will always remain free.

The newer version for Sage ACT! 2011 and up, will have a Developers License at a jolly reasonable price.

There are exciting plans for MiddlewareSDK for Sage ACT! 2011+ and it will be fully documented in the near future.

Comparing MiddlewareSDK to the SDK for Symantec ACT! (2004 and older) provides the insight that, effectively, being a "PlugIn" for use whilst ACT! is running, MiddlewareSDK is an "App Object".

I have also developed a Database Object too. I call that ACTServerware.exe and it works when ACT! is not running.

ACTServerware.exe works in a very similar manner. (Writing out instructions and then using a Control File)

Importantly Chris, ACTServerware.exe will never be free. So again, like MiddlewareSDK for Sage ACT! 2011/2012, it will have a price-tag.

So far, ACTServerware.exe has brought in about $25k in software development in the first year of coming into existence. I expect that figure to be at least ten times that in the second year of life. (I am an eternal optimist)

Cheers again for your grand enthusiasm Chris.

~Kevin~ ( http://V8Software.com )
 

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,701
I have done a full project on the QODBC and it is super powerful. I upgraded to the write version and now create Invoices and Purchase Orders in Quickbooks from MS Access. If anyone has any questions on accessing Quickbooks from Access or any other Office Product ask in this thread.

Quickbooks QODBC Microsoft Access Connection Microsoft Office

Microsoft Access (MS Access) Quickbooks ODBC Driver Integration - The Next Level!

Quickbooks Enterprise users get a free read only License for ODBC compliant applications like Microsoft Access (MS Access), Microsoft Word (MS Word), Microsoft Excel (MS Excel), and everything you need to access your Quickbooks Data is right there for you.

It is god awful slow though. That is something I am going to have to overcome but I will update this thread with my progress on that.

Work in Progress - Microsoft Access Quickbooks Integration with ODBC Drivers. MOAR Soon! :)

http://www.qodbc.com/qodbc.htm
 
Last edited:

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,701
Microsoft Access Expert Advice thread post here for answers to Microsoft Access Questions especially the older versions like Access 2003 and getting those versions updated to the latest version or keeping them going on the old stuff. I cannot believe there are so many views on this thread and nobody has any questions but there are alot of great Access and VBA resources out there so it is hard to compete I suppose.
 

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,701
I am getting a license for Total Access Emailer really soon and cannot wait to get started working with that. FMS Inc has the greatest Access stuff and this emailer solves all the problems I have had sending automatic emails out of Microsoft Access and being able to customize them. It fixes all the problems with sending emails from Access by using an SMTP server and the proper encryption. Nice! I am going to be posting more about this once I start getting into it!
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Monovertex Monovertex:
    How are you all? :D
    +1
  • Ghan Ghan:
    Howdy
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top