Issue with New Document in a document library with multiple content types

Hi,
I have a created a custom list definition based on a document library. I added 3 content types in this list, one is a document set (lets call it DOCSET), the two others are content types inheriting from Document (DOCA and DOCB).
I deployed the list definition with a site scoped feature and the list instance with a web scoped feature. After activating the two features, the list is created and the content types are present in the list.
When I click in the New Document button and choose either the DOCA or DOCB content type, a Word document opens and the DOCA content type is always associated to this Word document.
With SharePoint Manager 2013 I saw that the template.dotx document was not in the Forms/DOCA or Forms/DOCB folder.
So I decided to remove all the content types from the list definition and add them by code with the ListAdded event receiver. I used list.ContentTypes.Add to add the content types to the list.
With this method the templates are correctly copied from the template.dotx in the RootFolder/Forms folder of my list. These templates have the rights content type id, but the New Document button still does not work properly.
So I looked at the Content Types inside my library and saw that the DocumentTemplateUrl linked to the RootFolder/Forms/template.dotx and not the RootFolder/Forms/DOCA/template.dotx or RootFolder/Forms/DOCB/template.dotx.
I debugged my code to look closer and see that right after the list.ContentTypes.Add, the DocumentTemplateUrl is correclty set but when my EventReceiver finishes, the DocumentTemplateUrl get back to the RootFolder/Forms/template.dotx.
Have you any idea why this is not working ?
Regards

Hi,
Per my understanding, there is an issue about the DOCA and DOCB content types which inherits from Document Content Type in your custom list definition.
By default, if there is a custom content type inherits the OOTB Document Content Type, it will also inherits the template.dotx file from the OOTB Document Content Type.
The template URL of a custom content type which inherits the OOTB Document Content Type:
If you want to specify different templates for different content types, the code demo below would be helpful:
http://www.learningsharepoint.com/2010/07/14/programmatically-create-a-new-content-type-in-sharepoint-2010/
Thanks
Patrick Liang
TechNet Community Support
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
[email protected]

