Recent content by Isaac Barboza

  1. I

    How do I store an image into an image data item instead of manually importing it in Blue Prism? I need to automate it.

    Hi Daniel, Try with this code Stage Dim OutputImg As Object Try OutputImg = Image.FromFile(varFullImagePath) varImageDataItem = OutputImg Success = True Catch e As Exception Success = False Message = e.Message Finally OutputImg= nothing End Try
Top