Recent content by vandede

  1. V

    Region Mode

    I would just do this with VBA/ Macro in excel. Never done this with BP
  2. V

    Continue the Process

    Maybe try the "Utility - Environment" --> "Wait for Process" VBO to bridge the time when the VDI is offline and let your process continue after?
  3. V

    Continue the Process

    don't know of a way to change the scheduler. However, waht is the status of the process in the control studio? is there any more information in the process log that could help?
  4. V

    Continue the Process

    I never tried it, but it should work. What error message do you receive? why does it not work?
  5. V

    Continue the Process

    After the stage is logged in you would require a decision stage to change the course if you are not logged in. If I understand correctly you are trying to log out BP in this process that seem to be possible as the process is interrupted in such a case. However you could also just have various...
  6. V

    Region Mode

    VJRs reply should help you. However, if you give more detail (maybe with pictures of what you did) I can give a more detailled answer.
  7. V

    Continue the Process

    could you maybe share a screenshot with your current attempt? that might help me understand what you are really trying to do
  8. V

    Continue the Process

    I never tried this before, but the Virtual Desktop logout/login should work. However, logout from BP sounds impossible as the process would stop running. Also do not understand why BP would have to be logged out for a process?
  9. V

    Continue the Process

    Do you mean logout from BP or logout from a virtual desktop? Or what exactly do you want to change the credentials for?
  10. V

    Continue the Process

    Hi Nabin, I am not certain if this helps you, but can you not simply insert the login agent process into your otehr process with the process stage which can reference to the login agent process?
  11. V

    Region Mode

    You made a mistake with the spying. This means that some minor Detail is different whn BP searches for the Region and when ou spied it. E.g. when selecting something and it becomes highlighted or a small dotted line appears around it or something like that. The Region Mode requires identical...
  12. V

    Spy new application error (Doxis)

    Hi, has anyone used Doxis with BP? or had the problem in the Application Modeller, that the application is not attached anymore after approx. 5 sec and you can only relaunch the application, but not re-attach? Thanks in advance
  13. V

    How to insert row in excel sheet using MS Excel VBO.

    Use the following VB.Net code to create a new VBO: GetWorkbook(handle, "").ActiveSheet.Range(cellref,cellref).EntireRow.Offset(0,0).Insert for this you need handle and cellref as input parameters. Don't forget to add a Page Stage with the "Activate Workbook" VBO
  14. V

    Is it possible to manipulate just one cell in excel using BluePrism?

    In the same VBO you have the function "Activate Worksheet". There you can first open the worksheet you want and afterwards you use another action stage to input the values. Or there are some VBOs such as "Write Collection" where you chose the worksheet in the inputs fields. And then there is...
  15. V

    Is it possible to manipulate just one cell in excel using BluePrism?

    Did you try using the Excel VBO "Set Cell Value"?
Top