Similar Messages

  • Managed metadata columns in document information panel with multiple content types

    Hi everyone,
    The problem I have is that for custom content types not all managed metadata columns are displayed in Document Information Panel (DIP) for the document in the Office client application. 
    However, everything works fine with 1 specific content type. Even though the others using exactly the same site columns. The content types are deployed using visual studio to the content type hub, and after this the content types are correctly published to
    the site collections, there are no publish issues here. 
    When I create a document based on the second content type in the same library, all fields are showed in the document information panel, except the managed metadata columns.
    Detailed explanation:
    Library: procedures
    Content types:
    - simple procedure (with 4 managed metadata fields and some other text fields)
    - procedure with approval (with the same 4 managed metadata fields and some other text fields)
    Scenario 1: I add the 'simple procedure' content type to the procedures library as only content type. Everything works fine, and all fields show correctly in the document information panel in Word.
    Scenario 2: I add the 'procedure with approval' content type to the procedures library as only content type. Everything works fine, and all fields show correctly in the document information panel in Word.
    Scenario 3: I add the 'simple procedure' and 'procedure with approval' content types to the document library procedures (added simple procedure first). When I create a new document based on the 'simple procedure'
    content type, everything works fine and he shows all metadata fields. When I add a new document based on the 'procedure with approval' content type, the document information panel shows correctly, except all managed metadata fields. These are not visible at
    all. Though they worked perfectly in scenario 1 and 2.
    Is this a known issue or is there a workaround for this? 
    Thanks in advance! 
    Kind regards, Davy

    Yes!
    This problem is solved right now.
    My issue was that I'm using custom content types deployed by Visual Studio in the content type hub. To create a managed metadata site column in visual studio, you need to have first of all your managed metadata field, but also a hidden field accompagnied
    to make the actual mapping like the example below:
    <Field ID="{B654D984-187A-471B-8738-F08F3356CFDA}"
    Type="TaxonomyFieldType"
    DisplayName="Countries"
    ShowField="Term1033"
    EnforceUniqueValues="FALSE"
    Group="Demo"
    StaticName="Countries"
    Name="Countries">
    <Customization>
    <ArrayOfProperty>
    <Property>
    <Name>TextField</Name>;
    <Value xmlns:q6="http://www.w3.org/2001/XMLSchema" p4:type="q6:string" xmlns:p4="http://www.w3.org/2001/XMLSchema-instance">{67308AC2-9556-456B-BF9E-43E8F23EBEE6}</Value>
    </Property>
    </ArrayOfProperty>
    </Customization>
    </Field>
    <Field Type="Note"
    DisplayName="Countries_0"
    StaticName="CountriesTaxHTField0"
    Name="CountriesTaxHTField0"
    ID="{67308AC2-9556-456B-BF9E-43E8F23EBEE6}"
    ShowInViewForms="FALSE"
    Required="FALSE"
    Hidden="TRUE"
    CanToggleHidden="TRUE"
    Group="Demo"
    RowOrdinal="0"
    />
    </Elements>
    VERY important here is that when you create your content type using visual studio, you not only have to add the managed metadata site column in your xml (which let the content type work already perfectly) but also add the hidden field to your content type
    xml !! This way, SharePoint knows that when you have multiple content types with the same site columns in the same library, the second content type also need to get the hidden field from this site columns like in the example below!
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <!-- Parent ContentType: Document (0x0101) -->;
    <ContentType ID="0x010100571ebc0f478a49d5a775039347ee1535"
    Name="Document Location"
    Group="Demo"
    Description="A content type containing Managed Metadata Column."
    Inherits="TRUE"
    Version="0">
    <FieldRefs>
    <FieldRef ID="{B654D984-187A-471B-8738-F08F3356CFDA}" Name="Countries"/>
    <FieldRef ID="{67308AC2-9556-456B-BF9E-43E8F23EBEE6}" Name="CountriesTaxHTField0"/>
    <FieldRef ID="{f3b0adf9-c1a2-4b02-920d-943fba4b3611}" Name="TaxCatchAll"/>
    <FieldRef ID="{8f6b6dd8-9357-4019-8172-966fcd502ed2}" Name="TaxCatchAllLabel"/>
    </FieldRefs>
    </ContentType>
    </Elements>
    I'm very happy I found this solution, because in the whole project i'm implementing, this was used a lot!
    Special thanks to the blog of @cann0nf0dder (http://cann0nf0dder.wordpress.com/2013/04/01/creating-a-site-column-with-managed-metadata) which let me think about this! 
    This ticket is answered now! :-)
    Kind regards,
    Davy

  • With Pages 5.2 how can i use multiple language types in a single document

    My Macbook Air Has the version 10.9.3
    I'm used to work with the old version of Page.
    But now I am using the new version of Pages 5.2 (1860).
    I want to know with the new version how do I use an multiple language types in a single document option.
    In the old  version of Pages I was using  Inspector -> Text -> "More" tab -> Language: British Inglese.
    In the new Pages 5.2 I do not know how to do it
    Could you help me?
    melo

    It's not possible to tag text with multiple languages in Pages 5.  Go back to Pages 4, which should still be in you iWork folder.
    For the whole doc in Pages 5, use Edit > Spellling and Grammar > Show Spelling and Grammar.

  • TS3899 Cannot send email with new iPad air.  Works fine with old iPad and iPhone.

    Cannot send email with new iPad air.  Works fine with old iPad and iPhone.  I have deleted account and reinstalled.

    Thanks.  I got the problem fixed.  Spent time with the Apple folks and was kicked up to a senior advisor.  It seems the problem was with my internet provider - Tmie Warner.  Remember I could use the old ipad and the iphone to send mail.  I checked all the specifics between the three units.  It seems that TW is changing over from the RR.com  to TWC.com.  Since the new ipad air was just set up, it fell under the new TWC mail specifics. 

  • Is it ok to leave my old photos in Aperature and start with new photos in Lightroom?  MacPro with 2 x 2.26 Ghz Quad-Core Intel Xeon processor, 6 GB memory, 1 TB harddrive.

    Is it ok to leave my old photos in Aperature and start with new photos in Lightroom?  MacPro with 2 x 2.26 Ghz Quad-Core Intel Xeon processor, 6 GB memory, 1 TB harddrive?
    Or should I transfer them to Lightroom?

    That's really a personal preference. Support for Aperture is coming to an
    end and you may find yourself unable to get to theses photos in the future
    in the case of a HDD crash if you can't get the software to reinstall.
    Faced with that prospect, I would probably put it on my list of things to
    do when I am feeling really bored and looking for something to amuse myself
    with. You can export your Aperture photos in their original format to a
    folder on your desktop and then import them into Lightroom. Use the copy
    option on the import to save the photos in a new folder within your
    Lightroom catalog.

  • I cant sync iCal from my MacBook Pro to my iphone4 with new iphone (sync it's ok with contact list)

    I cant sync iCal from my MacBook Pro to my iphone4 with new iphone (sync it's ok with contact list, ....)

    Hey Charles
    Thanks for your reply. Unfurtunately is didnt work. I did follow the part with reseting Isync and so on... But it still doent sync my Iphone info to the Icalender. The problem is that if I reset/restore my Iphone
    I´ll loose a lot of important appointments and phone numbers. Can I restore it and the use the backup from Itunes - and will this fix the problem?
    Thank you for your help!
    Mikkel

  • HT5037 I keep getting this message despite already upgrading on my new Mac.To open your library with this version of iPhoto, it first needs to be prepared.

    I just purchased a new Mac OS x 10.9.1.
    I'm trying to move over files from Passport which was my backup for my old Mac.   Not all my photos transported over.  I'm missing about 3 years worth.   I followed the instructions for the iphoto 11 upgrader for the library,  download, utility etc.  But no go.
    Now Iphoto -- the app -- wont open at all without thisk pop up:
    To open your library with this version of iPhoto, it first needs to be prepared
    To prepare the library, use the iPhoto Library Upgrader available from Apple.

    But
    Then you do not have an iPhoto library - it is not possible to move "some" of an iPhoto library - it is a single entity and must be treates as such
    Exactly how step by step did you do this?
    I was able to move virtually all my photos and "events" prior to 2010.
    I did create a copy of my old iPhoto library from the Passport drive on the desktop but that to gives me the "to open..."message when I tried to open it.
    So run the library upgrader (applications folder ==> utilities) against tha tlibrary and then open it using iPhoto 9.5.x
    LN

  • Ahhh! New iPod, setting up another library with my old iPod!

    So, I got a new iPod5 to replace my old iPod4, and gave said iPod4 to my sister. How on Earth can I delete all the stuff from the iPod4 and set up a new library with it? I had no trouble Putting my iPod5 on MY library, but since my sister and I have VERY different music tastes, she has her own library on a different user name. Can anyone tell me how I can put this old iPod4 on that library?
    Thanks in advance,
    Kristina

    Kristina,
    Restoring your iPod does not delete iTunes. All they are saying is that as you are about to remove everything from your iPod make sure you have a back up. Common sense really. iPods are often restored as a method of troubleshooting problems so you want to make sure you have something to put back. You should back up iTunes as a matter of course especially if you have purchased downloads, your own CDs can always be re-added even if it's a pain but other stuff you can lose forever. Just for additional info, here's a link on the subject "How to back up your media in iTunes 5 or iTunes 6" http://docs.info.apple.com/article.html?artnum=302392

  • Upgraded: New Mac, Setting up iPhoto Library From Multiple Old Backups

    Over the years (Jaguar to Snow Leopard), I've had multiple Macs in different locations (work, home) to which I've loaded photos from cameras into multiple iPhoto libraries. As these Macs have died (G4s, G5s), or I've been forced to upgrade, I've made a backup on CDs and DVDs of the iPhoto libraries (different versions of iPhoto over the years).
    Now I've got a brand new Macbook Pro and I want to put all these photos into one library on one disk. I don't care much about preserving photos edited in iPhoto (I use Photoshop for serious editing), nor do I have particular album or roll data from these old libraries that matters. I just want to get all the original photos into one library so I can search and access them all in one place.
    I have always found the way iPhoto organizes the photos on disk a bit confusing, especailly when it comes to backing up and accessing the files at the Finder level. And now it seems things have gotten even more dumbed away from the user in "package" w/ the latest iPhoto.
    I would like to just have my photos in a folder, not a "package," but I would like to be able to search and organize photos and load them to my iPod Touch. (Maybe isn't the best application for me?) I'd also like my iPhoto folder to be on an external HD.
    This is one of those grueling tasks I've been putting off for years. So many disks, so many libraries, how to get them all into one. I want to get it right once and for all, so I'll have all my photos on in one place and hopefully in a Finder-level folder that will be easy to back up and easy to port to my next Mac down the road in the future.
    Can anyone offer any advice on the best way to proceed? Anyone else been through something like this?
    Thanks in advance,
    Babz

    This is actually more simple than it seems as you
    just want to get all the original photos into one library so I can search and access them all in one place.
    So, create a Library: Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library' and import the contents of the originals from the other Libraries: (File -> Import, Drag to the iPhoto Window, Drag to the iPhoto icon on the Dock)
    That's all your originals in a single Library.
    I have always found the way iPhoto organizes the photos on disk a bit confusing, especailly when it comes to backing up and accessing the files at the Finder level.
    It's actually quite straightforward, but the key is +you don't access the files at a Finder level+.
    And now it seems things have gotten even more dumbed away from the user in "package" w/ the latest iPhoto.
    Remember: iPhoto is a Database. Like any database, you need to manipulate the data via the db and not a back door.
    Since iPhoto 7 (iLife 08) the old iPhoto Library Folder is now a Package File. This is simply a folder that looks like a file in the Finder. The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves. That's why +you don't access the files at a Finder level+.
    Want to see inside: Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
    Standard Warning: Don't change anything in the iPhoto Library Folder via the Finder or any other application. iPhoto depends on the structure as well as the contents of this folder. Moving things, renaming things or otherwise making changes will prevent iPhoto from working and could even cause you to damage or lose your photos.
    How the library is organised: There are various files, which are the Library itself and some ancillary files. Then you have three core folders
    Originals are the photos as they were downloaded from your camera or scanner.
    (ii) Modified contains edited pics, shots that you have cropped, rotated or changed in any way.
    (iii) Data holds the thumbnails the the app needs to show you the photos in the iPhoto Window.
    But none of that matters, as you never access the files via the Finder.
    *To back up an iPhoto Library* make a copy of the Library on another disk. You can automate this process with Time Machine or many other back up apps like Chronosync or DejaVu. There are many, many other options. Search on MacUpdate.
    I would like to just have my photos in a folder, not a "package,"
    *How to do it:*
    Simply go to iPhoto Menu -> Preferences -> Advanced and uncheck 'Copy Files to the iPhoto Library on Import'.
    *What Happens:*
    Now iPhoto will not copy the files, but rather simply reference them on your HD. To do this it will create an alias in the Originals Folder that points to your file. It will still create a thumbnail and, if you modify the pics, a Modified version within the iPhoto Library Folder.
    *Some things to consider:*
    1. Importing and deleting pics are more complex procedures. You have to to put the files where they will be stored before importing them. When you delete them you'll need to remove the files from the HD yourself.
    2. You cannot move or rename the files on your system or iPhoto will lose track of them on systems prior to 10.5 and iPhoto 08. Even with the later versions issues can still arise if you move the referenced files to new volumes or between volumes.
    3. Most importantly, migrating to a new disk or computer can be much more complex.
    4. Because iPhoto has no tools for managing Referenced Files, if, for some reason, the path to the photos changes then you could find yourself resolving aliases for +each photo in the Library+ one by one.
    My own opinion:
    I've yet to see a good reason to run iPhoto in referenced mode unless you're using two photo organiser
    If disk space is an issue, you can run an entire iPhoto Library from an external disk:
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    If you're concerned about accessing the files, There are many, many ways to access your files in iPhoto:
    *For Users of 10.5 and later*
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    *For users of 10.4 and later* ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    For users of 10.6 and later:
    You can download a free Services component from MacOSXAutomation which will give you access to the iPhoto Library from your Services Menu. Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and later:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    *To use iPhoto with Photoshop*
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    Note that iPhoto sends a copy+ of the file to Photoshop, so when you save be sure to use the Save command, not Save As... If you use Save As then you're creating a new file and iPhoto has no way of knowing about this new file. iPhoto is preserving your original anyway.
    There's a lot of material there. By all means come back for clarification if you need it. But I strongly urge you to think very carefully before running a Referenced Library.
    Regards
    TD

  • List with Multiple Content Types and Making new Forms...

    I go to create custom forms based on content types.  After I create using the wizard in the list it always shows the same form no matter which content type I pick.
    what am I doing wrong?
    David Jenkins

    You can change the custom form on content type through SharePoint Designer. Do not change it on the content type directly, when you add content type in a list/library, then open list's content types in SP Designer and then select your content type and modify
    the URLs of your custom display form.
    I have updated a document in gallery for
    step by step development of custom workflow and custom task form. In this document you can find the association of custom form with content type using SP Designer.
    Adnan Amin MCT, SharePoint Architect | If you find this post useful kindly please mark it as an answer :)

  • I need help using multiple content types in a wiki page library

    I currently trying to used multiple custom content types based off of the wiki page content type in one wiki page library. 
    EDIT: "Allow management of content types" has been enabled with the designer
    The way i would like this library to work is:
    Click the "Files" tab in the ribbon
    Click the "New Document" drop down menu
    Select one of the content types (Client, Contact, Project)
    SharePoint Will Ask for the Page Name and content type fields
    Click create
    Then it will take you to the new created page.
    This issue I'm currently having is when i click on one of the options (Client, Contact, Project) it will ask for a page name then you have to check it in to get to the edit form. The edit form it then loads is the default content type and not the selected
    content type.
    So my questions are.
    Is there any way i can combine the page name and edit steps together into one step?
    How can I get the edit form to pull from the selected content type?
    Thanks in advanced
    James T.F

    Wiki library isn't really designed for customizations... it's a "special" library that overrides a lot of default behavior... similar evidence can be found if you're trying to add metadata columns to wiki pages... they're just not really designed to handle
    it very well.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • Updating Sales document with new sub sequent sales document

    Hello All,
    I am creating one sales contract from one sales document through some user exits and batch jobs.
    After creating this new sales contract i want to update this doc number in Old Referenced sales document flow.
    Is there any standard function module for this.. i tried some function modules containing FLOW..But no use..
    Thanks&Regards,
    Krishna.

    It is resolved..
    as I am using FM SD_SALESDOCUMENT_CREATE to create this contract i just updated the Reference document number in header structure...

  • SP2013 Search - Query documents only in a library with a specific property bag value

    Hi,
    I am hoping someone might be able to help me as I am struggling to figure out how to get the following scenario to work using query variables. 
    I have configured a property bag value against document libraries and made it indexable and turned it into a managed property. I have checked to ensure i can search specifically against this managed property and it works correctly and returns document libraries
    which have a  property bag key with a value that I specify in a search query e.g. classification:internal.
    I have also configured a managed property for a piece of metadata i collect against every document e.g. colour. I can successfully search against this manged property and return documents whereby colour is equal to red e.g. colour:red
    What I would like to do is take this one step further and say search across only libraries where the property bag value equals internal and return documents within those libraries which have a metadata value of something e.g. colour = red.
    Does anyone have any suggestions on how i can achieve this.
    Thanks in advance
    Mark

    That or in some way get the container metadata to be present in the item itself as well.
    Thanks,
    Mikael Svenson - Search Enthusiast
    SharePoint MVP/MCPD/P-TSP - If you find an answer useful, please up-vote it.
    http://techmikael.blogspot.com/
    Author of
    SharePoint Search Queries Explained and
    Working with FAST Search Server 2010 for SharePoint

  • Is there a way to use ipod with new computer without erasing entire library

    I'm not really tech-savvy, but I'm tossing my old computer and getting a new one - is there a way to use my ipod on my new computer without erasing my existing library? It won't let me make changes to my ipod and wants me to erase everything that is on there right now - HELP!

    Connect your iPod to your computer. When you get the message that it is linked to a different library and asking if you want to link to this one and replace all your songs etc, press "Cancel". Pressing "Erase and Sync" will irretrievably remove all the songs from your iPod. When your iPod appears in iTunes enable it for disk use, this is required for most if not all the utilities listed below so they can access the files: Using your iPod as a storage drive
    Once you are safely connected there are a few things you can do to restore your iTunes from the iPod. If you have any iTMS purchases the transfer of purchased content from the iPod to authorised computers was introduced with iTunes 7. A paragraph on it has been added to this article: Transfer iTunes Store purchases using iPod
    The transfer of non iTMS content such as songs imported from CD is designed by default to be one way from iTunes to iPod. However there are a number of third party utilities that you can use to retrieve the music files and playlists from your iPod. You'll find that they have varying degrees of functionality and some will transfer movies, videos, photos, podcasts and games as well. Have a look at the web pages and documentation, this is just a small selection of what's available, they are generally quite straightforward. You can also read reviews of some of them here: Wired News - Rescue Your Stranded Tunes
    TuneJack Windows Only
    iPod2PC Windows Only
    iGadget Windows Only
    iDump Windows Only
    iRepo Windows Only
    iPodRip Mac & Windows
    YamiPod Mac and Windows Versions
    Music Rescue Mac & Windows
    iPodCopy Mac and Windows Versions
    There is also a manual method of accessing the iPod's hard drive and copying songs back to iTunes on Windows or a Mac. The procedure is a bit involved and won't recover playlists but if you're interested it's available at this link: Two-way Street: Moving Music Off the iPod
    Whichever of these retrieval methods you choose, keep your iPod in manual mode until you have reloaded your iTunes and you are happy with your playlists etc then it will be safe to return it auto-sync. I would also advise that you get yourself an external hard drive and back your stuff up, relying on an iPod as your sole backup is not a good idea and external drives are comparatively inexpensive these days, you can get loads of storage for a reasonable outlay.

  • I have a time capsule with my iTunes library from a previous computer.  I now have a new computer with new songs on my iTunes library.  I'd like to retrieve my songs from my iTunes library which is stored in the time capsule.  How do I do this?

    Hello there.  Wondering if there's any way I can retrieve songs that are stored in my time capsule that was backed up from my old previous computer?

    Actually you always use ethernet..
    MBA does not come with ethernet port.. but apple sells both a cheap usb to ethernet and a much more expensive and much faster thunderbolt to ethernet adapter. With ethernet to eliminite this silly situation of setting up wireless over wireless, so if you make any change you instantly drops you off the network. Like cartoons of people sawing off the branch they are sitting on.
    But you can reset.. no reset will do anything at all to the material on the hard disk. You must deliberately erase it.
    Read the info because you may only need to do a soft reset. That is hold the reset for 1sec (2-3sec is fine)  as long as you don't hold it for a full reset.
    http://support.apple.com/kb/ht3728
    Even a full factory reset will not harm your files in any way, (or any further!!)
    I am "concerned" that you have no backup to vital files on your TC. That is not wise. TC are no more immune to failure than any other hard disk.. (actually latest ones use the cheapest green WD drives money can buy) and keeping files in only one location is a receipe for disaster. An external drive is much more accessible.. cheaper and tend to be more reliable. There are too many things to break in the TC.. it is designed as a backup target for TM. Not a file store.

Maybe you are looking for

  • Photoshop CS2 Quits on Saving to LAN in OSX 10.4.6

    We use Photoshop CS2 and OSX 10.4.6 on 3 G5's and 1 G4. On saving a psd to LAN or desktop, Photoshop quits. We also have 1 mac G5 on OSX 10.4.3 and 1 mac G4 on OSX 10.4.3 both using Photoshop CS2 and they both work fine. Is this a problem with OSX 10

  • Oracle10g - getting error when tried to log in using SQL plus

    I have installed Oracle Database 10g with following settings A) In Select Installation Method with basic installation 1) Global Database Name: orcl 2) Database Password: srinu B) In Database Configuration Assistant shows following information Global

  • Load a picture ??

    I want to load a BLOB (in this case a .jpg) into a table. Our Forms run in Internet Explorer. Is there a way I can have a dialog box where the user selects the picture they want, then I load this picture into the table? Or is there some other way to

  • Focus is confusing.

    I don't understand it. I have a class thats a MouseListener and KeyListener. And I got the MouseListener working, but with the same class and same JPanel KeyListener doesn't have focus and won't work. Is there any reason for this happening? I'm sure

  • Why mi iPhone can't do call ?

    I can't do my call, since  the  last operating system upgrade problems appeared in the call this problem is all the time.  What i can ?