Subject SET HOURS
From Tom <IHaveNoEmail@ddress>
Date Sat, 22 Jul 2023 08:13:48 -0400
Newsgroups dbase.getting-started

Good morning all,

OLH says:

The following statements convert a DateTime value to a string using
DTTOC (DateTime to Character) and  extracts the date and time strings.
*
The following examples assume SET HOURS is set to 12, thereby displaying
the AM/PM indicator. *** <<< Note <<< ***
*
d=DATETIME()  // Yields 08/17/00 04:25:45 PM
d1=DTTOC(d)  //Yields 08/17/00 04:25:45 PM as a Character string
d2=left(d1,8)  //Yields 08/17/00 as a Character string
d3=right(d1,11) //Yields 04:25:45 PM as a Character string

My question is WHERE is the current SET HOURS value stored on my
computer and how do I find out what it is and, more importantly, where
is it stored on your computer and how do I find out what it is?

I do not see this information in my Ini file or any place to set this in
the "properties" form from the main menu.

Help will be appreciated.

Tom