Hi,

There is a client who has an online database. For various reasons this has to be accessed by a portable version of Chromium, which nobody has or wants as a default browser. Users login with an ID and password.

Various URLs to parts of this database are used in the spreadsheet. The URLs are constructed with variables, so these are opened via VBA.
The first complication is that the URL needs to use this Portable version of Chromium, not the user's default browser.

So far this has been partly achieved using the Shell function which specifies the Portable version of Chrome and follows the URL.
The problem here is that this presents the user with the login page when they already have a logged-in instance of the Chromium open.

Please Login or Register  to view this content.

Is there any way to check for an existing ChromiumPortable process and get shell (or some other function) to use that to follow the URL, rather than creating a new instance which needs another login?