Recent content by juan.gl

  1. juan.gl

    Zip and unzip files using Blueprism

    hello, i have some issues with unziping fles with no extension, has anyone already have gone through this? my current unzip code is just ZipFile.ExtractToDirectory(zipFilePath,DextPath); i have another version to delete entrys with special characters using(ZipArchive archive =...
  2. juan.gl

    Schedular

    i have this same issue when we started, and it was becouse one of the configurations were unchecked. Check the option "Start a personal Runtime Resource on this machine when users sign in to Blue Prism" is checked on your system configuration.
  3. juan.gl

    get 10000 lignes from

    you can add an index column and just filter the collection using the Index <10000 or use the code stage as mentioned before
  4. juan.gl

    IE Attach problem

    Glad to be able to help good luck
  5. juan.gl

    IE Attach problem

    First question: do you have a diferent object for the Internet explorer or is the same as the Win32 app? try with index = 0, try attaching by the name of the window rather than the process name, see how it goes
  6. juan.gl

    Issue with closing active browser out of 2 open browsers.

    i did it by clicking the X on the window you want to close
  7. juan.gl

    Solved Change text with format yyyymmdd into date with format yyyy/mm/dd in Blue Prism

    you can use the function ToDate({text}), however you need to seperate on some way the, date text ddmmyyyy is not accepted, also some other kind of combinations dosnt work like "mm-dd-yyyy" it will try to conver it as "dd-mm-yyyy", other way you can do that is to just use the MakeDate function...
  8. juan.gl

    Solved Change text with format yyyymmdd into date with format yyyy/mm/dd in Blue Prism

    i do it this way: FormatDate([Date],"dd")&"/"&FormatDate([Date],"MM")&"/"&FormatDate([Date],"yyyy") there is alot of awnsers already jsut pick witch ever you like more
  9. juan.gl

    Solved Adding collection fields / work queues

    Q1.- Not necesary that can be a way to do it, other way is to just make a new collection with 2 columns and fill it with the order reference and total price of each event, then at the end just copy paste the collection at the end of your csv, or the way i did it when i took the course i was...
  10. juan.gl

    Multiple attachment

    are you using using as input Collection.Path on the action? if thats the case then you need to use a loop to concatenate the rows on the collection and store them on a data item first.
  11. juan.gl

    Multiple attachment

    on the send email action under attachment you just have to use ";" in beetwen the URLs you want to attach examples: [URL file 1]&";"&[URL file 2] "C:\Downloads\file1.pdf;C:\Downloads\file2.xlsx"
  12. juan.gl

    How to deal with pages opening in new Tabs?

    Greetings, You will have to use a new Object to deal with the popups, i had this problem a few weeks ago and thats how i solve it.
Top