Search results

  1. C

    Global Send Keys and Send Key Events

    "<{SHIFT}<{F10}>{SHIFT}" success
  2. C

    How split text coll.field with separator " | ".

    Use vbo Utility -Strings Split tekst
  3. C

    Pass data item to global send keys?

    yeah their is a way to do this you cad add this by setting the value in the input see picture
  4. C

    Get files from subfolders containing specific name in collection

    did you have your answer ?
  5. C

    How spy button in Excel

    you can use the macro option from the vbo of excel
  6. C

    Global Send Keys and Send Key Events

    <{SHIFT}2>{SHIFT}
  7. C

    Write text with special characters from Data Item to SAP

    You use first set clipboard, then set focus and after that the global send keys to paste the value in the data item {CTRL}V
  8. C

    Write text with special characters from Data Item to SAP

    Or to copy paste the data item
  9. C

    SAP using global send keys for F9

    You have to use main sap element the first element you made in the application modeler and try to use globel send key events set focus first tell me if it worked
  10. C

    Write text with special characters from Data Item to SAP

    Is it an numeric value then blue prism doesnt Write this only way you can do it is to paste the value into SAP
  11. C

    Navigation - Launch loses input

    You have to launch the application first like the internet explorer from your application modeller, after that you use another navigate stage with the option navigate, as input you can use your data item which will Be filled from your start/ process.
  12. C

    MS Outlook Email VBO - unable to get emails

    How does your mailbox looks like?
  13. C

    Blue Prism 6.4.1. Ms Outlook VBO Save Attachment

    hi you can change the type of attachment in the code to 5 or in to an 6 it may help
  14. C

    add a colum to a collection

    Very Helpfull thank you
  15. C

    Using Global Send Key in Excel

    In the Excel vbo is an object called "Paste"you can use it
  16. C

    Delete multiple columns collection

    hi Salman In utility collection you have the object Remove field you can modify this like: Collection_Out = Collection_In.Copy For Each c As DataColumn in Collection_Out.Columns If c.ColumnName = Field_Name Then Collection_Out.Columns.Remove(c) Exit For End If Next For Each c As...
  17. C

    How to Trigger a Process while a mail arrives?

    can you send met also sabahyildizi@hotmail.com thank you
  18. C

    how to get multiple active values excel

    VBO Excel has an object with get Cell Value, ive tried to modifie the object so i can get multiple values with one object, but it gives an error,HRESULT: 0x80070057 (E_INVALIDARG)) Dim cellVal as String = GetInstance(handle).ActiveCell(cellref).Value value = IIf (cellVal Is Nothing, ""...
  19. C

    Cell Colouring and Saving Data From Excel to Paint in BP?

    Can we also get the clipboard item into an Data item and how do we do this?
  20. C

    Need to MAXIMIZE EXCEL OPENED AS AN INSTANCE

    Make a copy from the vbo excel code stage Set window size and make the code as above it works, let only the handle as input, also in the start stage
Top