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

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,696
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,696
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,696
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,696
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,696
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,696
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,696
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,696
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,696
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.
  • Varine Varine:
    I ordered like five blocks for 15 dollars. They're just little aluminum blocks with holes drilled into them
  • Varine Varine:
    They are pretty much disposable. I have shitty nozzles though, and I don't think these were designed for how hot I've run them
  • Varine Varine:
    I tried to extract it but the thing is pretty stuck. Idk what else I can use this for
  • Varine Varine:
    I'll throw it into my scrap stuff box, I'm sure can be used for something
  • Varine Varine:
    I have spare parts for like, everything BUT that block lol. Oh well, I'll print this shit next week I guess. Hopefully it fits
  • Varine Varine:
    I see that, despite your insistence to the contrary, we are becoming a recipe website
  • Varine Varine:
    Which is unique I guess.
  • The Helper The Helper:
    Actually I was just playing with having some kind of mention of the food forum and recipes on the main page to test and see if it would engage some of those people to post something. It is just weird to get so much traffic and no engagement
  • The Helper The Helper:
    So what it really is me trying to implement some kind of better site navigation not change the whole theme of the site
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air

      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