home *** CD-ROM | disk | FTP | other *** search
- #include "ObjEPref.txt"
-
- #define kFormatLabel "Date Format"
- #define kFormat1 "Short"
- #define kFormat2 "Abbreviated"
- #define kFormat3 "Long"
- #define kLit2525 "Specifies the current date in the operating system's version of short format."
- #define kLit2526 "Specifies the current date in the operating system's version of abbreviated format."
- #define kLit2527 "Specifies the current date in the operating system's version of long format."
-
- Margin(10, 10, 10, 10, TabDialogBack)
- VList(UseParWidth)
- {
- Label(kFormatLabel, Single, Height = 110, kStaticFont, UseParWidth)
- HList()
- {
- StdHSpace;
- VList()
- {
- WidowRadioButton(kFormat1, obj.format, 0, Height = 30, kPlainFont, EH kLit2525);
- WidowRadioButton(kFormat2, obj.format, 1, Height = 30, kPlainFont, EH kLit2526);
- WidowRadioButton(kFormat3, obj.format, 2, Height = 30, kPlainFont, EH kLit2527);
- }
- }
- }