home *** CD-ROM | disk | FTP | other *** search
- #include "ObjEPref.txt"
-
- #define kFormatLabel "Format"
- #define kFormat1 "Short"
- #define kFormat2 "Long"
- #define kFormat3 "Display"
- #define kLit2533 "Specifies abbreviated format of find operator. Examples: bw, cn, eq."
- #define kLit2534 "Specifies whole-words format of find operator. Examples: begins with, contains, equals."
- #define kLit2535 "Specifies the format of find operator in the language specified by Web Companion Configuration in FileMaker Pro."
-
- Margin(10, 10, 10, 10, TabDialogBack)
- VList(UseParWidth)
- {
- Label(kFormatLabel, Single, Height = 110, kStaticFont, UseParWidth)
- HList()
- {
- StdHSpace;
- VList()
- {
- WidowRadioButton(kFormat1, obj.format, 0, Height = 30, kPlainFont, EH kLit2533);
- WidowRadioButton(kFormat2, obj.format, 1, Height = 30, kPlainFont, EH kLit2534);
- WidowRadioButton(kFormat3, obj.format, 2, Height = 30, kPlainFont, EH kLit2535);
- }
- }
- }