home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1999 March / CDW0399.iso / Demos / HomePage / data1.cab / Program_Executable_Files / Homepage.exe / 1009 / 2044 < prev    next >
Encoding:
Text File  |  1997-12-10  |  893 b   |  25 lines

  1. #include "ObjEPref.txt"
  2.         
  3. #define kFormatLabel    "Date Format"
  4. #define kFormat1        "Short"
  5. #define kFormat2        "Abbreviated"
  6. #define kFormat3        "Long"
  7. #define kLit2525 "Specifies the current date in the operating system's version of short format."
  8. #define kLit2526 "Specifies the current date in the operating system's version of abbreviated format."
  9. #define kLit2527 "Specifies the current date in the operating system's version of long format."
  10.  
  11. Margin(10, 10, 10, 10, TabDialogBack)
  12. VList(UseParWidth)
  13. {
  14.     Label(kFormatLabel, Single, Height = 110, kStaticFont, UseParWidth)
  15.     HList()
  16.     {
  17.         StdHSpace;
  18.         VList()
  19.         {
  20.             WidowRadioButton(kFormat1, obj.format, 0, Height = 30, kPlainFont, EH kLit2525);
  21.             WidowRadioButton(kFormat2, obj.format, 1, Height = 30, kPlainFont, EH kLit2526);
  22.             WidowRadioButton(kFormat3, obj.format, 2, Height = 30, kPlainFont, EH kLit2527);
  23.         }
  24.     }
  25. }