|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
custom date formatsI would like to format a date like this this mmddyy. I am reading records from a table using the ado.net reader The dates vary in their length i.e. the day can be either one or two digits and the same is true for the month. I tired the formatDateTime() like : formatDateTime(rdr2.getvalue(7), dateformat.ShortDate) which yields mmddyyyy. The final result that I am looking for is mmddyy. Do I need a custom date format instead of dateformat.ShortDate ? Thanks for any insights, -- Gordon Gordon wrote:
Show quoteHide quote > Hi; If you have a DateTime variable, you can use the ToString method to get> > I would like to format a date like this this mmddyy. > > I am reading records from a table using the ado.net reader > > The dates vary in their length i.e. the day can be either one or two digits > and > the same is true for the month. > > I tired the formatDateTime() like : > formatDateTime(rdr2.getvalue(7), dateformat.ShortDate) which yields > mmddyyyy. > > The final result that I am looking for is mmddyy. the format you want: Dim strDate As String = DateTime.Now.ToString("MMddyy") Note the capital M in the format string. Lower case m signifies "minutes", upper case M signifies month.
Problem sending mail
help reading numeric values is Excel via VB.NET Balloons on system tray icon how to overwrite console.write? Writing commands to cmd from VB.Net 2005 Awesome Information Pb publish Specifying a custom installation folder Crystal Formatting Issue change permissions in the registry |
|||||||||||||||||||||||