kirkdm22
November 24th, 1999, 06:17 AM
how do set date and time values to text box
|
Click to See Complete Forum and Search --> : Date and time kirkdm22 November 24th, 1999, 06:17 AM how do set date and time values to text box Lothar Haensler November 24th, 1999, 06:23 AM Text1.Text = Format(Now, "Short date") & " " & Format(Now, "short Time") santulan November 24th, 1999, 09:20 AM say text1 is the text object then text1.text = format(now(),"dd-mmm-yyyy") & format(now(),"HH:MM") There are different format styles you can use - "dd-mm-yyyy" or "mm-dd-yyyy" or "dd-mmmm-yyyy" to get different effect. Santulan codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |