Question can i change the format of DATE() ??

Nokia N93

Registered User.
Local time
Today, 13:33
Joined
Nov 15, 2010
Messages
56
the date is appearing 11/27/2010
is this the default in Ms. ACCESS??
how can i change it to 27/11/2010
p.s I used the date() to be entered automatically after updating a textbox ,, i want to change it to 27/11/2010
 
Nokia,

The date is stored internally as a floating point number ... you can't change
that.

To change how it is displayed use the Format statement.

Me.txtSomeTextBox = Format(Date, "dd/mm/yyyy")

Wayne
 
Nokia,

The date is stored internally as a floating point number ... you can't change
that.

To change how it is displayed use the Format statement.

Me.txtSomeTextBox = Format(Date, "dd/mm/yyyy")

Wayne

I tried it :( but it didnt work with me :( :(
 
Check the regional settings on your machine, are they US or UK?
 

Users who are viewing this thread

Back
Top Bottom