How-to Send E-mails Via Outlook Using The Microsoft Graph API

Well, unless you’ve been living under a rock, by now, you are aware of some fundamental changes coming to Outlook in the not too distant future, mainly the fact that it will cease to support any form of VBA!

Now, many have tried to make Microsoft reverse course, understand the millions of solutions (Access, Word, Excel, …) that will instantaneously break with such a switch, but there has been no change in course.  Actually, per the usual, there has been little to no response whatsoever.

This brings us to today’s post!
 
Continue reading

Microsoft Access Bug Listing And Support

In my ongoing push to try and get the Microsoft Access Dev Team use and maintain their own web resources, today I wanted to touch upon their Fixes or workarounds for recent issues in Access. This page with not even an introductory paragraph as to the purpose it has, is supposed to be the place people turn to when seeking a listing of known bugs and thus get information regarding the problem including how to workaround the issue, or fix it.
 

Problems Abound

Like pretty much every Access site from Microsoft:

  • Feedback Portal
  • Fixes and workaround
  • Access Blog

this site (Fixes and workaround) has many, many problems.
Continue reading

String Parsing Function Crashing Microsoft Access Bug

Software Bug

Just a service announcement, that as reported by Mike Wolfe, Microsoft has introduced a new bug caused by using common string parsing function (Instr, InStrRev, Replace, …) in a query’s where clause…

Consult his post on the matter for all the details and a link back to the original post on the subject.

Modern Web Browser Control Does Not Support URL Parameters When Working With Local Files

Software Bug

One more bug to add to the very long list of Modern Web Browser control bugs!!!

I was working on what I was hoping would be a nifty demo database to utilize for fun media capabilities that HTML5 offers and got it all working fine in Edge, on its own. Sadly, when I then tried to bring it over into Access I hit a wall.

After testing I discovered that Access will accept a Control Source like:

="https://msaccess/C:\Users\Daniel\Desktop\blank.html"
="https://msaccess/C:\Users\Daniel\Desktop\" & [FilePath] & ""

where [FilePath] returns ‘blank.html’ (and yes the ending & “” is required to get around another bug!)

So, simply accessing a file is possible. We knew that.

Where things then start to fall apart is when we try to pass parameters as part of the URL of any local files. Thus, passing parameters like demonstrated in the following 2 examples fail.

Continue reading

Cost of Running Windows 10 Past October 2025 Announced

If you weren’t already aware, Microsoft Windows 10 EOF (End of life) is October 14th, 2025.  That means at that point in time, Microsoft will cease to release security updates…. well for free at least! They will become only available to those that pay for Extended Support.

Microsoft has recently announced the pricing of getting extended support and it will add up quickly.  You can read all the details in the following article:

Continue reading

Sharing a Microsoft Access Database Online With Multiple Users

Today, I thought I’d briefly touch upon a more and more common question, which is:

How can we share a Microsoft Access database online between multiple users?

In today’s world, sharing data is simply a necessity!  So it is only natural to have the need to share Microsoft Access data with people outside of your network, over the Internet…

I previously posted about this issue in my article:

Today, I wanted to continue the discussion a little more.

So How Can We Do It Exactly?

Continue reading

Using VBA to Shutdown, Reboot, Hibernate, Logoff of a PC

Ever needed to make a PC Shutdown, Reboot, Hibernate, … after running some code?

As with most things, there are a number of possible approaches, but today I thought I’d demonstrate a very simple solution using the Shutdown command:

Continue reading