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

  1. #include "ObjEPref.txt"
  2.         
  3. #define kEncodingLabel    "Encoding"
  4. #define kEncoding1        "HTML"
  5. #define kEncoding2        "Display"
  6. #define kLit2520 "Encodes any character in the element that may be special if you don't want to use its special meaning in HTML."
  7. #define kLit2521 "Displays action information in the language specified by the Web Companion Configuration in FileMaker Pro."
  8.  
  9. Margin(10, 10, 10, 10, TabDialogBack)
  10. VList(UseParWidth)
  11. {
  12.     StdVSpace;
  13.     Label(kEncodingLabel, Single, Height = 80, kStaticFont, UseParWidth)
  14.     HList()
  15.     {
  16.         StdHSpace;
  17.         VList()
  18.         {
  19.             WidowRadioButton(kEncoding1, obj.encoding, 0, Height = 30, kPlainFont, EH kLit2520);
  20.             WidowRadioButton(kEncoding2, obj.encoding, 1, Height = 30, kPlainFont, EH kLit2521);
  21.         }
  22.     }
  23. }