Forms and validations - here's some of my ideas, what are yours?

One of the big things still missing from the JFX space (especially where JEE is concerned) is forms and form validations. Maybe you guys have been luckier but at least 80% of the screens I've had to build in my career have been boring old forms - enter data in the fields, validate them and hit submit.
So, I've been hacking around on this to try and get a pattern and hopefully some reusable classes for doing this in JavaFX. I have something that works but the code is verbose and less than elegant. I'm hoping some of you guys might want to kick around some ideas on this with me here. If we can come up with something that works, I'd like to either include it in [url http://www.zenjava.com/jfx-flow/]JFX Flow, or put it out as a separate open source project (whichever makes more sense).
What I think needs to be supported:
* Map between a normal Java bean and the fields on a form
* Validate the data, i.e. specifying the constraints on a field and then checking those constraints
* Show a validation summary at the top of the form
* Highlight individual fields if they have validation errors
* Support auto-validation, i.e. the validation highlights and messages will instantly update as the user types
Some extra restrictions:
* The data input will ideally be a normal bean and so it won't have observable values on it. In most projects I use, the beans are coming from the server and sometimes may be shared between desktop client and a jsp/web client, or even be a third party API so they can't be changed. End result: we don't want any JFX complexities or dependencies in our server code (design leak). This rule could be bent but only as a last resort.
* The validations must be defined relative to the normal data bean not a JFX model or controller, etc. This is so the bean can be validated on the server as well as the client. The server must do validation to prevent dodgy data getting in (never trust a client). Ideally we don't want to be specifying the validations in two places (i.e. once for the client and once for the server) as this creates maintenance problems and weakens the integrity of the system over time.
* Ideally the validation mechanism will be based on [url http://java.dzone.com/articles/bean-validation-and-jsr-303]JSR 303 - Bean Validations as this is quite nice. This is flexible however if there is a suitable alternative that integrates better.
To give us something to reference in conversation, I've created a small working sample. This is only meant to be a rough starting point (at best) and I'd really like to get feedback on both the code (i.e. should we have a 'presentation model', how could bindings be better used, etc) and the general way I'm representing errors (i.e. should we use tooltips to show errors, or actually show the errors next to the field, should we use border colours or put a little exclamation mark over the field, should the fields be auto-validated or only validated on submit, etc).
The example is a single form for editing a person. It has three fields, first name, last name and gender. When the form is blank, auto-editing is off. When the user submits the form it is validated and from that point on auto-validating is on. Error fields are highlighted with a style change, and a tooltip is added with details (I think we can do better - what's your ideas?).
I have used all plain Java to keep thngs simple, but I'd be looking for the end result to translate to FXML as well. I've also coded everything into the one class but the eventual goal would be to have the common stuff moved out to reusable base classes, etc.
Here's a workspace with some example code in it: http://code.google.com/p/jfxee/source/browse/trunk/jfxforms/
Here's a running deploy of that code: http://zenjava.com/demo/form/forms.html
(edit: I've moved the code to its own project and changed the url for the launch - the values above are the new, correct ones)
Looking forward to hearing some thoughts on this topic.
Edited by: zonski on 01-Dec-2011 13:41

At Devoxx I did some straw man prototype that you might find useful (or hopeless, I'm not sure which, I did it in a hurry :-)). I followed some principles that I was influenced by years back by JGoodies, but I haven't looked at the JGoodies stuff in forever and know it isn't all the same. But anyway, like I said, I'm not sure it is actually useful but maybe there is something genius hidden in there.
I have a Validator, which is just a simple SAM:
import javafx.scene.control.Control;
* @author Richard
public interface Validator<C extends Control> {
    public ValidationResult validate(C control);
}The idea is that it is given a Control, it will validate that control, and then return a ValidationResult. ValidationResult is actually only needed in cases of errors, since returning null indicates success, so the following is somewhat of a crock but you could rename it ValidationError or something and remove the "SUCCESS" type and there you are.
public class ValidationResult {
    public enum Type { ERROR, WARNING, SUCCESS }
    private final String message;
    private final Type type;
    public ValidationResult(String message, Type type) {
        this.message = message;
        this.type = type;
    public final String getMessage() {
        return message;
    public final Type getType() {
        return type;
    }For good measure I threw in a ValidationEvent.
import javafx.event.Event;
import javafx.event.EventType;
* @author Richard
public class ValidationEvent extends Event {
    public static final EventType<ValidationEvent> ANY =
            new EventType<ValidationEvent>(Event.ANY, "VALIDATION");
    private final ValidationResult result;
    public ValidationEvent(ValidationResult result) {
        super(ANY);
        this.result = result;
    public final ValidationResult getResult() { return result; }
}Because Control's don't presently have the notion of validation built in, I created a ValidationPane which is like a specialized StackPane, where there is a bottom layer, the control, and a glass pane layer. And from CSS you can style it however you like. The ValidationPane has a CSS style class set in case of errors / warnings. So without augmenting controls, the idea is that a ValidationPane subclass would exist to wrap each type of control you needed to validate. It did this because somebody has to wire up the listeners to the control to react on text input etc, and so I thought I'd like that encapsulated in something reusable, and there it was.
import javafx.beans.DefaultProperty;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.ReadOnlyObjectProperty;
import javafx.beans.property.ReadOnlyObjectWrapper;
import javafx.beans.property.SimpleObjectProperty;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.event.EventHandler;
import javafx.scene.control.Control;
import javafx.scene.layout.Region;
* @author Richard
@DefaultProperty("content")
public abstract class ValidatorPane<C extends Control> extends Region {
     * The content for the validator pane is the control it should work with.
    private ObjectProperty<C> content = new SimpleObjectProperty<C>(this, "content", null);
    public final C getContent() { return content.get(); }
    public final void setContent(C value) { content.set(value); }
    public final ObjectProperty<C> contentProperty() { return content; }
     * The validator
    private ObjectProperty<Validator<C>> validator = new SimpleObjectProperty<Validator<C>>(this, "validator");
    public final Validator<C> getValidator() { return validator.get(); }
    public final void setValidator(Validator<C> value) { validator.set(value); }
    public final ObjectProperty<Validator<C>> validatorProperty() { return validator; }
     * The validation result
    private ReadOnlyObjectWrapper<ValidationResult> validationResult = new ReadOnlyObjectWrapper<ValidationResult>(this, "validationResult");
    public final ValidationResult getValidationResult() { return validationResult.get(); }
    public final ReadOnlyObjectProperty<ValidationResult> validationResultProperty() { return validationResult.getReadOnlyProperty(); }
     *  The event handler
    private ObjectProperty<EventHandler<ValidationEvent>> onValidation =
            new SimpleObjectProperty<EventHandler<ValidationEvent>>(this, "onValidation");
    public final EventHandler<ValidationEvent> getOnValidation() { return onValidation.get(); }
    public final void setOnValidation(EventHandler<ValidationEvent> value) { onValidation.set(value); }
    public final ObjectProperty<EventHandler<ValidationEvent>> onValidationProperty() { return onValidation; }
    public ValidatorPane() {
        content.addListener(new ChangeListener<Control>() {
            public void changed(ObservableValue<? extends Control> ov, Control oldValue, Control newValue) {
                if (oldValue != null) getChildren().remove(oldValue);
                if (newValue != null) getChildren().add(0, newValue);
    protected void handleValidationResult(ValidationResult result) {
        getStyleClass().removeAll("validation-error", "validation-warning");
        if (result != null) {
            if (result.getType() == ValidationResult.Type.ERROR) {
                getStyleClass().add("validation-error");
            } else if (result.getType() == ValidationResult.Type.WARNING) {
                getStyleClass().add("validation-warning");
        validationResult.set(result);
        fireEvent(new ValidationEvent(result));
    @Override
    protected void layoutChildren() {
        Control c = content.get();
        if (c != null) {
            c.resizeRelocate(0, 0, getWidth(), getHeight());
    @Override
    protected double computeMaxHeight(double d) {
        Control c = content.get();
        return c == null ? super.computeMaxHeight(d) : c.maxHeight(d);
    @Override
    protected double computeMinHeight(double d) {
        Control c = content.get();
        return c == null ? super.computeMinHeight(d) : c.minHeight(d);
    @Override
    protected double computePrefHeight(double d) {
        Control c = content.get();
        return c == null ? super.computePrefHeight(d) : c.prefHeight(d);
    @Override
    protected double computePrefWidth(double d) {
        Control c = content.get();
        return c == null ? super.computePrefWidth(d) : c.prefWidth(d);
    @Override
    protected double computeMaxWidth(double d) {
        Control c = content.get();
        return c == null ? super.computeMaxWidth(d) : c.maxWidth(d);
    @Override
    protected double computeMinWidth(double d) {
        Control c = content.get();
        return c == null ? super.computeMinWidth(d) : c.minWidth(d);
}And finally the TextInputValidatorPane instance good for any TextInputControl. I think.
import javafx.beans.InvalidationListener;
import javafx.beans.Observable;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.scene.control.TextInputControl;
* @author Richard
public class TextInputValidatorPane<C extends TextInputControl> extends ValidatorPane<C> {
    private InvalidationListener textListener = new InvalidationListener() {
        public void invalidated(Observable o) {
            final Validator v = getValidator();
            final ValidationResult result = v != null ?
                v.validate(getContent()) :
                new ValidationResult("", ValidationResult.Type.SUCCESS);
            handleValidationResult(result);
    public TextInputValidatorPane() {
        contentProperty().addListener(new ChangeListener<C>() {
            public void changed(ObservableValue<? extends C> ov, C oldValue, C newValue) {
                if (oldValue != null) oldValue.textProperty().removeListener(textListener);
                if (newValue != null) newValue.textProperty().addListener(textListener);
    public TextInputValidatorPane(C field) {
        this();
        setContent(field);
}This should also be usable as is from FXML since you can easily wrap a TextInputValidatorPane around a TextField, and CSS does all the styling, so I think it all just works. You probably need to have some library of sophisticated Validators which know how to read text from a TextField and compare against the validation annotations, but otherwise it should work well enough. Anyway, in the actual implementation I think I would omit the ValidationPane stuff completely and just build that part into the controls / skins. Like I said, this was a quick hack but seemed to get the "how do I visualize validation errors" part of the problem solved.
Richard

Similar Messages

  • Ive tried almost EVERYTHING and i still cant track my iPod that was recently stolen. Ive called apple been all over the website and still no way of tracking it. What are some other ways!?

    Ive tried almost EVERYTHING and i still cant track my iPod that was recently stolen. Ive called apple been all over the website and still no way of tracking it. What are some other ways!?

    Only the old fashioned way, like if you lost a wallet or purse.
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • The latest Pages won't save new docs and won't open some old ones. What do I do?

    The latest Pages won't save new docs and won't open some old ones. What do I do?

    Then you have two version of Pages on your Mac.
    Pages 5.x is in your Applications folder.
    Pages '08/'09 is in your Applications/iWork folder.
    Peter

  • I preordered an album and i only got some songs not all, what happened

    i preordered an album and i only got some songs not all, what happened??

    What do you mean 'only got some songs not all' ?
    Has the album now been released ? If it is has and you've paid for it (you aren't charged when you pre-order an item, only when it's released) then you should be able to download the complete e.g. via the Purchased tab in the iTunes store app on your phone, or the Purchased link under Quick Links on the right-hand side of the iTunes store homepage on your computer's iTunes.

  • Visual Studio 2013 Setup and Installation gets stuck at system restore point. what are the issues?, help me out!!!

    Visual Studio 2013 Setup and Installation gets stuck at system restore point. what are the issues?, help me out ASAP

    Hello nitinrathod29,
    There are some possible fixes for this issue.
    Please check the following thread:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/47bc6990-00f2-4d85-b3f8-9de03c637f43/visual-studio-2013-update-2rc-stucks-on-creating-system-restore?forum=vssetup
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/81478f51-37bb-4dbb-bd0c-beade1fd50ab/visual-studio-2012-professional-installation-getting-stuck-creating-a-system-restore-point?forum=vssetup
    So here are them:
    1. Check if you have any software which may prevent the installer from running. For example, Windows Defender or any other software which may restrict your permissions.
    2. Just start the computer.
    3. Run the setup as admin.
    4. Check your UAC permissions.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Yosemite is awful- unable to empty trash, volume options are haywire, error codes on file management, and files won't replace when moved. What are my options at this point?

    Like the topic - "Yosemite is awful- unable to empty trash, volume options are haywire, error codes on file management, and files won't replace when moved. What are my options at this point?"
    I installed this OS, and it looks nice, but it's terrible to use. I randomly have the volume controls get disabled, and sometimes the volume menu in the system tray does nothing when adjusted which I've never seen in an OS before. The trash won't empty. When I try to drag and drop newer files over existing ones, nothing happens. The old ones just stay there. I have to delete the old ones and then move the new ones. And when I go into the protected files to manage audio plugins (I make music), the first thing I hit are error codes galore, and password prompts that either don't popup when they should, or don't execute the command after I provide my password.
    What can I do now that I installed the flames of **** onto my computer?

    Back up all data before proceeding.
    This procedure will unlock all your user files (not system files) and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    resetp
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
               ▹ Restart
    from the menu bar.

  • My wife has a small Mac book. I'd like to get her an inexpensive second monitor. What are my options?

    My wife has a small Mac book. I'd like to get her an inexpensive second monitor. What are my options?

    You'll probably need two things: Most MacBooks don't have a standard video plug so you'll need a dongle to connect the computer to the display. Which dongle she needs depends on which computer she owns and whether you buy an analog or digital display. I recommend digital. I have two displays that I like a lot, one is a Dell 22" HD - rather expensive but gorgeous and the other is a 24" Samsung digital - much less expensive but very good. If you aren't sure which dongle to get look under the Apple menu for About this Mac and then click on the more information button and you'll get the exact computer model use that information to search the net or come back here and let us know which model she owns.

  • Well i set a passcode on my iphone 4 and ive forgotten it i have no idea what to do and i only just got this phone plus i dont want to do these bypassing with emergancy call just in case i get it wrong plz help (urgent)

    well i set a passcode on my iphone 4 and ive forgotten it i have no idea what to do and i only just got this phone plus i dont want to do these bypassing with emergancy call just in case i get it wrong plz help (urgent)

    If you set the phone to erase on 10 failed passcodes - then just keep typing and it will wipe itself. 
    Otherwise I believe you can set it to recovery mode and restore etc.. via iTunes...  There is no easy way as the passcode is designed to protect the phone exactly against what you are trying to do now...
    http://osxdaily.com/2011/01/08/iphone-recovery-mode/
    Others may have some additional tips !
    Sorry for the probs you are having...
    Regs Neil

  • How do I unlock an iphone 5 with Sprint. The SIM is in and Sprint gave me the unlock code, but what are the steps to unlock it?

    How do I unlock an iphone 5 with Sprint 15.1 at IOS 7.0.6 IMEI 99 000320 012095 0 .
    The SIM is in and Sprint gave me the unlock code, but what are the steps to unlock it?

    There is no such thing as an unlock code.   Sprint may have processed the unlock, and then requested you restore the iPhone using iTunes to complete it. But that's it. There is no code to enter, and nowhere to enter it any way.
    iPhone: About unlocking

  • My Mail program is suddenly crashing and giving me the report-problem window. It did work great before this. I'm running 10.9 on a 13 inch Mac Airbook with 8 gb of ram and 1.8 Ghz chip. Any ideas what to do to get my mail program working again?

    My Mail program is suddenly crashing and giving me the report-problem window. It did work great before this. I'm running 10.9 on a 13 inch Mac Airbook with 8 gb of ram and 1.8 Ghz chip. Any ideas what to do to get my mail program working again?

    Process:         Mail [3866]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         7.0 (1822)
    Build Info:      Mail-1822000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [273]
    Responsible:     Mail [3866]
    User ID:         501
    Date/Time:       2013-12-05 23:40:19.406 -0800
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  EC1B55EE-8C6C-20A8-36EA-9F15A78AF687
    Sleep/Wake UUID: 5E45BE5C-A013-41EF-AAB5-1BA6CF36858A
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00007fff523befb4
    VM Regions Near 0x7fff523befb4:
        MALLOC_TINY            00007fb6f9000000-00007fb6f9100000 [ 1024K] rw-/rwx SM=PRV 
    --> STACK GUARD            00007fff4ebbf000-00007fff523bf000 [ 56.0M] ---/rwx SM=NUL  stack guard for thread 0
        Stack                  00007fff523bf000-00007fff52bbf000 [ 8192K] rw-/rwx SM=COW  thread 0
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_malloc.dylib                  0x00007fff83715c12 _nano_malloc_check_clear + 20
    1   libsystem_malloc.dylib                  0x00007fff837146c4 nano_malloc + 35
    2   libsystem_malloc.dylib                  0x00007fff8371287c malloc_zone_malloc + 71
    3   com.apple.CoreFoundation                0x00007fff854702b1 __CFStringChangeSizeMultiple + 977
    4   com.apple.CoreFoundation                0x00007fff8549bb15 __CFStringAppendBytes + 549
    5   com.apple.CoreFoundation                0x00007fff8549a5a0 __CFStringAppendFormatCore + 8480
    6   com.apple.CoreFoundation                0x00007fff854c8663 _CFStringCreateWithFormatAndArgumentsAux + 115
    7   com.apple.Foundation                    0x00007fff89b3d0bf -[NSPlaceholderString initWithFormat:locale:arguments:] + 132
    8   com.apple.Foundation                    0x00007fff89b4091c +[NSString stringWithFormat:] + 170
    9   com.apple.Mail.framework                0x00007fff88d35557 -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 357
    10  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    11  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    12  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    13  com.apple.Mail.framework                0x00007fff88d3517d -[MFCriterion _spotlightQueryStringForInASpecialMailboxCriterionWithQualifier:] + 1102
    14  com.apple.Mail.framework                0x00007fff88d34b64 -[MFCriterion spotlightQueryString] + 413
    15  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    16  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    17  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    18  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    19  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    20  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    21  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    22  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    23  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    24  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    25  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    26  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    27  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    28  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    29  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    30  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    31  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    32  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    33  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    34  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    35  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    36  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    37  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    38  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    39  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    40  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    41  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    42  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    43  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    44  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    45  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    46  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    47  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    48  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    49  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    50  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    51  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    52  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    53  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    54  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    55  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    56  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    57  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    58  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    59  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    60  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    61  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    62  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    63  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    64  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    65  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    66  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    67  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    68  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    69  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    70  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    71  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    72  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    73  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    74  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    75  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    76  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    77  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    78  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    79  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    80  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    81  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    82  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    83  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    84  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    85  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    86  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    87  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    88  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    89  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    90  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    91  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    92  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    93  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    94  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    95  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    96  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    97  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    98  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    99  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    100 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    101 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    102 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    103 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    104 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    105 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    106 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    107 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    108 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    109 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    110 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    111 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    112 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    113 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    114 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    115 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    116 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    117 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    118 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    119 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    120 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    121 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    122 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    123 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    124 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    125 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    126 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    127 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    128 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    129 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    130 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    131 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    132 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    133 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    134 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    135 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    136 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    137 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    138 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    139 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    140 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    141 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    142 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    143 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    144 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    145 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    146 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    147 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    148 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    149 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    150 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    151 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    152 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    153 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    154 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    155 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    156 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    157 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    158 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    159 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    160 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    161 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    162 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    163 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    164 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    165 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    166 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    167 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    168 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    169 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    170 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    171 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    172 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    173 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    174 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    175 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    176 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    177 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    178 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    179 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    180 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    181 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    182 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    183 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    184 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    185 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    186 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    187 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    188 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    189 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    190 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    191 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    192 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    193 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    194 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    195 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    196 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    197 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    198 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    199 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    200 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    201 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    202 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    203 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    204 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    205 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    206 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    207 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    208 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    209 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    210 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    211 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    212 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    213 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    214 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    215 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    216 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    217 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    218 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    219 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    220 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    221 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    222 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    223 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    224 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    225 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    226 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    227 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    228 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    229 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    230 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    231 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    232 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    233 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    234 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    235 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    236 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    237 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    238 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    239 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    240 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    241 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    242 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    243 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    244 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    245 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    246 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    247 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    248 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    249 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    250 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    251 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    252 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    253 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    254 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    255 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    256 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    257 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    258 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    259 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    260 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    261 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    262 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    263 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    264 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    265 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    266 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    267 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    268 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    269 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    270 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    271 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    272 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    273 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    274 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    275 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    276 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    277 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    278 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    279 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    280 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    281 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    282 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    283 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    284 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    285 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    286 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    287 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    288 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    289 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    290 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    291 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    292 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    293 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    294 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    295 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    296 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    297 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    298 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    299 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    300 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    301 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    302 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    303 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    304 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    305 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    306 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    307 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    308 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    309 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    310 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    311 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    312 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    313 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    314 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    315 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    316 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    317 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    318 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    319 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    320 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    321 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    322 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    323 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    324 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    325 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    326 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    327 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    328 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    329 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    330 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    331 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    332 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    333 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    334 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    335 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    336 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    337 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    338 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    339 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    340 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    341 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    342 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    343 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    344 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    345 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    346 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    347 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    348 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    349 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    350 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    351 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    352 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    353 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    354 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    355 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    356 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    357 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    358 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    359 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    360 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    361 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    362 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    363 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    364 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    365 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    366 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    367 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    368 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    369 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    370 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    371 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    372 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    373 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    374 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    375 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    376 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    377 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    378 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    379 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    380 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    381 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    382 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    383 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    384 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    385 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    386 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    387 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    388 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    389 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    390 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    391 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    392 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    393 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    394 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    395 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    396 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    397 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    398 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    399 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    400 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    401 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    402 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    403 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    404 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    405 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    406 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    407 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    408 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    409 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    410 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    411 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    412 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    413 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    414 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    415 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    416 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    417 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    418 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    419 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    420 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    421 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    422 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    423 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    424 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    425 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    426 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    427 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    428 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    429 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    430 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    431 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    432 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    433 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    434 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    435 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    436 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    437 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    438 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    439 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    440 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    441 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    442 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    443 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    444 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    445 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    446 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    447 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    448 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    449 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    450 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    451 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    452 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    453 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    454 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    455 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    456 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    457 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    458 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    459 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    460 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    461 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion

  • HT5278 Since updating my iPad 2 to IOS6 and activating my icloud for backup, my iPad has permanently locked. Message on screen is "iPad Not Backed Up". I click ok but no response. Cannot turn power off and cannot restore via my pc itunes. What are my opti

    Since updating my iPad 2 to IOS6 and activating my icloud for backup, my iPad has permanently locked. Message on screen is "iPad Not Backed Up". I click ok but no response. Cannot turn power off and cannot restore via my pc itunes. What are my options?

    Thanks to everyone who responded and related subject helped. Holding the home button and power button simultaneously for 10-15 seconds does unlock the screen. I can now use my ipad again. However, a futher problem has arisen since updating to IOS6 and activating icloud at same time, Although not sure if its related. The problem is that when connected to my PC the itunes message appears 'Cannot read ipad'. It instructs you to restore but keeps timing out after about 1 hour. This maybe internet issue but can't understand why itunes cannot read my ipad. May need to completely erase all content & reset. Or any other suggestions why this has happened?

  • I can see my Canon MP600 usb connected to Airport Express through Bonjour on my Windows XP. But, when installed by Bonjour, the printor time-out and can't print anything. Any idea what to do?

    I can see my Canon MP600 usb connected to Airport Express through Bonjour on my Windows XP. But, when installed by Bonjour, the printor time-out and can't print anything. Any idea what to do?

    Thanks for the quick reply.
    So am I correct in saying trying to utilise the Airport Express to access the printer over the network was a wasted effort due to the latest iOS? I had read up on the express before purchase and believed that was one of it's main purposes.
    Thanks again for the help.

  • My time Capsule is now 3 months in operation and now every day shutdown automatically and the power is completely off and my network is down. Any idea what is happening?

    My time Capsule is now 3 months in operation and now every day shutdown automatically and the power is completely off and my network is down. Any idea what is happening?

    The Time Capsule has a defective power supply and it needs to be exchanged as soon as possible. Soon, you will not be able to power it back up at all after it shuts down.
    Take the Time Capsule to an Apple Store, if you have one near you, or contact Apple Support to get the process started. 
    http://www.apple.com/support/contact/

  • Help with Spry form and Validation

    We have a form with shipping and billing information. When
    you fill out the billing and select same as billing radio button.
    Then it fills out the shipping fields properly using focus to make
    sure the spry validation recognizes the input. Everything on the
    form appears to be valid in Firefox Windows and Mac and Safari but
    the submit button does not work. Before we started we go the
    shipping fields to populate with the billing data the form
    submitted fine.
    On IE 7 the 1st Zip code fields shows the error messages and
    then only some of the hints show up in the spry validate fields
    below. This is only on IE. When you populate the shipping section
    in IE with the radio button in fills in everything but that
    shipping zip again on IE only. You actually have to manually type
    in the zip.
    Is this IE bug related to the form not submitting in the
    other browsers?
    I don't understand why the form in all the other browsers
    appears to have all fields validate but will not submit.
    I bet between three of us we have 60 hours in the stupid form
    and 2/3rds of it is not billable.
    On the other hand we need to finish this today!!. We will all
    be around at about 3 on Sunday. I am happy to pay someone to look
    at this and help us get through this last step.
    I wish there was some debug tool we could use to see what is
    going on. I look at the debug.js file in 6 in the meantime. I can
    be reached at 610-256-2843 and best email is [email protected]
    Help!!
    You can see all the by going to
    http://vv.dss-demo.com/
    then add something to your cart and go to checkout. you will
    get the form.

    Florin,
    Thanks for the response. We were looking for a way to remove
    the hints but did not see anything in the documentation.
    But I am still having issues.
    A. Not sure how you are not seeing the text &quot;Zip is
    required.Invalid format.&quot; in the grey area next to zip
    code fields. It is there on IE 6 and 7 4 different users with
    different computers see it.
    B. As soon as I add you code you suggested and comment out
    what we had it throws and error in IE and the debug says it is at
    the 1st instance of your method sprytextfield20.removeHint();
    Object does not support method.
    C. A new problem we did not notice last night on all browsers
    is that the form now does not respect the spry validations. It
    submits no matter what. I am using this to submit the form.
    &lt;input name=&quot;submit&quot;
    id=&quot;submit&quot; type=&quot;image&quot;
    src=&quot;images/complete_checkout.png&quot;
    onclick=&quot;document.forms['checkout_signup'].action='&lt;@appfilepath&gt;checkout_sign up.taf?_function=signup';document.forms['checkout_signup'].submit();&quot;
    /&gt;. We for sure don't want. It seems to have occured once we
    added the document.forms['checkout_signup'].submit(); in the 1st
    place but that without that the form would not submit even when
    everything appeared to be validated. So was adding
    document.forms['checkout_signup'].submit(); =seems to have just
    covered up another issue that is keeping the form from submitting.
    I still would like to have someone really look at this form
    with me and pay them if I have to. But it really does not seem that
    the path we are talking really works.
    I am going to roll this back to where it was till I can get
    some help.
    my guess at this point
    Hints have to go because if we fill down with fields that
    have hints then the hints become the values and are submitted. And
    it also breaks the spry validation.
    I would hope that the way we are rebuilding the zip and state
    fields would be possible with spry. It sure looks like it works. My
    hope is it is not causing the submit to not work.
    Anyway I still need help from someone who would be willing to
    take the time ort has the time to look over the page and al lthe
    logic we are using and see if there is a better way to do this
    even. This form is ending up costing me more time in non billed
    hours then the job itself. Yipes!!!
    As far as the HTML tags I will look at that again there are a
    bunch of includes build some of this page but I do see the
    beginning &lt;html&gt; seems to have been lost and I put it
    back in.
    D. I realize there is a fault with this method in the 1st
    place since it replaces the hints with values even if the value is
    the hint. Any suggestion on how to deal with that? are these hints
    more trouble then they are worth when used as field names. Should
    we just redisgn and use the field names in the 1st place?

  • Oracle Forms and Report.....After next WHAT in ORACLE

    Hye Everybody..
    I am looking for some body help for GOOD FUTURE IN ORACLE .i have 6+ exp in Oralce Forms and Reports.Now i want to upgrade my skills.So which is the BEST track/Way for me In ORACLE.Bcos i confused.What to do..SO please help me to build the future in ORACLE..
    Thank you For read my MSG...

    1 Ebusiness Suite /ERP. Learn AOL /Forms /Reports Customization
    2 Oracle Apex is similar to Forms/Reports and there is currently lot of conversion from Forms/Reports to Apex

Maybe you are looking for