home *** CD-ROM | disk | FTP | other *** search
- #include "ObjEPref.txt"
-
- #define kSortOrderLabel "Sort Order"
- #define kSortOrder1 "Ascending"
- #define kSortOrder2 "Descending"
- #define kSortOrder3 "Custom"
- #define kLit1 "Value List:"
- #define kLit2599 "Specifies sort order of numbers in the preceding field from 0 to 9, and text from A to Z."
- #define kLit2600 "Specifies sort order of numbers in the in the preceding field from 9 to 0, and text from Z to A."
- #define kLit2601 "Specifies sort order of values in the in the preceding field according to order of values in a FileMaker value list."
- #define kLit2602 "Specifies the name of the value list used for a custom sort order."
-
-
- VList(UseParWidth, stdBackColor)
- {
- Label(kSortOrderLabel, Single, Height = 100, kStaticFont, UseParWidth)
- HList(UseParWidth)
- {
- StdHSpace;
- StdHSpace;
- VList(UseParWidth)
- {
- StdVSpace;
- WidowRadioButton(kSortOrder1, obj.sortorder, 0, kPlainFont, Height=18, EH kLit2599);
- StdVSpace;
- WidowRadioButton(kSortOrder2, obj.sortorder, 1, kPlainFont, Height=18, EH kLit2600);
- StdVSpace;
- HList(UseParWidth)
- {
- WidowRadioButton(kSortOrder3, obj.sortorder, 2, kPlainFont, Height=18, EH kLit2601);
- StdHSpace;
- EditText(obj.valuelist, Label = kLit1, LabelAlignment=Left, kPlainFont, Width = UseParent, StdFlags, EH kLit2602);
- StdHSpace;
- StdHSpace;
- }
- }
- }
- }
-