Search results

  1. G

    How to fetch formula of a cell using blue prism

    Not sure what went wrong with subhash, but this is working perfectly on my side of things. Thanks @ VJR.
  2. G

    Read ‘Last Saved By’ metadata property from Excel file

    We found an answer to this.
  3. G

    Read ‘Last Saved By’ metadata property from Excel file

    Hey Blue Prism gurus, I need to be able to read the Last Saved By metadata property from an Excel file using Blue Prism. Ideally, this would use VB.NET so that I could add the function to the existing Excel VBO, but C# would be acceptable. Any chance someone can provide me with such a...
  4. G

    Java Based Applications dont work on Control Room

    Well, technically, you should use the Login just after rebooting your machine. Then you only use the Unlock process as stated above before running your process.
  5. G

    Java Based Applications dont work on Control Room

    You should create a process named Unlock Resource and call that process in a schedule task right before calling your main process in the same schedule.
  6. G

    Java Based Applications dont work on Control Room

    You need to use the Login Agent object, and then, using the output from the Is Logged In action of the Login Agent, use a decision stage to determine if your machine is already logged in. If the value is False, then return an exception. If the value is True, then use the Unlock Screen action of...
  7. G

    Java Based Applications dont work on Control Room

    Then it's likely what I thought your problem was. You need to unlock the resource PC before the process runs. If you don't know how, I'll get back to you early this week and will tell you how.
  8. G

    Java Based Applications dont work on Control Room

    Are you running the process in the Control Room using your own PC as a resource, or another PC used as a resource for your bot?
  9. G

    Java Based Applications dont work on Control Room

    Have you included a UNLOCK process before running the process that contains the automation of your Java application? You often need to use SEND KEYS and GLOBAL CLICK EVENT when dealing with such application. If your session is locked on the machine that runs the process, the process won't be...
  10. G

    Shared Mail Inbox Outlook

    That's great. That's also what I thought was happening. Thanks for letting me know. Stay safe!
  11. G

    Reading emails from a subfolder within a shared mailbox

    Hi @Cleidson Read the following post. All you need is in there. https://www.rpaforum.net/threads/shared-mail-inbox-outlook.7536/ Just remember that you'll get better results turning off the Cached Exchange Mode in the Outlook settings.
  12. G

    Shared Mail Inbox Outlook

    Show me a screenshot of your input parameters in the Send Email action like you see in my 3rd screenshot.
  13. G

    Shared Mail Inbox Outlook

    Have you included the input parameter in the Send Email code stage like you see in the 3rd and 4th screenshots?
  14. G

    Shared Mail Inbox Outlook

    @jonnymop5 They say an image is worth a thousand words. So here are the screenshots and the full code that enables to send an email from a shared mailbox. I've also added a little bonus for adding a priority level to the email, which isn't part of the original Blue Prism code. Dim app =...
  15. G

    Shared Mail Inbox Outlook

    @jonnymop5 Sorry for taking that long to get back to you. I've been swamped lately. The IsNot operator determines if two object references refer to different objects. However, it does not perform value comparisons. Try it the way I've put it, using the <> symbol. Let me know if it works out.
  16. G

    BluePrism UI

    It's not just you. Blue Prism lacks a lot of luster, has several lasting bugs that were never fixed and is missing some rudimentary functionalities. Unfortunately, it seems we gotta live with it.
  17. G

    Assign values to rows of a new column of a collection

    As I see this, you would have to loop through your collection to set a value to your new field with a calculation stage.
  18. G

    Storing a file in a work queue item

    Solved! It's working good.
  19. G

    Shared Mail Inbox Outlook

    That's the way to do it... If SendFrom <> Nothing mail.SentOnBehalfOfName = SendFrom End if SendFrom is to be an optional input to the Send Email action. You need to include the email address of the shared mailbox.
  20. G

    Shared Mail Inbox Outlook

    Hi @sck360 Were you able to get the Send Mail to work from a shared mailbox? I'm looking to do the same but I'm unsure how to address this. Thanks for getting back to us and let us know if you're up and running doing this.
Top