|
|
 |
| VB.NET 2002/2003 Basics For coders who are new to Visual Basic, working in .NET versions 2002 or 2003 (1.0 and 1.1). |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the VB.NET 2002/2003 Basics section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

December 1st, 2007, 03:30 AM
|
|
Registered User
|
|
Join Date: Sep 2007
Location: Pune, maharashtra, India.
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
How to convert dd/MM/yyyy to MM/dd/yyyy
How to convert textbox value date from dd/MM/yyyy to MM/dd/yyyy in vb.net +asp.net
Rg2005
__________________
Rg2005
|

January 17th, 2008, 06:30 PM
|
|
Registered User
|
|
Join Date: Jan 2008
Location: , , Australia.
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
First you need to have a date object. So, for instance:
Dim myDate as Date
Alternatively, if your string object contains a vailid date, eg, "20/01/2007" then you can cast it to a date using CDate(myDate, Date)
For both you would use the .toString method to format it.
myDate.toString("MM/dd/yyyy")
or
CDate(myDate, Date).toString("MM/dd/yyyy")
If myDate was a string variable. Note that both examples only return a formatted date string. It doesn't change the date format within the date object. You need to change the Windows Regional Settings to change the format the system date.
|

November 7th, 2008, 06:42 PM
|
|
Registered User
|
|
Join Date: Nov 2008
Location: philadelphia, pa, USA.
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
interesting.
I just upconverted a vb program from vb2005 to vb2008 and ran into a similar issue that doesn't appear to be easy to find anywhere else on the web. the closest i came to an answer was this post, which was very helpful (thank you very much)!
my tool reads lines from a csv file and does stuff with the data. some of the data entries are dates, but because i read a line at a time and split at commas into an array, all entries must come in as strings. in vb2005, this was not an issue: the dates were managed and manipulated like normal strings and everything was fine.
as soon as i upgraded to vb2008, things changed. vb2008 decided it was smarter than its operator, and automatically reconfigured the dates from "MM/dd/yyyy" and "MM/dd/yyyy hh:mm" to "MM-dd-yyyy" and "MM-dd-yyyy hh:mm" respectively.
thankfully, using your CDate().ToString() method, I was able to easily re-reconfigure the strings back to what they originally were. this saved me loads of time reconfiguring the entire program.
Please forward all my mail to the corner of pork & beans.
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |