Category: Uncategorized
-
If you encounter this error on UIPath saying “Programmatic access to Visual Basic Project is not trusted”, it could mean that your MS Excel’s Macro Trust Settings is disabled. By default, Excel blocks any programmatic access to the application unless the user permits it. You may be invoking an external VBA macro file in your… Continue reading
-
Here are my most commonly used VB expressions for handling date, string, and array/collection values. Will add more to these as I go along. UIPath activities essentially use VB.NET expressions so their API browser is extremely helpful in learning functions and syntax. .NET API Browser:https://docs.microsoft.com/en-us/dotnet/api/?view=netframework-4.7.2 String How to print new line on Message Box Use… Continue reading
-
The Filter property in Get Outlook Mail Messages allows you to set a filter for the messages to be retrieved from the specified mail folder. Note that the Filter argument is for STRICT filters only. Meaning, wildcards and regex matches won’t work. For example: This filter retrieves messages received on the current month: This filter retrieves messages with the… Continue reading
-
I have a scenario here where I wanted to extract a value inside a parentheses. Using the Matches activity in UIPath, I’m able to do just that. Here’s how: Look for Matches activity and drop it on your workspace. I added a Message Box below to see the output. On the Properties panel, fill in… Continue reading
-
HP software uses port 5814 to access the server machine so in case you’re having trouble communicating to your license server, you may need to make this port accessible. To allow inbound access to this port, you need to set up a rule allowing access to it on your Windows Firewall settings. To do this:… Continue reading
-
After our machines got updated to Windows 10, we realized that we couldn’t connect to our concurrent license server anymore using UFT 11.51. I sought help from Microfocus (who’s handling all UFT related issues) and here’s what we did to resolve the issue: 1. Install HP UFT 12.51 or above on your Windows 10 machine…… Continue reading