home *** CD-ROM | disk | FTP | other *** search
- #include "ObjEPref.txt"
-
- #define kLogicalOperatorLabel "Logical Operator"
- #define kLogicalOperator1 "AND"
- #define kLogicalOperator2 "OR"
- #define kLit2581 "Specifies find criteria to be combined so that all criteria must be met for a record to match."
- #define kLit2582 "Specifies find criteria to be combined so that at least one criterion must be met for a record to match."
-
-
- VList(UseParWidth, stdBackColor)
- {
- Label(kLogicalOperatorLabel, Single, Height = 80, kStaticFont, UseParWidth)
- HList()
- {
- StdHSpace;
- VList()
- {
- WidowRadioButton(kLogicalOperator1, obj.value, 0, Height = 30, kPlainFont, EH kLit2581 );
- WidowRadioButton(kLogicalOperator2, obj.value, 1, Height = 30, kPlainFont, EH kLit2582 );
- }
- }
- }
-
-