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

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,688
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,688
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,688
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,688
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,688
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,688
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,688
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,688
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,688
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.

      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