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

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