Apr 18 2008 02:52 PM 10482 15 VB.NET Date conversion vineeladudhekula how to convert mm/dd/yyyy to dd/mm/yyyy. nickycym Profile Answers by nickycym Questions by nickycym Sep 15th, 2011 Once the data is converted into Date type, then you can work out any format of information from the variable Codedim strDate() as string = "MM/dd/yyyy".split("/") dim myDate as new Date (strDate(2), strDate(0), strDate(1)) msgbox(format (myDate, "dd/MM/yyyy")) smother Profile Answers by smother Questions by smother Aug 31st, 2011 Go to Control panel >> Regional and Language settings >Customized>Change Time Format(hh/mm/ss/tt) and Short Data Format (dd/MM/yyyy)..if your using Windows 7..just try to do as the same. Answer Question Select Best Answer
Apr 18 2008 02:52 PM 10482 15 VB.NET Date conversion vineeladudhekula how to convert mm/dd/yyyy to dd/mm/yyyy. nickycym Profile Answers by nickycym Questions by nickycym Sep 15th, 2011 Once the data is converted into Date type, then you can work out any format of information from the variable Codedim strDate() as string = "MM/dd/yyyy".split("/") dim myDate as new Date (strDate(2), strDate(0), strDate(1)) msgbox(format (myDate, "dd/MM/yyyy")) smother Profile Answers by smother Questions by smother Aug 31st, 2011 Go to Control panel >> Regional and Language settings >Customized>Change Time Format(hh/mm/ss/tt) and Short Data Format (dd/MM/yyyy)..if your using Windows 7..just try to do as the same. Answer Question Select Best Answer
nickycym Profile Answers by nickycym Questions by nickycym Sep 15th, 2011 Once the data is converted into Date type, then you can work out any format of information from the variable Codedim strDate() as string = "MM/dd/yyyy".split("/") dim myDate as new Date (strDate(2), strDate(0), strDate(1)) msgbox(format (myDate, "dd/MM/yyyy"))
smother Profile Answers by smother Questions by smother Aug 31st, 2011 Go to Control panel >> Regional and Language settings >Customized>Change Time Format(hh/mm/ss/tt) and Short Data Format (dd/MM/yyyy)..if your using Windows 7..just try to do as the same.