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