How to Group Subfolders Immediately after Folder

When I open Documents (in list view) I find all subfolders listed with files (alphabetically). So if I am looking for a subfolder I need to scroll to find it (among all other files in Documents). Is there a way to group all Subfolders (immediately) after the Documents folder? And is there a way to show the subfolders so that they are not expanded? I have been through my Mac OS X for Dummies book and this Forum but I can not find an answer. Thanks.

Actually it will work in column view as of Leopard. Apple added this with Leopard: when you are in column view select "Show View Options" and you'll notice a new "Arrange By" option that lets you sort column view by Name, Kind, Size, Dates or Label. I don't use it much as I tend to forget to reset it and then get confused next time I open a window in column view and automatically look for something by name and don't see it....
Francine
Francine
Schwieder

Similar Messages

  • How to takes effect immediately, after change or cancel the last deploy

    If I deployed a software, but I found the program property was wrong, purpose is set to "required". A lot of client were pushed this software, so I change the purpose to "available".
    How to make all client take effect immediately?
    Environment: SCCM 2012 R2 with CU1

    I would re-create the deployment and use Right Click Tools for this
    http://www.nowmicro.com/rct/
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • How to disable button immediately after pressing

    Hi
    In my save button there is a code for insertion of data in database.
    In my application when i press save button first time the IE progress bar shows progress but if suppose the user presses the button again
    then the data wil get saved twice.
    Now if i put a code in button action method to disable it will function only when it will be called in between user can press the button.
    How to arrest users for clicking???
    If you have any idea please help me out.

    How about setting the button to:
    yourButton.setVisible(false);
    So when your button action is called, this is the first action that is called before your code insertion lines so the button will disappear when clicked e.g.
    public String yourButton_action {
    yourButton.setVisible(false);
    ....code insert data......
    return null;
    Or set the "return null" to return a new page.
    Of course, if you wanted it to be visible again after the insertion then you would set
    yourButton.setVisible(true);
    Alternatively, you could setup a counter that would check the number of times the button was pressed and make the button visible (or invisible!) when conditions are met.

  • How to retest JSP immediately after modifying a javabean class?

    I am modifying and recompiling a javabean, but the changes don't seem to be reflected when I run the JSP which uses that bean? Do you always have to restart the java server to reload the classes used in JSP pages?
    Thanks,
    David Frankel

    The immediate answer to your question is Yes. You must restart the web server in order for changed compiled classes. The "classes" that are able to be recompiled are those done by the webserver (jsp's).

  • How to communicate database immediately after portal signin

    I need to extract data from the database to show in the channels when i log-in into portal server.

    Create your own provider (using jdbc to query your data base), format your content and post into your channel created by amconsole. See Portal customization manual. http://docs.sun.com/app/docs/doc/817-7694 Jerry

  • How to disable button immediately after click?

    Hello,
    I'm using JDeveloper 11.1.1.4.0
    On my screen is an 'Add' button that calls specific method written in bean (addAction). Following are actions in addAction():
    1. Disable Add button
    2. Execute 'CreateInsert'
    3. adfContext.addPartialTarget(corresponding adf table)
    This works fine when user clicks on 'Add' and waits for couple of seconds, till the 'Add' button gets disabled
    However, if the user keeps on clicking 'Add' button, it sends multiple requests to server and adds those many records in 'adf table'.
    Is there any way to stop user input till the response is received for the previous request?
    I tried setting up 'blocking' property of the button. But it did not work.
    I also tried using 'unsecure' property of the button for disabled property and call setProperty('disabled',true) in javascript. In this case server request is not sent.
    Appreciate your help in this regard.
    Amar

    hi user,
    i cant undertud ur problem.. but i understud that something disabing the button.
    <af:commandButton text="Entry completed" id="cb23"
    binding="#{pageFlowScope.managedbean_GeneralLedger.cb23}"
    action="#{pageFlowScope.managedbean_GeneralLedger.cb23_action2}"
    disabled+="#{bindings.GlLvlAccounts1.estimatedRowCount eq 0 ? 'true' : 'false'}" // here whatever ur condition.
    partialSubmit="true"
    />
    af:command button disabled

  • I have 100 groups in planning for those 100 groups i want to build roles like interactive,view user,planner etc.for those how to change in export -import folder .xml file  in that edit  how  to change user roles in that xml it will generate automatic id.h

    I have 100 groups in planning for those 100 groups i want to build roles like interactive,view user,planner etc.for those how to change in export -import folder .xml file  in that edit  how  to change user roles in that xml it will generate automatic id.how to do that in xml file ?

    Thanks john for you are reply.
    I had tried what you sad.I open shared service in that foundation project i had export shared service.after that in import-export file.In that role.csv,user.csv,group.csv.Like this file have.When i open user file added some users after i trying save in excel it shown messgse
    I click yes and save the .csv file and import from share servie. i got error like this
    am i doing right way john.or explain clearly

  • I'm using a macbook pro, running snow leopard. Yesterday I got around to emptying my trash for the first time in quite awhile and was surprised by how much there seemed to be in there. Immediately after a question mark symbols appeared on all my hard disk

    I'm using a macbook pro, running snow leopard. Yesterday I got around to emptying my trash for the first time in quite awhile and was surprised by how much there seemed to be in there. Immediately after a question mark symbol appeared on all my hard disk folders. If I click on these question marks I get a message saying ' the item can't be found'.

    mpagan47 wrote: a question mark symbol appeared on all my hard disk folders.
    Not sure where these hard disk folders are located that you are referring to?  Finder, Finder tool bar, Finder side bar, Desktop, Dock? 
    More then likely they are  an alias that not longer point to the orginals,  thus the question mark.
    I would reboot.  Delete icons if an alias and just recreate by dragging from the source. Try right click (control) click to remove.

  • How to count files in a folder and subfolders of the folder.

    Hello everyone,
    I'm having a difficulty with countin files in a Regular folder and subfolders of the folder. I've tried to use SI_ANCESTOR  in a query; however, it gives me innacurate results.
    I used this hierarchy to create the code below, and it works to count all the files:
    Folder A ---> Folder B( subFolder of A)  -
    > Folder C(subFolder of B)  
    //get folder A
    IInfoObjects regFolders = infoStore.query ("SELECT * FROM CI_INFOOBJECTS WHERE SI_KIND='Folder' AND SI_PARENTID=0 AND SI_NAME!='User Folders' Order by SI_NAME");
    IFolder regFolder = (IFolder) regFolders.get(0);     
    //get files from Folder A     
    IInfoObjects rFiles = infoStore.query ("SELECT * FROM CI_INFOOBJECTS WHERE SI_PROGID !   = 'CrystalEnterprise.Folder'   AND SI_PARENTID=" + regFolder.getID() );
    ilesCount += rFiles.size();
    int subCntr=0;
    nt subCntr2=0;
      //get folder B      
    IInfoObjects rSubFolders = infoStore.query ("SELECT * FROM CI_INFOOBJECTS WHERE SI_PROGID = 'CrystalEnterprise.Folder' AND SI_PARENTID=" + regFolder.getID() );
    //get files from subFolders of Folder A
    while (subCntr < rSubFolders.size())
              IInfoObject subFolder=(IInfoObject)rSubFolders.get(subCntr);
              IInfoObjects subFiles = infoStore.query ("SELECT * FROM CI_INFOOBJECTS "
          + " WHERE SI_PROGID != 'CrystalEnterprise.Folder'" AND SI_PARENTID=" + subFolder.getID() );
             filesCount += subFiles.size();
             //get subFolders of Folder B                   
             IInfoObjects rSubFolders2 = infoStore.query ("SELECT * FROM CI_INFOOBJECTS WHERE SI_PROGID = 'CrystalEnterprise.Folder' AND SI_PARENTID=" + subFolder.getID() );
                         //get files from subFolders of Folder B
         while (subCntr2 < rSubFolders2.size())
              IInfoObject subFolder2=(IInfoObject)rSubFolders2.get(subCntr2);
              IInfoObjects subFiles2 = infoStore.query ("SELECT * FROM CI_INFOOBJECTS "
                   + " WHERE SI_PROGID != 'CrystalEnterprise.Folder'  AND SI_PARENTID=" + subFolder2.getID() );
                                               filesCount += subFiles2.size();
               subCntr2++;
              subCntr++;
    As you can see, the code is too complicated, and what if folder C has subFolder?
    I'm guessin maybe recursion would be one way to got, but I'm not really good with it, so I was wondering if anyone has any idea on how to go about doing it.
    Thank you,

    Hi,
    For detailed information, please refer to the BI 4.0 developers guide here.
    You can find the section "Setting up the development environment" in developers guide that have every single instruction to execute a java code specific to BI 4.0 environment.
    Also, here are the instructions for BO 3.1 environment:
    To configure a WAR file for a J2EE application that uses the BusinessObjects Enterprise XI 3.0 and 3.1 Java SDK, complete these steps:
    Create a lib folder in the WAR file's WEB-INF folder.
    Copy the Enterprise XI 3.0 or 3.1 Java SDK JAR files from the appropriate location below to the WAR file's WEB-INF\lib folder:
    Windows:
    ...\Program Files\Business Objects\common\4.0\java\lib
    UNIX:
    <businessobjects_root>/java/lib
    Copy the log4j.jar file from the appropriate location below to the WAR file's WEB-INF\lib folder:
    Windows:
    ...\Program Files\Business Objects\common\4.0\java\lib\external
    UNIX:
    <businessobjects_root>/java/lib/external
    Copy the entire crystalreportviewers12 folder from the appropriate location below to the WAR file's root folder.
    Windows:
    ...\Program Files\Business Objects\common\4.0
    UNIX:
    <businessobjects_root>/enterprise12/JavaSDK
    Open the web.xml file located in the WAR file's WEB-INF folder.
    Specify the location of the utility files used by the report viewers contained in the crystalreportviewers12 folder by inserting the following code below the <display-name> and <description> tags but within the <webapp> tag definition:
    <context-param>
    <param-name>crystal_image_uri</param-name>
    <param-value>/BOXIR3/crystalreportviewers12</param-value>
    </context-param>
    <servlet>
    <servlet-name>CrystalReportViewerServlet</servlet-name>
    <servlet-class>com.crystaldecisions.report.web.viewer.CrystalReportViewerServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>CrystalReportViewerServlet</servlet-name>
    <url-pattern>/CrystalReportViewerHandler</url-pattern>
    </servlet-mapping>
    Deploy the WAR file to the J2EE application server.
    You are now able to run an application using the BusinessObjects Enterprise XI 3.0 and 3.1 Java SDK on a J2EE web application server.
    Hope it helps.
    Regards,
    Anchal

  • How to add a dba group in Unix after Installation

    I need help in figuring out how to add a dba group, which one would do prior to installation, but how can one do it after installation?
    I need to have a group that will have people allowed to start and stop oracle. Is this possible to modify to do after installation?
    Please help... Thank you.

    Thanks for the advice. I am looking in my config.s file and this is what i see..
         .section     ".text",#alloc,#execinstr
    /* 0x0000     7 */          .file     "x.c"
         .section     ".data",#alloc,#write
    /* 0x0000     9 */          .global     ss_dba_grp
    /* 0x0000     10 */          .align     8
         .global ss_dba_grp
    ss_dba_grp:
    /* 0x0000     17 */          .align     8
    /* 0x0000     18 */          .xword     (.L12+0)
    /* 0x0004     24 */          .align     8
    /* 0x0004     25 */          .xword     (.L13+0)
    /* 0x0008     26 */          .type     ss_dba_grp,#object
    /* 0x0008     27 */          .size     ss_dba_grp,16
         .section     ".rodata1",#alloc
    /* 0x0008     13 */          .align     8
    .L12:
    /* 0x0008     15 */          .ascii     "dba\0"
    /* 0x0014     20 */          .align     8
    .L13:
    /* 0x0014     22 */          .ascii     "dba\0"
    What should i change?

  • How to view the change immediately after a java file is modified without restarting server or redeploy?

              Hi All,
              How to view the change immediately after a java file that is used in jsp is modified
              without restarting server or redeploy?
              Moreover, it is better to keep the original session.
              Any suggestion is appreciated.
              Kammau
              

              Hi,
              In order to have a new version of a java class, the current classloader must be
              deleted and a new one created. This is what redeployment does. I believe that
              this is more of an issue with Sun's implementation of classloaders. You could
              ask BEA support (719.232.7878) and see if they have any plans to periodically
              check jar files to see if java class file timestamps and destroy and re-create
              classloaders on the fly.
              1) You will still have to accept the performance hit of destroying classloaders
              and creating new ones. There isn't any way around that.
              2) I would think you would want to have more explicit control in production and
              integration anyway.
              You can redeploy applications from the command line (script) file not just the
              console.
              Hope this helps,
              pat
              "Kammau" <[email protected]> wrote:
              >
              >Hi All,
              >How to view the change immediately after a java file that is used in
              >jsp is modified
              >without restarting server or redeploy?
              >Moreover, it is better to keep the original session.
              >Any suggestion is appreciated.
              >
              >Kammau
              

  • How do I stop Photoshop CC from exiting immediately after startup?

    Photoshop CC from exits immediately after startup. How do I stop this?

    Hi Ashutosh,
    Thank you for your reply.
    I have Photoshop CC installed on my PC and does not require  signing in. Do I need to install it on the Cloud?
    Regards,
    Francis

  • Is it possible to make is so that, immediately after I import a new clip into FCP, the file is automatically selected in the Event Library? (Similar to how After Effects and Premiere work).

    Is it possible to make is so that, immediately after I import a new clip into FCPX, the file is automatically selected in the Event Library? (Similar to how After Effects and Premiere work). Right now, after I import a new file, I have to then go searching for it amid all the other files in my project. It would be extremely helpful if the file I just imported was already highlighted and selected after import, making it instantly "locatable" and ready to go.

    Kryan73 wrote:
    …  after I import a new file, I have to then go searching for it amid all the other files…
    in a perfect world, you do know the recording date, and you simply scroll to that date.
    in a very perfect world, all your other imports are already tagged, so just have to create a smart list 'unrated' ...
    (I know those messy Events… a friend of mine constantly ignores my advice to check the time/date on his camera; on every battery swap, the cam creates a very erratic timestamp ... his actual recordings are listed as made in "2004" or in "2020" .... )

  • How can I set up a preferred printer so I don't have to pick the printer each and every time I print something out?  At the moment, even immediately after printing one thing, it prompts me to pick a printer, which is very time consuming.

    How can I set up a preferred printer so I don't have to pick the printer each and every time I print something out?  At the moment, even immediately after printing one thing, it prompts me to pick a printer, which is very time consuming.

    Compass Health Systems wrote:
    How can I set up a preferred printer so I don't have to pick the printer each and every time I print something out?  At the moment, even immediately after printing one thing, it prompts me to pick a printer, which is very time consuming.
    No, there is not setting for a default printer.The system scans for available airprint printers each time you print.

  • I am a proud owner of iphone5, iOS6.1.4, recently I am facing prob to connect it with Ford Figo. Its not that iphone is not connecting, its getting disconnecting immediately after connected. I hv tired other ph with car, its working fine, how 2 resolve ?

    I am a proud owner of iphone5, iOS6.1.4, recently I am facing prob to connect it with Ford Figo. Its not that iphone is not connecting, its getting disconnecting immediately after connected. I hv tired other ph with same car, its working fine, how 2 resolve ?

    Morning Indrajit Chatterjee,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at this article:
    iOS: Troubleshooting car stereo connections
    http://support.apple.com/kb/TS3581
    Best of luck,
    Mario

Maybe you are looking for

  • Odd Windows/iTune Behavior

    Help!!!! When I plug my newly purchased 60GB ipod into both my XP SP2 laptop and dekstop my computer erradically freezes and itunes freezes. I checked the event logs and I notices this message. Event Type: Warning Event Source: PlugPlayManager Event

  • Can't download Photoshop Elements 10 upgrade

    I have a brand new Windows 7 computer with 4GB RAM. Firefox is my browser. I purhcased the downloadable upgrade for Photoshop Elements 10 on the Adobe web site. When I clicked on the Akami Download Manager to download the product, I saw a flashing bo

  • Migration Assistant between two MacBook Pros, both running 10.9.2

    I need to migrate specific apps and data from one MacBook Pro (2.6 GHz Core 2 Duo) to another (2.5 GHz Core 2 Duo), but I don't want to migrate the entire system and all data -- largely because the "Source" HD is 1TB, and the "Destination" HD is 320G

  • Problem using * in a query

    I'm trying to execute this query: SELECT TO_CHAR(entered_date, 'DD Mon YYYY HH24:MI:SS') as ftime, * FROM messages I can run the TO_CHAR function alone, but when I combine it with * as above, I get an error: FROM keyword not found where expected Is t

  • MS SQL Server Migration to Oracle on Unix

    I've notice previous questions regarding this type of migration. I am planning and preparing to perform such a migration. Has anyone actually completed this type of migration successfully? If so, did all MS SQL Server objects including stored procedu