954,515 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,648 posts since Oct 2008
Reputation Points: 2,136
Solved Threads: 1,241
 

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
Nearly a Senior Poster
3,386 posts since Aug 2010
Reputation Points: 1,232
Solved Threads: 558
 

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
 

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

bossie09
Light Poster
26 posts since May 2008
Reputation Points: 10
Solved Threads: 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
 

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
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: