Recent content by bjsrm8

  1. B

    Send / Press Enter

    @smithmrk Try replacing 'Login' with 'Fidelity Test' for the element and use 'Global Send Keys' as the action. You can also reference this thread - https://www.rpaforum.net/threads/unable-to-send-global-send-keys-to-mainframe.1686/
  2. B

    Send / Press Enter

    @smithmrk Can you please share a picture of the Application Explorer Tree?
  3. B

    Send / Press Enter

    Hi @smithmrk Use a Navigate Stage in the Object, then drag the application root into the Element. Use Send Keys for the action and try the syntax "{ENTER}".
  4. B

    Solved How to paste with options in Excel using Blueprism

    Hi @willwsn I would create a code stage. Dim wb, excel, range As Object Try wb = GetWorkbook(Handle, Workbook) excel = wb.Application range = excel.Selection range.PasteSpecial(Paste:=12, Operation:=-4142, SkipBlanks:=False, Transpose:=False) Success = True Catch e As Exception...
  5. B

    How to extract timestamp in hhmmss format?

    Hi @souravbanerjee, Have you tried using the Make Time function?
  6. B

    Spy-collect-excel

    Hi @sna Have you tried using region mode to spy the PDF? This may not work if your PDF is not in a consistent format (i.e. scanned) The output could go into a collection and then there is an action within the Excel VBO to write collection.
  7. B

    Start from a Certain Page

    Hi @smithmrk Right click on the location you are trying to start from and you will see additional options - including set a breakpoint, and Set Next Stage, where you can start within the middle of a process.
  8. B

    Schedule a Process with a session variable

    Hello, Is it possible to schedule a process that needs a session variable as an input?
  9. B

    Bot File Name Best Practice

    Thanks @anisjolly - I solved this the following way. Please drop a comment if there is a better way. I used Utility - Environment object and Get User Name action and stored in a data item. Since my team is all mapped to the same drive, but different user names, I replaced the username with a...
  10. B

    Close and Save PowerPoint

    @nickbell123 Yes. We have a monthly process where data models are created in excel and pasted into a ppt slide. Functionality for our PPT VBO includes: Creating instance, open, show, activating ppt, save and close, count slides, get slide layout, add slide title, and add slide with particular...
  11. B

    Close and Save PowerPoint

    Thanks @VJR ! Solved
  12. B

    special characters and italicised letters

    Hi Vaibhavg, Can you please provide more clarification on the location of post # 7143?
  13. B

    Close and Save PowerPoint

    Hello, I have created my own PowerPoint Object and am having difficulty on a save and close action. My guess is I have the wrong syntax for save. Blue Prism will successfully close the PowerPoint, but will not save. I have copy/pasted VBA code to try and save and have been unsuccessful. If...
  14. B

    Using Blue Prism and Microsoft Graph

    I was curious if anyone has any experience integrating Microsoft Graph with Blue Prism. Any insight on your experience with Microsoft Graph would be helpful, even if you have not used it directly with Blue Prism. Thanks in advance!
  15. B

    PowerPoint Object

    I'm looking for some guidance in order to build a PowerPoint object from scratch. I want to be able to have basic functionality within PPT. I would like to see BP have an out-of-the-box object for PPT. Any help is greatly appreciated.
Top