Can I display the current date in a text box?

S

stephiebrady

I know how to display the current date in a cell, but can I display it in a
text box? And how would I do that?
 
B

Bob Phillips

You would have to have some code to load it, such as

Textbox1.Text = Format(Date,"dd mmm yyyy")

or link the texbox to a cell with the formula =TODAY()

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
S

stephiebrady

Thank you!!!

Bob Phillips said:
You would have to have some code to load it, such as

Textbox1.Text = Format(Date,"dd mmm yyyy")

or link the texbox to a cell with the formula =TODAY()

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Top