Recent content by Emil.Tophoej

  1. E

    Possible to delete characters in input box, using Global Send Keys?

    "{DELETE}" for Global send keys
  2. E

    Error: Keyword "CTRL" is not valid

    Don't mix Global Send Keys and Global Send Key Events Refer to either @boulay or @VJR for respectively Global Send Key Events or Global Send Keys
  3. E

    Solved Date Time in Now() not the actual time

    Neat link VJ - then we just need to employ web services for at fully automated DST date xD I've not yet needed the date and have been utilizing the LocalTime() to keep track of the time. Another way to get around this is that robots shouldn't get started 00:00 +/- 1h .. Furthermore when robot...
  4. E

    Error while adding a Collection with over 40 rows to the queue

    From the description I'd guess that, it's either a memory issue or a handle issue - have you determined the handle for excel? You can use "Create Iinstance" and "Open Workbook" to determine the handle.
  5. E

    Need help for Tag Filter

    To Clarify - the item retrived will have both tags (Work Type1 AND Customer Type2 AND NOT Work Source1) If you need to get items with ether Tag, use multiple "Get Next Item"-Actions
  6. E

    Surface Automation Training.exe

    Go to blueprism.portal and login - This forum may not share any original content
  7. E

    Parent and Child Object

    Do you mean a shared application modeller?
  8. E

    Blueprism Code Stage

    Or you can use the Utility - Strings - Split Text Action
  9. E

    Blueprism Code Stage

    There is a small difference in how to shell around the code. If you want to make a collection from a csv (got that lying around) you can use (code from Parse CSV): " Dim HDRString As String = "No" If First_Line_Is_Header Then HDRSTring = "Yes" Dim Folder as String = nothing Dim FileName As...
  10. E

    Solved Date Time in Now() not the actual time

    Still missing a smart solution for the summer/winter time shifts. If you use Now()+timezone-x (you have to know the date for when x shifts - In Denmark it's not the same dates every year) If you use LocalTime(), there is no way to ensure the correct date around midnight.
  11. E

    Need help for Tag Filter

    The format is e.g. “+Work Type1;+Customer Type2;-Work Source1” according to Blue Prism documentation. This example would take a item with the “Work Type1” and “Customer Type2” tags and without a “Work Source1” tag).
  12. E

    Scheduler doesn't start pending items

    We don't experience it - the only thing we can imagine is either that the automate script breaks or the service breaks at a critical time. I may depend on the type of setup you are running - we are running Remote desktops on a pc with screen in locked room
  13. E

    Extract Column values in Blueprism

    You can use that (Get Worksheet Range as collection) multiple times and then use "Collection manipulation - Merge Collection" (multiple times?) to form a single colleciton with the desired rows.
  14. E

    How to use the wildcard as input for navigate stage

    here is one way to do that if you can this process looks for a order number in a table and if it finds it clicks on a link in a different column (same row) EDIT/ Didn't see that it was only regex you were looking for
Top