Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Store Time as String? 5

Status
Not open for further replies.
Jan 13, 2008
167
US
Hey guys I'm need to be able to have the time stored as a string for display.

No time as in continuous but time as when an app started.

ex. Click "Start" and display the "Start Time" in this format:

2/7/08 @ 2:10:40 pm.

I can't figure it out.

this is sort of what i have so far:

Code:
startdate = "Started: " & date & " - " & time

that changes constantly
 
Put the "startdate = "Started: " & date & " - " & time" into your form_load sub. Then call the variable on your click command.. such as this.

Code:
Dim startdate

Private Sub Command1_Click()

    MsgBox startdate
    
End Sub

Private Sub Form_Load()

    startdate = "Started: " & Date & " - " & Time

End Sub

_______
I love small animals, especially with a good brown gravy....
 
Just did a search on your substantial list of questions, and couldn't find the 'Thanks' anywhere. probably just my mistake, but you might look at faq222-2244 to see how to get the best from these forums, including how to recognise helpful answers and how to do your own basic research.

For this one, do you want to store the date (as in text file, database, registry etc) or do you mean display the date?

For display, look up Format and FormatDateTime in VBHelp. For storage, clarify what you want to store, for how long, and by what mechanism.

___________________________________________________________
If you want the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
Steam Engine Prints
 
I believe that his problem was due to him setting the value of the variable every time the click even was run. If he merely sets that value and then reads that value with the click event, the result will remain constant.

_______
I love small animals, especially with a good brown gravy....
 
Well with incomplete (and probably unrelated) sentences like "that changes constantly" I don't blame anybody if they don't understand what the question is. If I had the patience of BobRhodes I would start coaxing the details out with questions like "exactly when does it change?".

But if you take the OP's first sentence plus the example, and ignore the other musings, then I believe SBerthold has the answer.


 
Just to correct johnwm I say thanks when the person helps me solve the problem and i pust Thank "" for this valuable post every single time my problem is solved and to the person who contributed the most help.

Other than that I think the Form_Load fixed the problem.

THANKS PKAILAS You are the one who helped fixed the problem.
 
mattloflin

johnwm reffers to #15 of the faq he mentions, on how to thank someone and also provide a visual of "Problem Solved" flag.
 



"Just to correct johnwm I say thanks when the person helps me solve the problem and i pust Thank "" for this valuable post every single time my problem is solved and to the person who contributed the most help."

SkipVought said:
thread707-1447577
mattloflin,

"...if I could give you Kudo's I would!"

Here at Tek-Tips, thanks for valuable posts can be recognized by the little purple stars. You can offer that expression by clicking the LINK in the lower left-hand corner of any post worth of thanks.
You do not get it, do you?

You have awarded NOT ONE STAR since you have begun posting several weeks ago. It is part of Tek-Tips etiquette, and not only that, it provides other Tek-Tip members with a means of identifying post, worthy of review, when browsing for good information.

Furthermore, it identifies YOU as either someone who shows their appreciation for valuable posts, OR someone who is an ungracious taker.

Ball's in your court!



Skip,

[glasses]Did you hear what happened when the OO programmer lost his library?...
He's now living in OBJECT poverty![tongue]
 
Matt, perhaps you don't hit the "click to confirm" link in the little window that comes up. Furthermore, I'm sure that you intended to thank people and don't find that you have been ungracious in any way.


<Furthermore, it identifies YOU as either someone who shows their appreciation for valuable posts, OR someone who is an ungracious taker.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top