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

  1. #include "ObjEPref.txt"
  2.         
  3. #define kLit1    "Comparison operator:"
  4. #define kLit2    "equals"
  5. #define kLit3    "contains"
  6. #define kLit4    "begins with"
  7. #define kLit5    "ends with"
  8. #define kLit6    "greater than"
  9. #define kLit7    "greater than or equals"
  10. #define kLit8    "less than"
  11. #define kLit9    "less than or equals"
  12. #define kLit10    "not equals"
  13. #define kLit2592 "Specifies the field comparison operator to use for the field that immediately follows this tag."
  14.  
  15. VList(UseParWidth, stdBackColor)
  16. {
  17.     Margin(0, 5, 0, 5, TabDialogBack)
  18.     StaticText( kLit1, kStaticFont, Alignment = Left, UseParWidth);
  19.     IntegerPopup("", Default, obj.value, kPopupFont, EH kLit2592)
  20.     {
  21.           IntItem(kLit2, 0);
  22.           IntItem(kLit3, 1);
  23.           IntItem(kLit4, 2);
  24.           IntItem(kLit5, 3);
  25.           IntItem(kLit6, 4);                   
  26.         IntItem(kLit7, 5);
  27.         IntItem(kLit8, 6);
  28.         IntItem(kLit9, 7);
  29.         IntItem(kLit10, 8);
  30.     };
  31. }
  32.