Search results

  1. S

    How to Extract Table from windows application -- Blue Prism

    Hi, Can any one tell me how to extract data from Windows/Desktop application using Blueprism? is there any way?
  2. S

    excel VBO

    Done this? I have a solution for this. If required let me know.
  3. S

    How to automatically start my bot on adding of new Element in the Queue

    Hi, One of the external API is adding data to the queue. Once it is added automatically my bot should execute that data immediately? How it can be done?
  4. S

    How to Read Date Column from excel Date Data Type

    Hi, Thanks for your reply... There are 6000 rows. So, I can't keeping changing for all the rows. So, I am just changing the format of that particular column using VB script before processing it.
  5. S

    AutoFilter - To filter data between two dates

    Thanks, Operator is the problem. After changing it to 1 it works fine.
  6. S

    AutoFilter - To filter data between two dates

    Hi, I am trying to apply autofilter to one of my date column inorder filter data between two dates. I am using code stage to achieve this, below is the code I am using GetWorkbook(handle,Nothing).Worksheets(sheetName).Activate...
  7. S

    How to Read Date Column from excel Date Data Type

    Hi, I am reading data from excel where it has around 20 column. One of the column is a date format( eg. 28-02-2019)... But after reading it the value is coming as Date Time. How Can I get only date value?
  8. S

    system exception: Login Screen not found

    The login is not lunched or attached. Before lunching the application the BP is searching for the login elements.
  9. S

    how to get the file name

    Use getFiles in fileManagement utility
  10. S

    system exception: Login Screen not found

    if I am not wrong it should be B
  11. S

    How to Filter Collection

    It can be achieved using nested loop. But if you are familiar with C# or VB script then it can be done in 5 to 6 lines of code using code stage(again here you have to use nested for loop.
  12. S

    How to Check Browser version using BluePrism?

    You have to use C# or VB script to achieve this. You can try below piece of C# code. HttpBrowserCapabilities bc = Request.Browser; var version=bc.Version
  13. S

    can someone explain how can i sort numbers using collection with simple example

    You change the data type in excel so while puting in collection it will be taken as number. In this case you no need to type cast
  14. S

    Spied element using AA and UI mode is not working in Internet explorer

    The issue is resolved. It seems dll file caught crashed so registered it by running the below commands it worked fine now Navigate within that to the location of your OLEACC.DLL file (usually 'C:\Windows\System32' directory). Run the following command to re-register the DLL file: regsvr32...
  15. S

    Spied element using AA and UI mode is not working in Internet explorer

    Everything is looks fine, nothing related to co-ordinates only couple of attributes are selected. The actual problem is when I tried to re spy using AA/UI mode it can able to spy only the outer window. Inside the webpage(like button,menu et..) it is not spying anything... Only HTML mode is...
  16. S

    Spied element using AA and UI mode is not working in Internet explorer

    I both environment it is IE 11. But in cloud it works fine few days back. Suddenly I am facing this issue.
  17. S

    Spied element using AA and UI mode is not working in Internet explorer

    Hi, I have spied elements using AA and UI mode in internet explorer for particular web page. It works fine till date in my local machine. But when i moved this to Cloud environment none of the elements spied using AA and UI mode is not working. When I tried to identify the same element again it...
  18. S

    How to execute subQuery using oledb connection

    Hi, Now I have two sheets in one excel and executing below query update [Onboarded resources$] a SET End_Date = (SELECT End_Date FROM [Sheet1$] b where b.POP_Notes_ID=a.Notes_ID); but still it is throwing error like.. one or more parameters required. Anything wrong with the query? @VJR...
  19. S

    How to copy file to Clipboard

    It is working perfectly with .docx and PDF files which is what i want
  20. S

    How to execute subQuery using oledb connection

    So, I need to put both sheet in one excel and need to execute the code right? And also please confirm Syntax in the Query is correct or not
Top