Notifications
Clear all
Topic starter
I have a need to have an action button jump to a website. I know I have done this in the past but I am drawing a blank.
Please Help. V
Posted : January 2, 2020 7:10 am
Here is an example of how we are doing it. Hopefully it works for you.
{
RUNSHELLOPEN("https://secureaccess.wa.gov/myAccess/saw/select.do")
}
Posted : January 2, 2020 7:21 am
Andria's correct. And if you want to force the use of a particular browser, you can do this (Chrome, for example):
{
RUNSHELLOPEN("C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", "https://www.google.com")
}
Just remember the browser's executable would have to be installed in the same place on every workstation that was using the form.
Posted : January 2, 2020 8:39 am