Recent content by Naga Mounika Gella

  1. N

    Solved Attach to changing Excel document

    sorry then no idea..
  2. N

    Solved Attach to changing Excel document

    Do you have data in the rows along with the column names? I used same and worked fine for me. And also I have only one excel workbook opened.
  3. N

    Solved Attach to changing Excel document

    Use Attach action and then "Get Worksheet As Collection(Fast)" action. I think this Get* action might not require file name.
  4. N

    Copy text within bounding coordinates in PDF

    @tgundhus Do we need to buy AGPL license to run it? Is the folders downloaded from the https://sourceforge.net/projects/itextsharp/ is not sufficient?
  5. N

    Solved Attach to changing Excel document

    Did you try Attach action?
  6. N

    Extract Data from PDF using itextSharp library

    @adebroise I did everything properly. it doesnt show error in codestage. Error pops up only if i run it.
  7. N

    Extract Data from PDF using itextSharp library

    @kishoredeka yeah i did added.
  8. N

    Extract Data from PDF using itextSharp library

    I am trying to extract data from PDF file using code stage c#. I referred the link: https://www.codeproject.com/Articles/14170/Extract-Text-from-PDF-in-C-NET I designed my code and initialize using this link. But I get following error when tried to run the code. Error: Internal : Could not...
  9. N

    Solved Code Stage - c#

    Errors are resolved by following: Add System.dll in external references along with System.Data in namespace imports if we are using collections with C#.
  10. N

    Solved Have a query in Blueprism coding stage and collection stage.

    In c#: If output collection stage is collectionOutput then Code: DataTable table = new DataTable(); table.Columns.Add("Number", typeof(int)); for(int i=0; i<5; i++) { table.Rows.Add(i); } collectionOutput = table; Note: Add System.dll in external references and System.Data in namespace...
  11. N

    Solved Have a query in Blueprism coding stage and collection stage.

    If output collection stage is collectionOutput then Code: Dim table As New DataTable table.Columns.Add("Number", GetType(Integer)) For i As Integer = 1 to 5 Step 1 table.Rows.Add(i) Next collectionOutput = table Hope this works fine. :)
  12. N

    Solved Code Stage - c#

    @adebroise the namespace System.Data I included. But the thing is it is working with Visual Basic but not with C#. I use C# to write my code, so I need a namespace or dll to be used to eliminate this particular error.
  13. N

    Solved Code Stage - c#

    @adebroise If I do that then I am getting a compile error saying: "System.Data.DataTable" is a type not a namespace.
  14. N

    Solved Code Stage - c#

    How to use a collection as input in Code stage while writing in C# Programming language? Whenever I am using the collection in the code, It is showing the error as some reference missing. May I know which additional reference to be used for this to work apart from inbuilt ones? I have one...
  15. N

    Read Radio Button - Surface Automation

    @cs.andras Thank you. But I am trying to find a solution without using image search. I have an option called "uniform colour" in my wait stage to check whether region has uniform colour or not. Learning > Surface Automation > "Training Document - Surface Automation Advanced Training(v6)" -...
Top