home *** CD-ROM | disk | FTP | other *** search
- #include "ObjEPref.txt"
-
- #define kLit1 "Field Name:"
- #define kEncodingLabel "Encoding"
- #define kEncoding1 "HTML - Perform HTML encoding"
- #define kEncoding2 "Break - HTML encoding/replace returns"
- #define kEncoding3 "URL - Perform URL encoding"
- #define kEncoding4 "Raw - Don't perform any encoding"
- #define kLit2556 "Specifies the field's name as defined in the FileMaker Pro file."
- #define kLit2557 "Encodes any character in the element that may be special if you don't want to use its special meaning in HTML."
- #define kLit2558 "Click to perform HTML encoding and replace soft returns with a <br> element (line break) tag."
- #define kLit2559 "Encodes any character in the element that might be special if you don't want to use its special meaning in a URL."
- #define kLit2560 "Click so that no encoding scheme is used."
-
- Margin(10, 10, 10, 10, TabDialogBack)
- VList(UseParWidth)
- {
- StaticText( kLit1, Width = UseParent, kStaticFont);
- StdVSpace;
- EditText(obj.fieldname, Label = "", LabelAlignment=Left, kEditFont, LabelWidth=0, UseParWidth, StdFlags, EH kLit2556);
- StdVSpace;
- StdVSpace;
- Label(kEncodingLabel, Single, Height = 140, kStaticFont, UseParWidth)
- HList()
- {
- StdHSpace;
- VList()
- {
- WidowRadioButton(kEncoding1, obj.encoding, 0, Height = 30, kPlainFont, EH kLit2557);
- WidowRadioButton(kEncoding2, obj.encoding, 1, Height = 30, kPlainFont, EH kLit2558);
- WidowRadioButton(kEncoding3, obj.encoding, 2, Height = 30, kPlainFont, EH kLit2559);
- WidowRadioButton(kEncoding4, obj.encoding, 3, Height = 30, kPlainFont, EH kLit2560);
- }
- }
- }