Using Custom Folder with 'New Folder' commands

I have created customized folders that I use all of the time but I was wondering if there is some way to attach my custom generic folder to the "new folder' comand such that when I right-click and select 'new folder' it will be my design that is created.  Thanks.

Baltwo,
Thanks for the response.  I apologise for my delayed response but 'discussions' were down when I first attempted to respond and then, well, ...
But, the "use as defaults' button does not mean use this folder design as the default folder.  When I right-click and select 'new folder' it still comes up with the default system 'untitled' folder.  I suspect I need to somehow replace this folder with my design in the system library.

Similar Messages

  • Create feature for generate new collection having separate content database by using custom coding with C#

    Hi all My self ArunDarly .Iam using share point 2010 ,I want below task solve by  using custom coding with
    C#
    I have one task that create new site collection having separate content database. and that content database site collection limit  should be only one  (it must contain one site collection and note more than one  )
    This total functionality should happen when I am saving one list item (dynamically generate new site collection ) 
    If any body know this Please give me your guidance  
    Thanking  You,
    Arun Darly

    Hey Arun,
    I have done the same job. Hope this code will help you.
    using (SPSite siteCollectionOuter = new SPSite("Any SC url in which u want to create site."))
    SPWebApplication webApp = siteCollectionOuter.WebApplication;
    SPSiteCollection siteCollection = webApp.Sites;
    SPContentDatabase contentDatabase =
    siteCollection.WebApplication.ContentDatabases.Add(ServerName, New Database Name, Admin Name,
    "Admin Password",25,50, 0);
    //Above line will create new content DB
    contentDatabase.Update();
    siteCollection.WebApplication.Update();
    SPSite newSite = contentDatabase.Sites.Add("New SC Url", "SC Title", SC Desctipyion, 1033,
    15, "STS#0", "SC Admin", "Admin", "admin password",
    "User 2", "User NAme", "Password");
    //Ablove line will create new SC in to the Content DB
    //add the upper limit for the site collection
    SPQuota quota;
    quota = new SPQuota {StorageMaximumLevel = 2510220};
    newSite.Quota = quota;
    // And update the site collection and the content database
    newSite.RootWeb.Update();
    contentDatabase.Update();

  • How to select "ISO A" (auto) using Custom Controls with lever assigned to ISO change?

    On 7D Mark II with firmware 1.0.4, I have used Custom Controls to assign ISO change to the lever.  However, it is not possible to change ISO to "ISO A" (auto).  How to select "ISO A" (auto) using Custom Controls with lever assigned to ISO change? 

    Follow Up:
    Ok so ive changed things up a bit and have had some more success.
    I have used a Switch statement in my For loop to perform different actions based on the item selected.
    The code looks like this:
    Workbook.Content.Table1.Row3.AppropriationDetails.Row4.Cell1::change - (JavaScript, client)
    var fFrom = xfa.resolveNodes("Workbook.Content.Table1.Row3.AppropriationDetails[*] .Row4.Cell1");
    var fTo = xfa.resolveNodes("Workbook.Content.Table2.Row3.AppropriationDetails[* ].Row4.Cell1");
    for (var i=0; i <= fFrom.length-1; i++) {
         switch (fFrom.item(i).rawValue)
         case "Option 3":
         fTo.item(i).rawValue = "Enter the details in the field below";
         break;
         default:
         fTo.item(i).rawValue = fFrom.item(i).boundItem(xfa.event.newText);
         break;
    This code solves my problem but has thrown up a new issue:
    When i select Option 1 or 2 from the dropdown list  the change in the text field is instantaneous, however if I select Option 3 it wont appear in the text field until I either select Option 3 a second time or select another item. Its as if the text field is a selction behind what I have enterd in the dropdown list.
    Any thoughts?

  • How to use facebook  + skype with new Ipad? it needs flash player it seems...

    how to use facebook + skype with new Ipad? it needs flash player it seems...

    get the facebook and skype apps from the app store and there is no need flash.

  • How to use track effects with new version of GarageBand

    In the version of GarageBand before this one, you could access different effects that you could manage and apply to the different tracks.  Each track had an area containing its set of effects that were either activated or deactivated.  With this removed, i am not sure how to add those same kind of effects.  I am aware of the new nobs that are provided in order to mix and edit trebles, bass, mid, etc., but i want to be able to add different effects such as voice transformer, flanger, chorus, speech enhancer, bit crusher, bass amp, track echo, track reverb, amplifier, etc.  I desperately need help finding out how to do this, as this was a major part of my mixing and producing with GarageBand, and without these given effects, i do not feel as comfortable using GarageBand.

    zachseiden wrote:
    How to use track effects with new version of GarageBand
    this may help:
    http://www.bulletsandbones.com/GB/GBFAQ.html#replacemissingtrackeffectsgbv10
    This FAQ entry offers a Minute GarageBand video tutorial
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Unknown namespace prefix Error - when using custom Aliases with RDF aliases

    I am getting unknown namespace prefix error when I use custome SEM_ALIAS with rdf SEM_ALIAS. It seems once you specify custom SEM_ALIAS, the default rdf alias is not recognized. Following are the details of queries
    I have a sem_Model "test" which has "event" as a class and "Merger" as a sub-class of event, with "acquiringorg" as a property having the domain "org". "Org" is also defined as a class with the literal attribute "hasname". I have added one instance of "merger" class with appropriate values for "acquiringorg" property. There is one instance or "Org" as well for reference in the instance above.
    the following query(return all objects having property "acquiringorg" and its .e. "hasName" attribute for the object) runs fine and returns appropriate resultset
    select x event,z acquiringorg ,l acquireeorg from table(SEM_MATCH(
    '(?x Evnt:AcquiringOrg ?y)(?k orgn:hasName ?l)',
    SEM_MODELS('test'),
    null,
    SEM_ALIASES(SEM_ALIAS('Evnt','http://www.abc.com/Event/Merger/'),
    SEM_ALIAS('orgn','http://www.abc.com/Org/')),
    null));
    However when I want to add another criteria i.e. show me events of type merger(?x rdf:type :Merger) , the query fails with the "unknown namespace prefix error" as above
    select x event,z acquiringorg ,l acquireeorg from table(SEM_MATCH(
    '(?x rdf:type :Merger)(?x Evnt:AcquiringOrg ?y)(?k orgn:hasName ?l)',
    SEM_MODELS('test'),
    null,
    SEM_ALIASES(SEM_ALIAS('Evnt','http://www.abc.com/Event/Merger/'),
    SEM_ALIAS('orgn','http://www.abc.com/Org/')),
    null));
    specifying "rdf" ALIAS explicitly also does not work
    select x event,z acquiringorg ,l acquireeorg from table(SEM_MATCH(
    '(?x rdf:type :Merger)(?x Evnt:AcquiringOrg ?y)(?k orgn:hasName ?l)',
    SEM_MODELS('test'),
    null,
    SEM_ALIASES(_SEM_ALIAS('rdf', 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'),_
    SEM_ALIAS('Evnt','http://www.abc.com/Event/Merger/'),
    SEM_ALIAS('orgn','http://www.abc.com/Org/')),
    null));
    I am unable to figure out why default namespace i.e. rdf is returning this error
    Stuck at this point badly!!Any pointers would be useful!!

    Full error details are as below
    ORA-29532: Java call terminated by uncaught Java exception: oracle.spatial.rdf.server.ParseException: Unknown namespace prefix ''
    ORA-06512: at "MDSYS.RDF_MATCH_IMPL_T", line 153
    ORA-06512: at "MDSYS.RDF_MATCH_IMPL_T", line 842
    ORA-06512: at "MDSYS.RDF_MATCH_IMPL_T", line 235
    ORA-06512: at line 1
    29532. 00000 - "Java call terminated by uncaught Java exception: %s"
    *Cause:    A Java exception or error was signaled and could not be
    resolved by the Java code.
    *Action:   Modify Java code, if this behavior is not intended.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to Use Custom Linker with Xcode 4.x?

    I am using a customer compiler with Xcode and would like to know how to force Xcode to use my own linker line with custom arguments.
    I created a new compiler spec file under:
    /Developer/Library/Xcode/PrivatePlugIns/Xcode3Core.ideplugin/Contents/SharedSupp ort/Developer/Library/Xcode/Plug-ins
    The default linker is defined in Ld.spec located in:
    /Developer/Library/Xcode/PrivatePlugIns/Xcode3Core.ideplugin/Contents/SharedSupp ort/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources
    The following link seems to indicate that what I want to do is possible:
    http://maxao.free.fr/xcode-plugin-interface/compilers-linkers.html
    It seems like you have to create a custom Linker spec, give it an identifier, and then have the compiler spec reference your linker spec id by including it in the "RequiredLinker" key.
    My compiler spec looks like:
    {   Type = Compiler;
       Identifier = com.apple.compilers.armx;
       BasedOn = com.apple.compilers.gcc.4_2;
       Name = "ARMx";
       Version = "4.2";
       Description = "ARMx GCC Cross Compiler";
       ExecPath = "/Volumes/arm-x/bin/arm-none-linux-gnueabi-gcc";
       RequiredLinker = com.apple.pbx.linkers.armx;
    The problem is that Xcode 4.1 still is insisting on using the default Apple linker.  I want it to use my ARM based toolchain, which does not support some of the options that Xcode ends up passing on the linker line.

    You would be better off using a makefile-based project with custom compilers and linkers.

  • Using older servos with new controller

    My group has a three-axis stage controlled by an old Galil DMC-230
    motion control board, Galil ESA-10-75 amplifilers and three dc servo
    motors (from Galil too, I think).  The board is mounted in an
    ancient computer running DOS.  To make matters worse, the hard
    drive seems about to give out.  We would like to leave the stage
    and motors alone but replace the controller and amplifiers.  We
    are considering using an NI PCI-7344 controller with an NI MID-7604
    Motor Drive.
    My questions are:
    What are the main things to consider when matching a servo motor to a controller?
    Has anyone done anything similar (using older servos, but replacing controller and drive)?
    Should I just give up and beg the boss to buy new motors as well?
    Thanks for any advice!
    Telemaque

    Been there and almost done that. We have a legacy DOS Galil based (DMC-630 controllers with SSA-12/40 drives) system with brushed servos that is on it's last legs.
    Matching servo to drive amps- look at max currents, voltages, and inductances on the motors to see if drive can accomodate. Are they brushed or brushless motors. Also check if encoders and hall signals from existing motors and limits from stages compatible with new controller.
    Personally, I would suggest new motors since you may not know their history of (ab)use and depending on their ratings, may be a minor percentage of total retrofit cost. You may also want to have the stages sent out for refurbishment if time permits. They have probably seen a lot of use with little or no cleaning and lubrication. Mechanical wear also takes it's toll. On the system I mentioned above, we were experiencing loss of accuracy and repeatability- the lead screws and nuts were trashed.
    Just a couple ideas to start with.
    Good Luck
    AK2DM
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    "It’s the questions that drive us.”
    ~~~~~~~~~~~~~~~~~~~~~~~~~~

  • Using Custom Targets with Monaco Profiler??

    Does anyone know how to use custom RGB or CMYK profiling targets and import them into Monaco Profiler to build color profiles?
    I usually use Bill Atkinson's RGB targets and build RGB profiles with my driver using ProfileMaker, but want to build some profiles using Monaco Profiler. Monaco generates its own targets, but they are massive and use 3 to 4 times as much paper. For example, I can print Bill Atkinson's 1728 patch RGB target on one 11x17 sheet of paper. A 1728 patch target created from Monaco Profiler requires three 17x22 sheets of paper!  That's 6X the paper.  Besides, I already have saved measurement readings from MeasureTool for over 20 papers, and would like to avoid reprinting and remeasuring.  (This is for a Canon iPF6100 printer).
    I know this has been done before, but the targets have to be sequenced and reformatted properly so they will import into MP, and I don't know how to do it. Bill Atkinson has a script to do the conversion, but unfortunately it is Mac only, and I'm on a PC operating WinXP Pro.
    Thanks in advance,
    Lou

    I used to use Monaco, but have not for a few years now.  But, if I recall correctly, I thought you could trim the amount of swatch patches down if you wanted to in the user interface.  I used to use an xRite spectro and would read as many patches as possible ( the thinking was, the more the merrier ).  It seemed to be fairly easy to name and save the final .icc profile and then import it into Wasatch RIP in the calibration process.  But, when Monaco printed the patches, I remember they recommended all profiles and settings turned off in the RIP ( so, in theory, there were no adjustments made to the RAW prints which were then read by Monaco where it created an adjusted .icc profile which then could be used in the RIP ).  However, there was one profile made before the prints from Monaco and that was for Ti ( total ink ) which could then be setup in the RIP.  Not sure about the Canon, but I was profiling an HP 5500.  Once I was done with Monaco, the .icc profile I created via Monaco was then imported into the RIP where I could set my individual RGB and CMYK parameters.  I did many, many different variants in every conceivable scenario, but got the best results setting RGB and CMYK in the RIP which were based on the application color settings.
    But, I do not think it wise to use custom RGB's or CMYK's in the Monaco Profiler and am not sure you can.  This would defeat the purpose of doing a custom .icc print profile, in my thinking.  Perhaps I'm mistaken and you can apply custom RGB and CMYK profiles, then I would think you'd turn them off in the RIP.  Again, it's been a few years since I used Monaco, but I'm pretty sure they recommended not to use any profiles when printing the patches.

  • Use earlier iTunes with new Shuffle

    I have just ordered a new Shuffle on Amazon. Presumably it will include a version of iTunes 5 or 6 on the CD with it.
    I have got a pretty stable version 4.7 on the PC at the moment. What I am wondering is whether to stick with that in using the Shuffle. Assuming it worked.
    I don't buy music so would not actually need a more contemporary iTunes.I am wary about all the uninstalling and reinstalling shenanigans I read about here.
    Thanks in advance.

    I 100% agree. Owning nearly every product Apple makes, I am a HUGE fan of their engineering and thought process with products. However, did NO ONE ever actually go and exercise with the standard earbuds with mic or now with this control set??? The weight of the mic or the new shuffle control bar makes the cord bounce up and down as you run and jerk right out of your ear. Even with the foam earbud covers (not included) from the old school earbuds, the weight of the controls is still annoying. This to me does not seem like a 50/50 product design type thing where half people would like it and half wouldn't. They could have easily put the controls at the adaptor end, since it is designed for you not to have to look at it when you are using anyway. I hope the Klipsch or other third party earbuds think through this more.
    As an aside, it also really ***** that you cannot buy earbuds without a mic now AT ALL! You almost just need to be lucky and still have your old set before they started including a mic on everything. Very annoying.
    Anyone have any other earbuds they really like for jogging/working out that are supposed to be compatible with new shuffle in the future too?? I've tried the new apple earbuds also and these are kind of annoying from the fact that they try to block out all other sound.. which makes for a jarring sound while running. This is the same with the Shure's as well.

  • Using Aperture 3 with new (2011) iMac

    Currently I have been using Aperture 3 with my MBP. My library is on an external drive. When I bought my iMac, I hooked up my drive to that machine and then opened Aperture and I got a message that popped up saying something like my library was 32bit and the iMac is 64bit and I would have to convert my entire library over to be able to use AP3 on my iMac. Does this sound right. I remember it was something along those lines and I ended up not converting all my files and still use my MBP instead.

    How is your workflow set up? How are you moving the Aperture Library around? What OS X and what Aperture versions?
    After backup to an independent drive (stuff happens...) make sure all apps and the OS are current. Also read this regarding
    Switching Kernels:
    http://support.apple.com/kb/HT4287
    HTH
    -Allen

  • How can I use custom sizes with the hp deskjet 3050a

    Why can't I find a place to cusomize card stock sizes in my printer

    The driver that is used for the Deskjet 3050a does not support custom sizes. It has a pre-set of choices and this is all the driver supports.
    You may be able to use an alternate driver, such as the HP Deskjet 9800 driver, that supports using custom paper sizes. Check the thread located here for information on how to use an alternate driver.
    Hope this helps.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------
    I am not an HP employee.

  • Old computer dying want to use external drive with new laptop ........... HOW ??

    need to get laptop to run my iTunes library from old dying comp. Have a 500gb external drive but what do i do ??

    okay, i had to collect my thoughts for a moment
    ... but I don't have an internal library of music on this machine.
    is *this machine* the new Mac ?
    How do I set up iTunes to play from an external library for the first time?
    the files will have to be added to iTunes. however, with the correct settings, they can be put straight on the external.
    in order to set up iTunes on the new Mac, you will have to launch it. with the external drive mounted on your new Mac's desktop, go iTunes > preferences > advanced and point +iTunes media folder location+ to the external. this will cause iTunes to put all newly added content in that location.
    also on the advanced tab, check +keep iTunes media folder organized+ and +copy files to ... when adding to library+.
    And how do I add my backed up music from my previous iTunes to that external drive's new music library?
    did you back up the music to disk ? if so, you should probably authorize iTunes with your iTMS account details, then just pop in the disk(s) and add the content to your library.
    if you have backed up to an external HD, use the +add to library+ command from the file menu and navigate to the folder containing your media files.
    JGG
    edited by the Jolly Green Giant (where Green stands for environmentally friendly)

  • Can't use custom ClassLoader with ObjectInputStream

    Hi all,
    I want to transmit an object whose class is unknown to the receiver and whose class may not be loaded. Of course when the inputstream's readObject method tries to receive this class, it fails with a ClassNotFoundException. I have a custom FileClassLoader to dynamically load classes, this is tested and works.
    I can dynamically load this class and prove that the class was loaded by calling class.newInstance() from the loader.loadClass method. But then when I try to read that same class from the input stream, it says ClassNotFoundException!
    The code snippet looks like this:
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    FileClassLoader loader = new FileClassLoader(classFolder);
    Class L = loader.loadClass(className); // no .class at end
    System.out.println("New Instance "+L.newInstance().toString()); // works
    ObjectInputStream eventStream = ... // stream from a socket
    eventStream.readObject(); // throws class not found exception!
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    The only thing I can think is that the input stream only looks for classes loaded by the system classloader, could that be true? What other possibilities are there?
    If this is more appropriate for another forum just let me know and I'll post it there.
    Thanks in advance for any helpful hints anybody has!

    I was thinking of something along the lines of
    ObjectInputStream eventStream = (ObjectInputStream)Class.forName("java.io.ObjectInputStream", true, loader).newInstance();Of course, you would really have to get the proper Constructor for the class - and that just gets too long and stupid. Besides, I actually tried my suggestion, and it didn't work. I also tried setting the ContextClassLoader for the current thread (and creating a new thread with the ContextClassLoader set to "loader"). None of that works. Just setting the ContextClassLoader does not make the thread use it implicitly, it's apparently just a way to pass another ClassLoader to a thread, but it still needs to be used explicitly in a Class.forName call.
    I did, however, try David's suggestions of overriding resolveClass in ObjectInputStream. That worked fine! Here's what I created:
    import java.net.URLClassLoader;
    import java.io.InputStream;
    import java.io.IOException;
    import java.io.ObjectInputStream;
    import java.io.ObjectStreamClass;
    import java.io.StreamCorruptedException;
    public class MyObjectInputStream extends java.io.ObjectInputStream
        URLClassLoader myLoader = null;
        public MyObjectInputStream(URLClassLoader newLoader, InputStream theStream) throws IOException, StreamCorruptedException
            super(theStream);
            myLoader = newLoader;
        protected Class resolveClass(ObjectStreamClass osc) throws IOException, ClassNotFoundException
            System.out.println("Hey, I'm in my resolveClass");
            Class theClass = null;
            try
                theClass = Class.forName(osc.getName(), true, myLoader);
            catch (Exception e)
                System.err.println("An Error in my ResolveClass:");
                e.printStackTrace();
            return theClass;
    }You then just create your ObjectInputStream with
    ObjectInputStream eventStream = new MyObjectInputStream(loader, theSocket.getInputStream());

  • Can't use flash drive with new iMac

    We are new Mac users.  My husband downloaded a zip file of aviation charts.  He needs to transfer the zip file to a flash drive and then to a portable device so that he can use the charts when he flies.  We plugged in a flash drive, but it doesn't show up on the desktop or anywhere else.  We have looked everywhere on the system.  What are we doing wrong?  Thanks for your help!

    Make sure you have prefs set to show external storage devices on the Desktop and in the Sidebar. To set that, go to Finder's Preferences (Preferences in the Finder menu).
    On the General tab in Finder Preferences, checkmark the item "External disks" near the top.
    On the Sidebar tab in Finder Preferences, checkmark the item "External disks" under Devices.
    You may also need to format the drive before you can use it. You can use Disk Utility to do that (Applications folder > Utilities > Disk Utility).

Maybe you are looking for

  • Firewire not reading

    My fire wire just quit on me? It won't read my external hard drives My Hard drive works via usb but not 1394. Any help would be appreciated. Than you

  • Dynamic Columns in table /ALV

    Hi , I need to decide number of columns at run time out of fixed number of coulmn in  table. one way of doing it through ALV column hiding  but problem is what ever coloumns I hide programeticaly user can always to go ALV settings and unhide them and

  • ODI-14070: Import failed

    Hi All , I have one ODI procedure(xml file) which belongs to our deployment script. For the very first time,this procedure was made in ODI and since then it has been exported and kept in our deployment scripts .This procedure is used by a number of p

  • Not Bad, Creative. Not B

    I was just commenting on how great creative handled the RMA process, even though I had a ton of worries about it and all. They didn't give me a ton of problems and a new one is on its way in a pretty timely matter. Thanks Creative. I just thought I s

  • The great wall of Santa Monica (awful LTE speeds)

    LTE speeds in Santa Monica (90404) are awful:  .1mbps for the last several weeks.   When I drive in I often stream Pandora in my car and it works great... as soon as I get near Santa Monica it's useless.  It wasn't like this month ago?  Did the marke