Link to home
Start Free TrialLog in
Avatar of derigo
derigoFlag for United States of America

asked on

Time/Date Stamp

I'm writing a program where a user types notes into 1 textbox and when clicking the /log button, it displays it in another textbox.  how do I get the note to be displayed with a time/date stamp in front of it? and then how do I get the next note logged in to start at the next line?
ASKER CERTIFIED SOLUTION
Avatar of setiawan
setiawan

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of setiawan
setiawan

Private Sub Command1_Click()
  Text2.Text = Text2.Text & Now & " " & Text1.Text & vbCrLf
End Sub
Avatar of derigo

ASKER

thanks!!!  never knew that existed.