How to search a volume and display results by size?

I want to search a specific volume on my computer, not the entire computer, find all files above a certain size, and display those results sorted according to filesize.
I found Martin Pace's trick for getting the Finder to add the current folder to the search location bar. I can set the search criteria to find all files that are, say, greater than 75 MB in filesize, and they're listed in the search results, but then...aaaccckkk!!!, when I type Command-J to bring up the View Options window and add a "Size" column, the "Size" criterion is grayed out.
Perhaps I'm missing something. Can anyone tell me how to add the "Size" column to the search window?
Thanks!

Start with http://discussions.apple.com/thread.jspa?messageID=12737942 and then see my posts at http://discussions.apple.com/message.jspa?messageID=12542741

Similar Messages

  • How to disable 'Enable JavaScript' and 'Display PDF in browser' in Adobe Reader 9.1 msi?

    I'd like to how to disable 'Enable JavaScript' and 'Display PDF in browser' in Adobe Reader 9.1 msi.
    Any help would be appreciated.

    NeoChang:
    You can modify the installation package using the Adobe Customization Wizard to toggle the "Display PDF in Browser" but I have not found a setting to disable JavaScript from the Wizard. I have created a script which makes the changes, but it has to be run for every user since that info is stored in the User hive of the Windows registry.
    Disable JavaScript:
    REG ADD "HKCU\SOFTWARE\Adobe\Acrobat Reader\9.0\JSPrefs" /v bEnableJS /d 0 /t REG_DWORD /f
    Disable Browser Integration:
    REG ADD "HKCU\Software\Adobe\Acrobat Reader\9.0\Originals" /v bBrowserIntegration /d 0 /t REG_DWORD /f
    Michael
    ~Simplicity of Character is a Natural Result of Profound Thought~

  • [Spotlight] searching on a remote Volume and printing results

    Morning.
    I want to search on /Volumes/Server$ for all files with the extension .tex created after 2008-30-04 and print the results in a list containing the full paths of all items.
    How can I do that?
    TIA and kind regards, Friedrich

    Hi glsmith, I had been playing around with that sort of command (among many other approaches) to get a find by size, and then the files sorted in order by size, since you can no longer do that thing with Spotlight. Anyway, while had done a pipe to sort, and had also fooled around with various approaches to get a text file output, I had not used xargs (because I know nothing about it, except some commands I have copied from here and there use it). So I was curious about your command, and tried this:
    NoobiX:~ francine$ mdfind -0 -onlyin ~ 'kMDItemFSSize > 209715200' | xargs -0 ls -l | sort -n > ~/Desktop/Greatersearch.txt
    Works fine. But I'm curious about the "-0" option. What is it for? Is it to get a decent text formatting scheme?
    Francine
    Francine
    Schwieder

  • How to join two lists and display the results in datasheet view.?

    hello,
    i have two lists that i would like to join, i know a method that has been described  in the link below
    http://www.codeproject.com/Articles/194252/How-to-Link-Two-Lists-and-Create-a-Combined-Ciew-i
    however, here the data view is only limited to 30 rows and my resultant list is huge. I would like to know if there is a possibility to view the resultant list in a data sheet view ?

    I don't believe you can use the OOTB Datasheet view when joining lists. However, you should be able to increase your limit from 30 items to as many as you need (that doesn't trip the threshold set in Central Admin).
    Dimitri Ayrapetov (MCSE: SharePoint)

  • How to capture DB Errors and display as pop-up message

    Hi All,
    I am using Jdeveloper 11g Release 2 (11.1.2.3.0).
    In my AppModuleImpl.java, I defined a class to call PL/SQL procedure and exposed the same as Client interface. Pulled this method from data control on to a page a Button. The functionality is working fine.
    Can you suggest me, what is best way to achieve the below functionality.
    1. If there is any DB errors during PL/SQL procedure, how to catch and display the Errors / Warning in Pop-up message.
    2. How to display info message on successful completion in Pop-up.
    regards

    Hi,
    +1. If there is any DB errors during PL/SQL procedure, how to catch and display the Errors / Warning in Pop-up message.+
    Throw a custom exception that extends the JboException class.
    See:
    http://www.oracle.com/technetwork/issue-archive/2013/13-mar/o23adf-1897193.html
    http://jobinesh.blogspot.de/2011/03/customizing-business-components-error.html
    +2. How to display info message on successful completion in Pop-up.+
    Option 1.
    you can either return "true" or "false" from the method so that you can call
    OperationBinding plsqlOperationBinding = .... get access to themethod binding to invoke the PLSQL method call ....
    String result = plsqlOperationBinding.execute();
    if(result.equlasIgnoreCase("true"){
    RichPopup popup = ... get reference to popup defined on the page
    RichPopup.PopupHints hints = new RichPopup.PopupHints ();
    popup.show(hints);
    Option 2
    OperationBinding plsqlOperationBinding = .... get access to themethod binding to invoke the PLSQL method call ....
    plsqlOperationBinding.execute();
    if(plsqlOperationBinding.getErrors().size == 0){
    RichPopup popup = ... get reference to popup defined on the page
    RichPopup.PopupHints hints = new RichPopup.PopupHints ();
    popup.show(hints);
    Frank

  • Can anyone tell me how to click the sphere and display a messege???

    /* Goal: Want to create a bunch of spheres, and when a sphere is clicked:
    * 1) display a message in the textfield
    * 2) transform the position of the sphere to (0,0,0)
    * (if (0,0.0) is occupied by another sphere, move that sphere somewhere.
    * Achieved : create the spheres,can transform,rotate and zoome the spheres.
    * Problem: having trouble to click it and display text and change location (problem with picking)
    * Thanks!!!!!!
    public class node extends Applet{
    public static void main(String[] args){
    new MainFrame(new node(),1000,800);
    Sphere sphere;
    PickCanvas pc;
    TextField text;
    public void init(){
    setLayout(new BorderLayout());
    GraphicsConfiguration gc=
    SimpleUniverse.getPreferredConfiguration();
    Canvas3D cv=new Canvas3D(gc);
    add(cv,BorderLayout.CENTER);
    //add mouseListener
    //add mouseListener for click
    cv.addMouseListener(new MouseAdapter(){
    public void mouseClicked
    (java.awt.event.MouseEvent mouseEvent){
    pick(mouseEvent);
    //create textfield down below
    text=new TextField();
    add(text,BorderLayout.SOUTH);
    BranchGroup bg=createSceneGraph(cv);
    bg.compile();
    SimpleUniverse su= new SimpleUniverse(cv);
    su.getViewingPlatform().setNominalViewingTransform();
    su.addBranchGraph(bg);
    private BranchGroup createSceneGraph(Canvas3D cv){
         BranchGroup root= new BranchGroup();
    TransformGroup spin= new TransformGroup();
    spin.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
    spin.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
    root.addChild(spin);
    //appearance
    Appearance ap=new Appearance();
              ap.setMaterial(new Material());
              //create ten spheres
              for(int i=0;i<10;i++){
                   double x=0.1*i;
                   double y=-0.05*i;
                   //<transform sphere>
                   Transform3D tr=new Transform3D();
                   tr.setTranslation(new Vector3d(x,y,0));
                   tr.setScale(0.03);
                   //<transform sphere>
                   //<objects>
                   sphere=new Sphere();
                   sphere.setAppearance(ap);
                   TransformGroup Tg= new TransformGroup(tr);
                   Tg.addChild(sphere);
                   spin.addChild(Tg);
                   //<objects>
              //rotation
    MouseRotate rotator=new MouseRotate(spin);
    BoundingSphere bounds= new BoundingSphere();
    rotator.setSchedulingBounds(bounds);
    spin.addChild(rotator);
    //translation
    MouseTranslate translator=new MouseTranslate(spin);
    translator.setSchedulingBounds(bounds);
    spin.addChild(translator);
    //zoom
    MouseZoom zoom=new MouseZoom(spin);
    zoom.setSchedulingBounds(bounds);
    spin.addChild(zoom);
              // <picking>
              BranchGroup bg=new BranchGroup();
    spin.addChild(bg);
    pc=new PickCanvas(cv,bg);
    pc.setTolerance(5);
    pc.setMode(PickTool.GEOMETRY_INTERSECT_INFO);
    //</picking>
    // <background and light>
              BoundingSphere bound=new BoundingSphere();
              Background background=new Background(1.0f,1.0f,1.0f);
              background.setApplicationBounds(bound);
              root.addChild(background);
              AmbientLight light=new AmbientLight(true, new Color3f(Color.cyan));
              light.setInfluencingBounds(bound);
              root.addChild(light);
              PointLight ptlight=new PointLight(new Color3f(Color.green),
                        new Point3f(3f,3f,3f),new Point3f(1f,0f,0f));
              ptlight.setInfluencingBounds(bound);
              root.addChild(ptlight);
              PointLight ptlight2=new PointLight(new Color3f(Color.yellow),
                        new Point3f(3f,3f,3f),new Point3f(1f,0f,0f));
              ptlight2.setInfluencingBounds(bound);
              root.addChild(ptlight2);
         // </background and light>
    return root;
    //mouse event
    public void pick(MouseEvent mouseEvent){
    pc.setShapeLocation(mouseEvent);
    PickResult[] results= pc.pickAll();
    //when a sphere is clicked, display Node #
    for(int i=0;(results !=null) && (i<results.length);i++){
    PickIntersection inter= results.getIntersection(0);
    int[] ind=inter.getPrimitiveCoordinateIndices();
    text.setText("Node"+ind[0]);
    //When a sphere is clicked, i want to change its position
    //how to relocate the clicked sphere to position (0,0,0)?
    //(if there is a sphere already in(0,0,0),change that sphere to
    //somewhere else)
    (I import this )
    import javax.media.j3d.AmbientLight;
    import javax.media.j3d.Appearance;
    import javax.media.j3d.Background;
    import javax.media.j3d.BoundingSphere;
    import javax.media.j3d.BranchGroup;
    import javax.media.j3d.Canvas3D;
    import javax.media.j3d.Material;
    import javax.media.j3d.PointAttributes;
    import javax.media.j3d.PointLight;
    import javax.media.j3d.Shape3D;
    import javax.media.j3d.Transform3D;
    import javax.media.j3d.TransformGroup;
    import com.sun.j3d.utils.behaviors.mouse.*;
    import com.sun.j3d.utils.picking.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.media.j3d.*;
    import com.sun.j3d.utils.universe.*;
    import com.sun.j3d.utils.geometry.*;
    import java.applet.*;
    import com.sun.j3d.utils.applet.MainFrame;
    import javax.vecmath.*;

    never mind. I got it to work.

  • How to Search strings with and without quotes

    Hello,
    I need to search a string with quote and without quote the same way
    Ex: Wendy's
    If user enters wendys without ' also need to return all the Wendy's..!
    I appreciate any help...!
    Thanks
    RG

    Hi,
    RG wrote:
    Hello,
    I need to search a string with quote and without quote the same way
    Ex: Wendy's
    If user enters wendys without ' also need to return all the Wendy's..!
    I appreciate any help...!So you want to ignore single-quotes, is that it?
    Here's one way:
    INSTR ( REPLACE (big_string,       '''')
          , REPLACE (substring_sought, '''')
          )  > 0 
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all the tables involved, and the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say what version of Oracle you're using (e.g. 11.2.0.2.0).
    See the forum FAQ {message:id=9360002}

  • Execute Package and Display Results

    Hi Everyone,
    Just starting to use packages. I've successfully compiled the package below.
    Can someone please show me how to execute it and display the results with SQL Developer?
    Thank You in Advance for Your Help,
    Lou
    create or replace
    PACKAGE pkg_Search
    AS
    TYPE CUSTOM_REF_CURSOR IS REF CURSOR;
    PROCEDURE My_Procedure (
    arg_Cursor IN OUT CUSTOM_REF_CURSOR);
    END;
    create or replace
    PACKAGE BODY pkg_Search
    AS
    PROCEDURE My_Procedure (
    arg_Cursor IN OUT CUSTOM_REF_CURSOR)
    IS
    BEGIN
    OPEN arg_Cursor FOR
    SELECT sysdate FROM DUAL;
    END;
    END;

    SQL Developer can't display the result of this particular package. I assume that what you want to see is the result set from the REF CURSOR that you have as an OUT parameter. However, you can do this with SQL*Plus - here is a script:
    VARIABLE my_cursor REFCURSOR;
    BEGIN
      pkg_search.my_procedure(:my_cursor);
    END;
    PRINT my_cursor;
    exit

  • How to read list item and display Title and on click hyperlink as value by javascript /jquery

    on newform.aspx just above the top of cancel button I want to put 1 hyperlink "Help"
    but I want to do this by script/jquery by reading my configuration list where 1 column is TITLE and other is- URL
    in TITLE column will write "Help" and in URL column  I will write
    http://portal1234/sites/sudha/MyHelppage.aspx
    so script should read Title and display Help--->1st part
    Script should read Value column and on click of help-(display link) the respective url should be open in new window.-->second part
    Please let me know reference code for adding anchor tag dynamically by reading from list
    I can see hyperlink near cancel button-
    $(document).ready(function(){
    var HelpLinkhtml ='<a href="#" text="Help">Help</a>';
    var position =$("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkhtml);
    now for reading from list I am trying below script-
    $(document).ready(function() {
        GetHelpLinkFromConfigList();
    function GetHelpLinkFromConfigList()
     //The Web Service method we are calling, to read list items we use 'GetListItems'
     var method = "GetListItems";
     //The display name of the list we are reading data from
     var list = "configurationList";
     //We need to identify the fields we want to return. In this instance, we want the Title,Value fields
     //from the Configuration List. You can see here that we are using the internal field names.
     var fieldsToRead = "<ViewFields>"+"<FieldRef Name='Title' />"+"<FieldRef Name='Value' />"+"</ViewFields>";
     //comment
     var query = "<Query>" +
                            "<Where>" +
                                "<Neq>" +
                                    "<FieldRef Name='Title'/><Value Type='Text'>Help</Value>"
    +
                                "</Neq>" +
                            "</Where>" +
                            "<OrderBy>" +
                                "<FieldRef Name='Title'/>" +
                            "</OrderBy>" +
                        "</Query>";
     $().SPServices(
     operation: method,
        async: false,
        listName: list,
        CAMLViewFields: fieldsToRead,
        CAMLQuery: query,
        completefunc: function (xData, Status) {
        $(xData.responseXML).SPFilterNode("z:row").each(function() {
        var displayname = ($(this).attr("ows_Title"));
        var UrlValue = ($(this).attr("ows_Value")).split(",")[0];
        AddRowToSharepointTable(displayname,UrlValue)
    function AddRowToSharepointTable(displayname,UrlValue)
        $("#NDRTable").append("<tr align='Middle'>" +
                                    "<td><a href='" +UrlValue+ "'>+displayname+</a></td>"
    +
                                   "</tr>");
    <table id="NDRTable"></table>
    Thanks :)
    sudhanshu sharma Do good and cast it into river :)

    Hi,
    From your description, you want to add a help link(read data from other list) into new form page.
    The following code for your reference:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    ExecuteOrDelayUntilScriptLoaded(AddHelpLink, "sp.js");
    function AddHelpLink() {
    var context = new SP.ClientContext.get_current();
    var list= context.get_web().get_lists().getByTitle("configurationList");
    var camlQuery= new SP.CamlQuery();
    camlQuery.set_viewXml("<View><Query><Where><Eq><FieldRef Name='Title'/><Value Type='Text'>Help</Value></Eq></Where></Query></View>");
    this.listItems = list.getItems(camlQuery);
    context.load(this.listItems,'Include(Title,URL)');
    context.executeQueryAsync(function(){
    var ListEnumerator = listItems.getEnumerator();
    while(ListEnumerator.moveNext())
    var currentItem = ListEnumerator.get_current();
    var title=currentItem.get_item("Title");
    var url=currentItem.get_item("URL").get_url();
    var HelpLinkhtml ='<a href="'+url+'">'+title+'</a>';
    $("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkhtml);
    },function(sender,args){
    alert(args.get_message());
    </script>
    Result:
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Adding Colume in the Table and display result in it.

    Hi Guru's ,
    I have a requirement to add column in existing Table. and Display the result after calculation.
    Thanks,
    Rutu

    Hi,
    Please used this code snippet for reference:
    OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean);
    OAViewObject vo = (OAViewObject)am.findViewObject("<VO Name>"); // Give VO Name attached to the Table Region.
    if (vo != null)
    vo.addDynamicAttribute("<Att_Name>"); //Adding ViewAttribute to VO
    vo.reset();
    vo.next();
    //Do calculation that you want
    //Setting the calculated value in the created VO Attribute
    vo.getCurrentRow().setAttribute("<Att_Name>", <Value to assign>);
    I hope this will gives you a proper Help.
    Please feel free to ask if any more Question
    Thanks,
    Shrikant

  • Search yields right AND wrong results

    Hi all,
    I've looked around for an answer to this, but so far nothing. Can you help?
    When I type in a search term in iTunes (Library: music; Search: all), I get all the correct results, but I also get results that I shouldn't as well. I thought it had to do with the words found in the album's Description field (in this case, it's a podcast), but I deleted the Description (which did contain the search term/s), and yet they still show up in the search results -- as if the podcast is somehow imprinted with the words I deleted, though I cannot find them elsewhere. (These terms do not show up in the podcast's "Show Description" either.)
    Does this make sense?
    Any ideas?
    Thanks,
    Rich
    [email protected]

    Hi - Thanks! I checked the Show Description (using Control, aka right-click) but did not see any terms that would cause the podcast to show up in search results. I've already deleted any text in the Description field (Get Info). Still perplexed.

  • Invoke BPEL process and display result in BAM chart?

    Hi,
    I was wondering if there is any way to invoke a BPEL process and display the result back in BAM chart (Active Studio).
    I have in mind the Actionable Reports and getting the BPEl process populate the BAM Data Object to show the result back. Let me know if there's anything to connect these ideas to do the whole thing.
    The reason for this requirement is to have a single User Interface for having BAM charts and a query operation (synchronous BPEL process).
    Any inputs are welcome.
    Thanks in advance.
    Vikas

    Yes, this can be done with the help of Alert and setting up a external Action.
    Please refer the following document for more details.
    http://www.oracle.com/technology/products/integration/bam/10.1.3/TechNotes/TechNote_BAM_CallingExternal_WebServices.pdf
    regards
    Laj

  • How to merge multiple PDFs and display in a new window

    Hi,
    I'm trying to merge multiple PDFs into one PDF and display the output in a new window using PeopleCode. I have a button on a page, which when clicked should open a new window with the merged PDFs. I am able to succussfully merge the PDFs using the PDFmerger class (mergePDFs) but unable to display the result in a new window.
    Please help.

    Thanks.
    I also found this piece of code very helpful.
    Local PSXP_RPTDEFNMANAGER:Utility &oUtil;
    Local boolean &bRtn;
    /* send the output to client */
    /* &sFileName = the file path /file_name.extension */
    &oUtil = create PSXP_RPTDEFNMANAGER:Utility();
    &bRtn = &oUtil.zipAndViewAttachment(&sFileName);
    Edited by: user8260115 on Sep 9, 2009 4:57 PM

  • How to parse html for and display hyperlinks?

    I'm trying to design a report that has a text field that contains html formatted text and includes links. These links need to be clickable in a thick client Java application I'm developing and the only way I can see in Crystal Developer to make a clickable link is to have a discrete text element with a hyperlink (set using the hyperlink tab in the element properties) for each link.
    The problem I have is that there can be any number of links in the html and I need a scalable way to extract and display these links.
    So far I have used formulas in Crystal Developer to parse the html and extracte the links into a fixed size array and then display each link in a separate text element. I would like to be able to have only one 'link' text element in the report design and create as many link elements as required depending on how many links are present in the html.
    How is this possible? With some funky grouping voodoo maybe, or something else? Please help me achieve this.
    Cheers,
    Elliot.

    Hi Elliot,
    Follow these steps, and check the output.
    1.Right click on the field object and select "Format Editor".
    2.Click on the "Paragraph" tab and select the "Text interpretation" as "RTF Text" or "HTML Text".
    3.Click on "Ok" button.
    Hope this helps.

  • Run Transaction from wda and display results

    Hello,
    If it is possible to run SAP transaction(f.e.ME2L) and the result (ALVreport) display in wda window?
    Regards,
    Natalia.

    Hi,
    Check this forum thread regarding calling transaction from WD4A.
    Re: Calling a transaction code
    Thanks
    Suman

Maybe you are looking for