We're a community of 1076K IT Pros here for help, advice, solutions, professional growth and fun. Join us!
1,075,820 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?

Simple Code for Getting Current Date and Time

0
By JJCollins on Oct 4th, 2010 2:39 pm

Just a quick snippet for beginners

Public Shared Function getCurrentDateTimeString() As String ' Returns current date and time in this format: "yyyyMMddHHmmssff"         Dim rightNow As DateTime = DateTime.Now         Dim strCurrentDateTimeString As String         strCurrentDateTimeString = rightNow.ToString("yyyyMMddHHmmssff")         Return (strCurrentDateTimeString)     End FunctionPublic Shared Function getCurrentDateTimeString() As String ' Returns current date and time in this format: "yyyyMMddHHmmssff"

        Dim rightNow As DateTime = DateTime.Now

        Dim strCurrentDateTimeString As String

        strCurrentDateTimeString = rightNow.ToString("yyyyMMddHHmmssff")

        Return (strCurrentDateTimeString)

    End Function
__avd
Posting Genius (adatapost)
Moderator
8,736 posts since Oct 2008
Reputation Points: 2,141
Solved Threads: 1,262
Skill Endorsements: 50

Why go through all the variable manipulation:

Public Shared Function getCurrentDateTimeString() As String ' Returns current date and time in this format: "yyyyMMddHHmmssff"
    return DateTime.Now.ToString("yyyyMMddHHmmssff"
End Function
Momerath
Senior Poster
3,728 posts since Aug 2010
Reputation Points: 1,322
Solved Threads: 624
Skill Endorsements: 12

I like to do things the long way for beginners, the code is simple but there is more of it, just feel you'll learn more about the language, syntax etc from 6 lines of code rather than 3, personal preference i guess :)

- Jordan

JJCollins
Junior Poster in Training
67 posts since Sep 2010
Reputation Points: 14
Solved Threads: 10
Skill Endorsements: 0

Any one here can help me with a programming assignment....... C, C++ or Java language, anyone, WE can negotiate a price.

bossie09
Light Poster
31 posts since May 2008
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0

This is the wrong forum for C / C++ / Java my friend, a post in the appropriate forum would be better for you

- Jordan

JJCollins
Junior Poster in Training
67 posts since Sep 2010
Reputation Points: 14
Solved Threads: 10
Skill Endorsements: 0

Hi,

I need a code to show only the previous month date i.e. the program executes this month but must show last months date or just a month. So there's a message that says "attached is the monthly report", instead of saying 'monthly' report, it must print the last month's name 'month' e.g. 'Feb', 'Mar' etc ...

Thnx
W.

Wel Da gr8
Newbie Poster
1 post since Mar 2012
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0

Post: Markdown Syntax: Formatting Help
 
You
View similar articles that have also been tagged:
 
© 2013 DaniWeb® LLC
Page rendered in 0.0698 seconds using 2.67MB