Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Pacific > GMT 2

Status
Not open for further replies.

loganswell

Programmer
Dec 28, 2000
111
0
0
GB
Hi people,

I have a web site that is hosted in California and I am in Scotland (UK GMT+1 [BST or daylight saving time])

When people add entries to the guestbook (which is an Access database) it is showing as local (Pacific?) time.

The database is set up just as a date/time field. Is it possible to change the Now() so that it adds 8 hours every time an entry is made?

Many thanks!

Jim :eek:)
 
Or ... Living Dangerously
Code:
Function Now() As Date
    Now = DateAdd("h", 8, VBA.Now)
End Function
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top