Microsoft Access Gauges

Microsoft Access Gauge

In my continuing push to improve what can be done in Access, I decided to see how I could create gauges in Access to show progress, statuses, percentages, … in a visual manner.

I won’t bore you with all the details, but the end result was to leverage the power that the WebBrowser control has to offer and use one of many JavaScript libraries.

In my demo file, I offer 2 ways to approach its usage:

    • create a template index.html file with all the setting pre-established and simply automate pushing the value to display
    • use a class to gain full control of the gauge in real-time

So the choice is yours!

Continue reading

Power Automate – Flow – Loosing HTML Tags

I thought I’d share a bug I came across a while back relating to Power Automate’s Flow.

Recently, I’ve had the pleasure of doing a lot of work with Flow to automate web form submissions into databases, generate e-mails, … Lots of fun stuff.

One thing most people recommend is to activate the Experimental Features (under settings) to gain access to up and coming features that have not yet been released, sort of like a preview I guess.  So I did.
Continue reading

Getting Website Info Without Using a WebBrowser Control

In my original post:

I demonstrated how we could use Internet Explorer automation to get information back from any site.

Then I demonstrated how you could do the same using the WebBrowser control in my article

Now these techniques are great if you want user interaction and them give them control over certain aspects as they can interact with IE/webbrowser control.

But what if you don’t need any user interaction?

There is another, simple, approach that can do exactly that all in VBA without any need for Internet Explorer or a form/webbrowser control!

Let’s dive in!

Continue reading

Access Hyperlink SubAddress Bug?

Software Bug

This is still in the very early stages, but it is looking like there is a new bug that has recently surfaced impacting Hyperlink SubAddress.

Threads such as the following have started popping up:

so be forewarned that it is suspected to be a bug with 2205 so try and rollback your installation to 2204 or earlier.

As always, I’ll update this post should I learn anything new on the subject.

Continue reading

Connecting Power BI Desktop To An Encrypted Access Database

Power BI Desktop - Icon

In my previous article, I examined connecting Power BI Desktop to an unencrypted Access database.  You can read all the details at:

 

What About Encrypted (Password Protected) Databases?

Now, since every database should be encrypted as data should never be unsecured, I then turned my attention to connecting Power BI Desktop to a password protected Access database (encrypted database).

Access Connector

So, I followed the initial steps from my previous article; I went and selected the Access connector, selected my file and was quickly presented with the following error message:

Power BI Desktop - Access Connector - Not A Valid Password Continue reading

Connecting Power BI Desktop To An Unencrypted Access Database

Power BI Desktop - Icon

I’ve be dabbling with Power BI Desktop to build a dashboard for a client and thought I’d share just how easy it is to connect an unencrypted Access database to Power BI Desktop to be able to produce some truly nice charts.

I emphasize Unencrypted, so no password on the database, as Microsoft has made it more complicated to connect to encrypted Access databases (that will be covered in my next post).

Continue reading

SQL Server Express Installation Dialog Feedback

Yesterday, I set out to build a new VM to install SQL Server Express 2019 (freshly downloaded yesterday) to do some testing with.

I found an issue with the installation dialog and tried to forward my comments internally through existing contacts at Microsoft, but that failed. I also tried to find a direct line of communication, but couldn’t find one available to me. So I decided to post it here in the hopes someone will see it and manage to forward it to the proper authorities.

Continue reading

Latest Office Update – Version 2204 Source of New Bugs?

Software Bug

My spidey-sense is tingling! (and not in a good way)

Access MVP Alum Gina Whipp has reported a series of issues with Access version 2204

• Property not found
• No current record.
• The search key was not found in any record.
• The object doesn’t contain the Automation object ‘YourControlName’ (And while that is control on the Form it is not used in the code anywhere. Oh, and yes that is the way it is spelled in the message but not on the Form.)

Continue reading

Getting Website Info Using the WebBrowser Control

In my previous post:

I demonstrated how easy it was to gather any information from a site using basic Internet Explorer (IE) automation.

Sadly, IE is going to be killed off June 15th, refer to my post on the subject if you need more information on the subject

So my post regarding IE automation will only prove useful for a couple months and then cease to work.

Short sighted as Microsoft is, they did not enable any form of automation via VBA for Edge, so that’s also out of the question!

Where does that leave us exactly?

Continue reading

Binding To An Existing Internet Explorer Instance

In my post

you saw that when automating Internet Explorer, we cannot use GetObject to bind to an existing instance.

So what is one to do exactly, if the wish to do so anyways?

In fact, I kind of already gave the solution in my article

Where we iterate over a collection of windows until we find what we are looking for.

Continue reading