UI Path community edition is great tool to start learning RPA tool, this is absolutely free for individual developers, open source projects, academic research, education, and small professional teams, non profits and small business with an annual turnover of less than $1 million or 250 workstations. You can get the free community from below link
From where to download
Download free community edition
What is trial period
The Community Edition needs a refresh after every 2 or 3 months. This means that you have to send them your device ID, using the below link and they will refresh the license for you for next 2 or 3 months.
https://www.uipath.com/renew-community-license
Will I have to pay after trial period
At present community edition is free and I have renewed my licence 3 times already for free, but not sure if they have plan to stop this free renewal in future or not.
How will I get support on free tool
They have very active community forum, you can post your queries on below forum for any issue on using this tool or any query about using the tools
https://forum.uipath.com/
How can I get free training on this tool
You can also register using below link for free UI Path certification , you can start with their Level-1 Foundation training, I have personally done this certification and they have really a great training material
https://www.uipath.com/rpa-academy
Feel free to provide your comments if you have any question
I am new to UI Path and have no knowledge of VB.net.
I need to convert a date in String data type to a DateTime data type.
Example 1.
The string is “20/04/2018″ in ‘dd/mm/yyyy” format
I would like to convert it to a DateTime date type with the format “mm/dd/yyyy” , which is 04/20/2018
Example 2.
The string is ” 20 Apr 2018″
I would like to convert it to a DateTime date type with the format “mm/dd/yyyy” , which is 04/20/2018.
Appreciate who ever can help.
Below work for me
Format-1
datetime.ParseExact(“20/04/2018″,”dd/mm/yyyy”,Nothing).ToString(“mm/dd/yyyy”)
Format-2
datetime.ParseExact(“20 Apr 2018″,”dd MMM yyyy”,Nothing).ToString(“MM/dd/yyyy”)
Let me know if you have any quesiton.