Search results

  1. B

    MS Outlook code stage doesnt work in BP

    Hey. I need to save draft mail in specific folder in specific mailbox. I got a code that is working fine from MS:O marco level(as expected) Public Sub CreateMail() Dim myNameSpace As Outlook.NameSpace Dim MyEmail As MailItem ' Create a new Outlook message item programatically Set MyEmail =...
  2. B

    send mail to alias in BP

    it works, Im able to send passing into 'to' only "id8bu", thats all
  3. B

    send mail to alias in BP

    Thanks for your answer. Trick is that id8bu belongs to Zinedine Zidane and his mail is Zinedine.Zidane@company, which works fine with BP code. Zinedine Zidane has AD account with identifier id8bu and from Outlook view I'm able to search for that and using crtl + K in "to" field to find recipient...
  4. B

    send mail to alias in BP

    it doesnt work as expected
  5. B

    send mail to alias in BP

    hey guys, need your assistance. I have unique employee ID of recipient and it looks like id8bu@company.com I'm able to send mail correctly from outlook level by type: id8bu, than ctrl +k and it's finding in company address book. how to send it correctly and quickly, without spying MS Outlook...
  6. B

    BP + VS newbie question

    Hi, I'm rpa developer, however I didnt perform so much my own code stages. I would like to improve my skills and I have Visual Studio 2019 and BP 5.5 installed. I would like to create end-to-end code in VS which grab data to VS from specific worksheet and which I can operate in VS. How: 1) can...
  7. B

    BP licensing

    Hi, I'm reaching you cos i'm preparing to certification and I've trouble with licensing. How it looks like? I've process A 2 instances in 2 bots 9am-9pm Process B 3 instances in 1 bot 6am-9am process C 2 instances in 2 bots as background 9am - 3pm how many licenses will be consumed ? 5? What...
  8. B

    How to Copy data from one excel workbook to another?

    MS Excel VBO -> Copy and paste worksheet range ?
  9. B

    How to Copy from Collection

    Collections - copy rows
  10. B

    How to attach more than one attachments using BP Mapiex?

    You can pass them as collection.
  11. B

    Issue in OLEDB connection to connect to database

    You have to install Oracle Data Provider
  12. B

    What is difference between Attach and Activate? Can we use both in same time? If we are using Attached , can we use Activate at the same time?

    You cannot activate unattached window. Attach is using in very beginning to 'connect' to interface. Activate just 'activate' window and makes it to the top in your desktop
  13. B

    Global send keys ALT + F4 to close

    Try to prepare 3 separate extions: <{ALT} {F4} >{ALT} Best, Kam
  14. B

    How to change color of a block in a process?

    Just click on the name of block and pick most suitable color for you :)
  15. B

    Blue prism, Work Queue from IE search and results

    Yup, like Leo said, try to spy it in HTML mode and refer to 'Path' selector. Spy two one by one elements and try to find out difference in 'Path' selector. It will be probably one of <TR> or <TD> value. Best, kam
  16. B

    How to remove processed cases from both Excel and WorkQueue

    The way provided by Leo is good, I would also use Item Key column and check 'work queues->get pending items', if there is any item, it means that add item to the queue will cause duplicate. First of all is to create item key column and add it to the queue(maybe date in item key also?). Next will...
  17. B

    BP restricted tags

    Hello everyone. I've one question related to BP queues. Are there any restricted signs/characters related to adding to work queues ? Thanks in advance, Kamil
  18. B

    Please help with selection of element

    Hi aggarwalvishal4, You should try to spy it by dynamic way and pass parameter to this selector. There's no needed to spy one-by-one.
  19. B

    multiple conditions filter collection

    Thank you for your reply, but it's not exactly what I need. Collection looks like capture pic and I need to filter last 1-4 digits in string. Thanks in advance
Top