date()

cybertyk

Registered User.
Local time
Today, 04:54
Joined
Jul 7, 2010
Messages
49
how would i go about

string = date() + 3months

?
 
try looking up the dateadd function in the help file, should be what you need...
 
And if you need it to be not a date but a string, use the FORMAT function.
 
Would it be CDate() that OP would want to use? Or does it not make a difference? Depends how it's stored in the table I guess
 
Me.Company_Next_Contact_Date.Value = DateAdd("m", 3, Date) was the anwser,

ok next question. when the forms load they always load stupid sizes so i have to click the form to size buttion is there a way to force this on oading of the form?
 
Yep have a look at form.height and form.width properties
 

Users who are viewing this thread

Back
Top Bottom