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

  1. #include "ObjEPref.txt"
  2.         
  3. #define kLogicalOperatorLabel    "Logical Operator"
  4. #define kLogicalOperator1        "AND"
  5. #define kLogicalOperator2        "OR"
  6. #define kLit2581 "Specifies find criteria to be combined so that all criteria must be met for a record to match."
  7. #define kLit2582 "Specifies find criteria to be combined so that at least one criterion must be met for a record to match."
  8.  
  9.  
  10. VList(UseParWidth, stdBackColor)
  11. {
  12.     Label(kLogicalOperatorLabel, Single, Height = 80, kStaticFont, UseParWidth)
  13.     HList()
  14.     {
  15.         StdHSpace;
  16.         VList()
  17.         {
  18.             WidowRadioButton(kLogicalOperator1, obj.value, 0, Height = 30, kPlainFont, EH kLit2581 );
  19.             WidowRadioButton(kLogicalOperator2, obj.value, 1, Height = 30, kPlainFont, EH kLit2582 );
  20.         }
  21.     }
  22. }
  23.  
  24.