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

  1. #include "ObjEPref.txt"
  2.         
  3. #define kEncodingLabel    "Encoding"
  4. #define kEncoding1        "HTML - Perform HTML encoding"
  5. #define kEncoding2        "Display"
  6. #define kEncoding3        "URL - Perform URL encoding"
  7. #define kEncoding4        "Raw - Don't perform any encoding"
  8. #define kLit2548 "Encodes any character in the element that may be special if you don't want to use its special meaning in HTML."
  9. #define kLit2549 "Returns the sort order in the language specified by the Web Companion Configuration in FileMaker Pro."
  10. #define kLit2550 "Encodes any character in the element that might be special if you don't want to use its special meaning in a URL."
  11. #define kLit2551 "Click so that no encoding scheme is used."
  12.  
  13. Margin(10, 10, 10, 10, TabDialogBack)
  14. VList(UseParWidth)
  15. {
  16.     Label(kEncodingLabel, Single, Height = 140, kStaticFont, UseParWidth)
  17.     HList()
  18.     {
  19.         StdHSpace;
  20.         VList()
  21.         {
  22.             WidowRadioButton(kEncoding1, obj.encoding, 0, Height = 30, kPlainFont, EH kLit2548);
  23.             WidowRadioButton(kEncoding2, obj.encoding, 1, Height = 30, kPlainFont, EH kLit2549);
  24.             WidowRadioButton(kEncoding3, obj.encoding, 2, Height = 30, kPlainFont, EH kLit2550);    
  25.             WidowRadioButton(kEncoding4, obj.encoding, 3, Height = 30, kPlainFont, EH kLit2551);    
  26.         }
  27.     }
  28. }