Recent content by El Guapo Sabelotodo

  1. E

    How to Save a Image into clipboard

    Pretty good idea. It works. Point to note is that the data type by default will be TEXT, change it to IMAGE in all places where its used in that object.
  2. E

    BP:My company is using Azure Information Protection to classify documents and mail as Public/Confidential/Internal

    Microsoft Azure is quite new and of course need some way out. I too am facing the problem as my organization too have adopted Azure. I am investigating for a solution, will post it here once I find out.
  3. E

    Is a wait stage with multiple actions sequential?

    Hey, this is based on what you configure for what situation(s). If there is a situation where the element displays once and in another it displays twice, then you need to build it for both situations. If usually it displays only once, the build it for that and then make provision where if it...
  4. E

    Developing a decision support tool to identify a candidate business process on RPA.

    Hello Jeeva, Can you give a glimpse of what you have got so far. If you can publish your research here, it will help others too. Regards, ElGuapo
  5. E

    How to save pdf file opened in IE

    My current project has this step, to open a PDF in IE and then copy all content to data item. When the PDF file is open, spy the window itself (preferably maximize) in Win32 mode. Global Send key activate window. Global Send key twice for Alt+f+a (Save As), i.e., "%f" and "a" Add wait time for...
  6. E

    Reset all data item after completing the record

    It won't. It can only be overwritten in run time. You need to override the current data with new data or use calculation stage to make it blank. Regards El Guapo
  7. E

    Bytes function

    I guess this is the least used expression function. Of course there would be some usage which I have not used yet. Bytes under Data gets the number of bytes in some binary data. You need to provide the data and it will calculation how many bytes it has. Regards El Guapo
  8. E

    Can I add a "while" to a Blue Prism loop?

    BP has provided some of VBOs which have codes written - we do not see while using these in our Processes or Objects. The codes can be amended - do a SaveAs the VBO which you would like to customize, give a different name, such as suffix "Extended". Here, you can make whatever change you would...
  9. E

    Can anyone post a guide on how to add pivot functionality to default Excel VBO?

    Handling Pivot is difficult in excel VBA itself. I think BP has deliberately not provided much of it in VBOs. If I were to suggest, below options are available a) Know/Learn excel VBA macros and trigger macro from BP b) Do not use Pivot, but use SUMIFS and COUNTIFS to get values and...
  10. E

    Reset all data item after completing the record

    Doesn't BP do this by itself? How it works: Data Items not to have any initial value. During steps, whatever information gets added to Data Item, it stays in current value field. As soon as reset is clicked, the current value becomes blank.
  11. E

    Surface Automation on Google Chrome

    Are you sure you tried HTML mode and its not working? Personally, I do not recommend SA except citrix applications.
  12. E

    Utility-regex ?

    RegEx is so generic, its up to the user how to play around it. You need to see few videos on YourTube first and the below link is like a Bible for RegEx users. Reference : http://regexstorm.net/reference Self Testing : http://regexstorm.net/tester In Blue Prism, the facility given is very...
  13. E

    Solved IF Statement in Blue Prism

    Visiting back after few days. Hi Sivagelli, thanks for response. Ideal solution will be to use choice stage which I am going ahead with. Alas, no way for an IF statement equivalent action. Regards El Guapo
  14. E

    Solved IF Statement in Blue Prism

    What am I trying to do - I have a string obtained from Regex and saved in a data item - this is a transaction reference The first 2 or 3 characters determines the type of transactions. I need to have an IF statement where the type of transaction to be determined and then store in one of the...
  15. E

    Solved Open and close many PDF files inside a Loop

    Yeah, better to use Global Send Key. Thank you. El Guapo
Top