Search results

  1. M

    Remove row in collection

    this statement returning the rows which are having status ‘PV’. so you have to modify it something like this for your requirement DataTable.Select("[COLUMN 1]=’’ OR [COLUMN 2]=’’") and if null values you have then you can use like this: DataTable.Select("[COLUMN NAME] is null"); and then you can...
  2. M

    Best AI and machine learning tools for developers | 13 AI Dev Tools

    There are top 5 most useful tools for AI and ML developers which is given below: 1.Amazon Web Services. 2.AI-one. 3. Deeplearning4j. 4.Apache Mahout. 5.Open Neural Networks Library. To know more about this visit at: http://pythonandmltrainingcourses.com/courses/best-python-training-in-noida/
  3. M

    Is it possible to run the loop for a particular period of time?

    DateTime dt = DateTime.Now.AddMinutes(10); for (; ; ) { if (dt < DateTime.Now) break; } This is the code to run the loop for a particular period of time. For more info visit at:-...
  4. M

    Blue Prism Developer Certification

    You can start learning first through online modes after that you can join classroom training for better knowledge. This technique is very useful for Blue Prism Certification .
  5. M

    Web Services

    WSDL is an XML format for describing network services as a set of endpoints operating on messages containing either document -oriented or procedure-oriented information. It actually stands for Web services Description Language. SOAP is an XML-based protocol that lets you exchange info over a...
  6. M

    Difficult task automation

    There are some part which is difficult for Automation which are given below: 1.Programming 2.Part presentation 3Integration with other machines
  7. M

    Write a large collection into an Excel

    Collections: These are a very important part of VBA. If you have used the language for any length of time then you will have used Collections. The most common ones are the Workbooks, Worksheets, Range and Cells collections.
  8. M

    How to use web services in blueprism

    Here are some techniques for Sharing link having used web service. allow communication and interoperability between applications running on different platforms and built with different technologies enable different applications to share common standard formats and representations can be reused...
Top