Category Archives: MS Access Reports

MS Access Reports

Modern Web Browser Control Leaving Hidden Processes

Microsoft Access - Modern Web Browser control

Just a quick FYI regarding the Modern Web Browser control. I’ve been doing some recent work and have been experiencing issues.

As previously reported, I’ve been getting blank displays even though the URL indicates it went to the site, nothing new here!

Now, after closing my database, I kept having a lock file that wouldn’t go away and I couldn’t delete it. Examining the Task Manager I came to see that Access remained running as a hidden process, and I also then saw a whole bunch of Microsoft Edge WebView2 processes running as well. It was only after killing all of these that I was able to finally delete the lock file and continue working.

Continue reading

Microsoft Access Export Formatting Bug

I came across a thread on UtterAccess:

and it brought back some memories of work I did for a client where I had to deal with this issue.
 

The Problem

The issue is quite simple, exports, with the exception of PDFs, do not properly export all formatting.

Let me illustrate the problem, or at least one example of them.

Continue reading

Setting Font Color Based on The Background Color

I believe for a solution to truly be good a number of design considerations have to always be front and center when doing development. I wrote about some of those aspects in my article:

One of those elements is to use contrasting color between text and the background so things are legible. If users have to strain to read content, graphics, … then we as developers have failed.
 
Continue reading

Microsoft Access Option Group Border Width Bug

Software Bug

Recently I’ve been playing around a lot with Class Modules and Form/Report SubClassing:

and I recently stumbled upon an oddity, a bug relating to an Option Group’s border width property.

Continue reading

Microsoft Access Form SubClassing 101

I recently published an article and video regarding converting form code (module) into a reusable Class Module:

That said, I felt that perhaps, for complete novices to the subject of Class Modules and Microsoft Access Form SubClassing it may have been a little too much, too fast and want to take a step back and try and provide a 101 class on Form SubClassing.

Continue reading

Display Images In The Modern Web Browser Control While Preserving The Aspect Ratio

Yesterday, I presented an approach to manage to display an image in the old Web Browser control so it was resized to fit a given box while retaining its aspect ratio, you can read the details by reviewing

 

I figured I quickly demonstrate the required code to do the same in the new Modern Web Browser control since the is a better simpler approach that we can employ which reduces the HTML/CSS required.

Continue reading