How to convert QDate::currentDate() format to dd/MM/yyyy format
Hello,
I am new to Qt.Here is my code for date
Date createDate;
createdDate=QDate::currentDate();
String createdDateString;
createdDateString=createdDate.toString();
the date format displayed is e.g today's date is Thru June 2 2011 but i want the date to be displayed as 02/06/2011. Please help me...:)
Thanks in advance..:)
Re: How to convert QDate::currentDate() format to dd/MM/yyyy format
Please read the manual for QDate::toString()
Re: How to convert QDate::currentDate() format to dd/MM/yyyy format
Yes i got it..Thank you Chris..