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

  1. #include "ObjEPref.txt"
  2. #define kEncodingLabel    "Encoding"
  3. #define kEncoding1        "HTML - Perform HTML encoding"
  4. #define kEncoding2        "URL - Perform URL encoding"
  5. #define kEncoding3        "Raw - Don't perform any encoding"
  6. #define kLit2576 "Encodes any character in the element that may be special if you don't want to use its special meaning in HTML."
  7. #define kLit2577 "Encodes any character in the element that might be special if you don't want to use its special meaning in a URL."
  8. #define kLit2578 "Click so that no encoding scheme is used."
  9.  
  10. Margin(10, 10, 10, 10, TabDialogBack)
  11. VList(UseParWidth)
  12. {
  13.     Label(kEncodingLabel, Single, Height = 110, kStaticFont, UseParWidth)
  14.     HList()
  15.     {
  16.         StdHSpace;
  17.         VList()
  18.         {
  19.             WidowRadioButton(kEncoding1, obj.encoding, 0, Height = 30, kPlainFont, EH kLit2576);
  20.             WidowRadioButton(kEncoding2, obj.encoding, 1, Height = 30, kPlainFont, EH kLit2577);
  21.             WidowRadioButton(kEncoding3, obj.encoding, 2, Height = 30, kPlainFont, EH kLit2578);    
  22.         }
  23.     }
  24. }