Recent content by bnastase

  1. bnastase

    VDI disconnecting & process stop running

    It should automatically log you in and run the job. Have you tried running it? What is the error that is coming up?
  2. bnastase

    VDI disconnecting & process stop running

    Hi, What kind of robot are you using? (Unattended/studio etc)
  3. bnastase

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

    Hi, Schedule your bot to run every 5 minutes and check for new data. If no data will be found it will finish the execution and start again after 5 minutes. If you have used the REFramework for your process the checking is already done. Bobby
  4. bnastase

    Temenos T24 core banking Desktop Application Automation

    Hi,# Is it locally stored? if you use UiExporer can you find any elements? Bobby
  5. bnastase

    OLEDB In UiPath

    Hi You can use the .Select function on your data table. What is it worth to mention is that the output will not be a data table but an array of rows. More info here https://www.uipath.com/kb-articles/how-to-filter-a-data-table Also there is an activity called Filter Data Table which you can...
  6. bnastase

    System Exception - Unexpected exit code

    Hi What activity do you use? Get Outlook Mail Message? If you get only let's say, 1000 messages do you still get the same error? Bobby
  7. bnastase

    UI Path pdf files Specific field extract in excel

    Hi, If you have a scanned PDF you can't use the usual get text, because of course, it's just an image. If you have inputs that are either scanned or editable, I would suggest you to use the OCR activities. This way you would make sure it works every time. Bobby
  8. bnastase

    Looping on URLs from Excel file using UiPath

    Hi, You will need to firstly read that excel file in a Data Table variable with a Read Range activity, then you will need to use a For Each Row activity, and put in the name of you Data Table. After this you will have to put inside the for each an Open Browser activity in which you will put...
  9. bnastase

    replace picture in word document in uipath

    Hi, Check out this example, it might help you. https://www.uipath.com/hubfs/Documentation/WorkflowExamples/18.3%20Examples/Word/Replace%20Picture.zip It replaces an image with another, maybe you can modify it to replace a picture with nothing? Bobby
  10. bnastase

    UI Path Real Time application support

    Hi, Yes it is, you can build front office robots. They are very useful for retrieving data to the agent in real time. The agent can trigger the robot by pressing a button in an application, or sending a hotkey. You can also have a back office robot triggered in a similar manner, and the agent...
  11. bnastase

    Not able to extract the text in order using GET full text activity

    Hi, This following selector for example is getting the last message from Skype Business window. <wnd app='lync.exe' cls='LyncTabFrameHostWindowClass' title='*Conversation*' /> <wnd cls='NetUIHWND' idx='2' /> <ctrl name='Chat History' role='list' /> <ctrl role='list item' idx='9' /> Try to...
  12. bnastase

    Scope of RPA in a dynamic file manipulation

    Hi, You can use the Read Text File activity, it should read XML files as well. Then use some text manipulation into an If activity, if that is true then use a text function like Replace to change Tagval to true. You will perhaps load up all the files in the folder and process them one by one...
  13. bnastase

    Excel String data

    Hi If you have that line in a single string you can use the Split method. I am attaching a link for how to use that. The output of the split method will be an array of strings, it will split your string based on a character you put in, in your case a space. Assuming your string is stored into...
  14. bnastase

    Estimation Template

    Hi You can find some useful calculators in the Business Analyst training on http://academy.uipath.com Bobby
Top