Subdivision of library

Hello,
I am new in this and as I have a lot of books in the PDF format, I was wondering if there is any way to subdivide and categorize different categories of books in the library to find them easier? Thank you for your help.

apple mobile devices don't have the capability to create folder hierarchies like a computer.

Similar Messages

  • How do I check if section and subdivision exist inside object's xml?

    My function is working but not as I expect it to. The problem is that when Section and Subvision are not found in the object aobjXmlGetStatuteRequestNode xml, I get an error NullReference Exception was unhandled by user code. Object reference not set
    to an instance of an object. 
    For that reason, because the two elements are optional, I would like to check if they exist before adding their value into the xml inside the object objXmlRequestMessageDoc.
    The if statement I used in my function did not work. When it found Section element, it did not check for Subdivision. 
    How do I check for both and add them if they exist. If they do not exist, I do not need to do anything and should not throw an error since they are optional.
     Object aobjXmlGetStatuteRequestNode has this xml
    <ns:GetStatutesRequest xmlns:ns="http://www.courts.state.mn.us/StatuteService/1.0">
    <ns:Statute>
    <ns:Chapter>169</ns:Chapter>
    <!--Optional:-->
    <ns:Section>191</ns:Section>
    <!--Optional:-->
    <ns:Subdivision>a</ns:Subdivision>
    </ns:Statute>
    The following output in the objXmlRequestMessageDoc object is correct but this does not work when Section and or Subdivision are not found in the object aobjXmlGetStatuteRequestNode.
    <ns:BasicSearchQueryRequest xmlns:ns="http://crimnet.state.mn.us/mnjustice/statute/service/4.0">
    <ns1:BasicSearchCriteria xmlns:ns1="http://crimnet.state.mn.us/mnjustice/statute/messages/4.0">
    <ns2:Chapter xmlns:ns2="http://crimnet.state.mn.us/mnjustice/statute/4.0"/169</ns2:Chapter>>
    <ns2:Section xmlns:ns2="http://crimnet.state.mn.us/mnjustice/statute/4.0"/>191</ns2:Chapter>
    <ns2:Subdivision xmlns:ns2="http://crimnet.state.mn.us/mnjustice/statute/4.0"/>a</ns2:Chapter>
    </ns1:BasicSearchCriteria>
    </ns:BasicSearchQueryRequest>
    My Function
    Function GetStatutesByChapter(ByVal aobjXmlGetStatuteRequestNode As XmlNode, ByVal aobjXMLNameSpaceManager As XmlNamespaceManager, ByVal aobjBroker As ServiceCatalog.Library.v4.Broker) As XmlDocument
    Dim objXmlRequestMessageDoc As XmlDocument
    Dim objXmlResponseMessageDoc As XmlDocument
    Dim intCount As Integer
    aobjBroker.PostMessageWarehouseInformationalMessage("Chapter found.", 1)
    objXmlResponseMessageDoc = New XmlDocument
    'Add the first element into the document GetStatuteByChapter with its namespace
    objXmlResponseMessageDoc.AppendChild(objXmlResponseMessageDoc.CreateElement("BasicSearchQueryResponse", "http://crimnet.state.mn.us/mnjustice/statute/service/4.0"))
    'Create the BCA request message
    objXmlRequestMessageDoc = New XmlDocument
    objXmlRequestMessageDoc.AppendChild(objXmlRequestMessageDoc.CreateElement("ns:BasicSearchQueryRequest", aobjXMLNameSpaceManager.LookupNamespace("ns")))
    objXmlRequestMessageDoc.SelectSingleNode("ns:BasicSearchQueryRequest", aobjXMLNameSpaceManager).AppendChild(objXmlRequestMessageDoc.CreateElement("ns1:BasicSearchCriteria", aobjXMLNameSpaceManager.LookupNamespace("ns1")))
    objXmlRequestMessageDoc.SelectSingleNode("ns:BasicSearchQueryRequest/ns1:BasicSearchCriteria", aobjXMLNameSpaceManager).AppendChild(objXmlRequestMessageDoc.CreateElement("ns2:Chapter", aobjXMLNameSpaceManager.LookupNamespace("st")))
    objXmlRequestMessageDoc.SelectSingleNode("ns:BasicSearchQueryRequest/ns1:BasicSearchCriteria", aobjXMLNameSpaceManager).AppendChild(objXmlRequestMessageDoc.CreateElement("ns2:Section", aobjXMLNameSpaceManager.LookupNamespace("st")))
    objXmlRequestMessageDoc.SelectSingleNode("ns:BasicSearchQueryRequest/ns1:BasicSearchCriteria", aobjXMLNameSpaceManager).AppendChild(objXmlRequestMessageDoc.CreateElement("ns2:Subdivision", aobjXMLNameSpaceManager.LookupNamespace("st")))
    objXmlRequestMessageDoc.DocumentElement.SelectSingleNode("ns1:BasicSearchCriteria/st:Chapter", aobjXMLNameSpaceManager).InnerText = aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Chapter", aobjXMLNameSpaceManager).InnerText
    objXmlRequestMessageDoc.DocumentElement.SelectSingleNode("ns1:BasicSearchCriteria/st:Section", aobjXMLNameSpaceManager).InnerText = aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Section", aobjXMLNameSpaceManager).InnerText
    objXmlRequestMessageDoc.DocumentElement.SelectSingleNode("ns1:BasicSearchCriteria/st:Subdivision", aobjXMLNameSpaceManager).InnerText = aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Subdivision", aobjXMLNameSpaceManager).InnerText
    'check if there is a section and or subdivision if it is there then set the value
    'If Not (aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Section", aobjXMLNameSpaceManager).InnerText) Is Nothing Then
    ' objXmlRequestMessageDoc.DocumentElement.SelectSingleNode("ns1:BasicSearchCriteria/st:Section", aobjXMLNameSpaceManager).InnerText = aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Section", aobjXMLNameSpaceManager).InnerText
    'End If
    'check if there is a section and or subdivision if it is there then set the value
    aobjBroker.PostMessageWarehouseSnapshot(objXmlRequestMessageDoc.OuterXml, "Request Message", 1)
    'Call the BCA service
    intCount = 0
    'Count how many Statute node found
    CType(objXmlResponseMessageDoc.SelectSingleNode("ss:GetStatutesResponse/ss:StatutesXml/ss:Statutes", aobjXMLNameSpaceManager), System.Xml.XmlElement).SetAttribute("totalCount", CStr(intCount))
    Return objXmlResponseMessageDoc
    End Function

    I have resolved this issue by using two if statements as follows
    'check if there is a section and or subdivision if it is there then set the value
    If Not (aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Section", aobjXMLNameSpaceManager) Is Nothing) Then
    objXmlRequestMessageDoc.DocumentElement.SelectSingleNode("ns1:BasicSearchCriteria/st:Section", aobjXMLNameSpaceManager).InnerText = aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Section", aobjXMLNameSpaceManager).InnerText
    End If
    If Not (aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Subdivision", aobjXMLNameSpaceManager) Is Nothing) Then
    objXmlRequestMessageDoc.DocumentElement.SelectSingleNode("ns1:BasicSearchCriteria/st:Subdivision", aobjXMLNameSpaceManager).InnerText = aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Subdivision", aobjXMLNameSpaceManager).InnerText
    End If

  • Subsections of iPhoto 6 Library

    When I upgraded to Leopard from Tiger my iPhoto Library folder was divided into subsections by year:2008, 2007, 2006, 2005, and Early Photos (pre-2005). I want to do further subdivision of this sort, but I cannot do so using the using the album creation feature. Could some please tell me how to do the subdivision into other years?

    Charles
    my iPhoto Library folder
    *It is strongly advised that you do not move, change or in anyway alter things in the iPhoto Library Folder as this can cause the application to fail and even lead to data loss*
    Under no circumstances should you change things in the iPhoto Library Folder - you do all your work in the iPhoto Window.
    my iPhoto Library folder was divided into subsections by year:2008, 2007, 2006, 2005, and Early Photos (pre-2005).
    This is a pre v6 Library. With v6 the library is re-arranged.
    You can create such a filing structure in the iPhoto Window very easily.
    File -> New Smart Album
    Date -> Is -> Before -> 1/1/06
    +
    Date -> Is -> After -> 31/12/04
    will get all your 2005 pics, for instance. You can even break down the years into months.
    Mind you the calendar tool makes all that sort of organisation rather pointless. Simply click on it to track all the pics for any particular Year, Month or Day.
    Regards
    TD

  • With the default Illustrator grid, subdivisions aren't showing.

    I have my gridlines every 1 inch and subdivisions are set to 8.
    My laptop has the same software (CS5) and same setting and it's showing the subdivision fine but my desktop isn't for some reason? Please help, thanks.

    Try
    PC
    1. Quit Illustrator.
    2. Rename the AIPrefs file (for example, to AIPrefs.old) in the Users/(user)/AppData/Roaming/Adobe/Adobe Illustrator CS5 Settings folder.
    3. Start Illustrator. Illustrator creates a new preferences file.
    Mac
    1. Quit Illustrator.
    2.Go to User/username/Library/Preferences/ Adobe illustrator CS5 Settings and trash the settings folder, the whole folder not just the contents of the folder..
    3. Start Illustrator. Illustrator creates a new preferences file.

  • I am having macbook air recently my iphotos did not open and was showing report apple and reopen but i came to know that by pressing alt and iphotos i open an new photo library and stored the pics but now how can i get the pics which i had in the earlier

    i am having macbook air recently my iphotos did not open and was showing report apple and reopen but i came to know that by pressing alt and iphotos i open an new photo library and stored the pics but now how can i get the pics which i had in the earlier photo please help me to recover my photos

    Well I'll guess you're using iPhoto 11:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • How can a family of 6 share the same itunes library?

    My family has a major problem on our hands. We are new to ipods and itunes. We have 1 itunes account. My sons are too young to have their own accounts. They are too young for a credit card, and can't have a paypal account until they're 18. We want to keep our music separate from each others. How do we do this with only one library? Thanks in advance for any suggestions.
    Go Buckeyes47
    Dell Dimension 2400   Windows XP  

    One thing not mentioned is that if you decide on the multiple user approach, you can have your music folder in Shared Documents so you only store the tracks once.
    Each user is free to choose which of those tracks they want in their library.
    There is an Apple help article on multiple users.
    http://docs.info.apple.com/article.html?artnum=300432

  • How can multiple computers have the same library?

    My family has one iTunes account, but our iTunes library is different on every computer. Our iPods are each synced with a different computer. How can we have one library with all of our purchases together? We use the same account, so it doesn't make sense that the music purchased on my laptop won't show up on our home desktop. Each of our iPods are synced to a different computer.

    No.
    Iphone will sync with one and only one computer a a time.  Syncing to another will erase the current content from the iphone and replace with content from the new computer.

  • How can 2 family members who share an iTunes library both use iTunes match?

    My wife and I both share an iTunes library on the same Macbook and both sync our phones to that computer. We each have our own Apple ID and we use a 3rd account for iCloud for Photostream. In ios5 we were able to both access the music library on our iPhones via iTunes match while signed in under our unique IDs. Now, it will only let one ID access the music on the phones.  How can I get it to work like it used to, where we can both access the music while both continuing to be logged in under our own IDs on our own phones?

    I am taking this slowly so I have not added my iTunes music to the new laptop yet until I figure out how to make it work. But I have just downloaded a digital copy of The Dark Knight and when I log on to my girlfriends user and open iTunes, the video is not there. When I log back into my user and connect her iPhone to iTunes, I am not allowed to drop in the movie. That is where I am at. I need to be able to add my stuff to her iPhone and her stuff to my iPhone without syncing and losing all info.

  • Error in VBA reference for Adobe Photoshop CS4 Object Library

    Hello,
    I'm using Windows 7 Pro, MS Office 2010 Pro and Creative Suite CS4 (with all updates).
    I will automate Photoshop via Visual Basic for Applications in MS Access.
    Befor using there the Adobe Photoshop CS4 Object Library I must reference it in VBA.
    But when I will du this, I get the message "Error loading DLL".
    When I will manually reference to the WIASupport.8LI File, I get the error: "Cannot reference this file"
    Can you give a tip, how I can solve this problem?
    Regards

    I have the same problem!  I have photoshop cc2014 (which we own) and the object library shows, but not for cs 5.1 (30 day trial).
    Does registering unlock something?
    Help please!!

  • Adobe and Library Books!

    I sometimes check out books from the library from my home computer and sometimes from my laptop. If I checked it out on my home computer, but am on my laptop with the Nook plugged in, I can’t return them. Seems I can only return books from the original computer used to check out. Before I updated the Adobe Digitial Editions, I did not have a problem with this. Is it possible to return from a different computer via my Nook? Shouldn’t the Digital Editions sync up between computers?

    Adobe Reader can't open this type of files. Open the file in Adobe Digital Editions.

  • Ipod ITunes library help please!!!

    Hi, i hope someone can help. I had to return my laptop to work and it contained my ITunes library (i have spent a fortune). I thought that i had stored all the purchased songs on a memory stick but when i put this into my new laptop it won't work. I have all the songs still on the Ipod and was hoping that i could somehow tranfer them from the Ipod to the laptop to create the same ITunes library again. I could kick myself now for not getting it done properly, can anyone give me a glimmer of hope?

    You can use one of the many 3rd party programs that copy music from the iPod to the computer.
    One of the most recommended is Yamipod. This is a free program that transfers music from iPod back to the computer. However, it does not transfer playcounts/ratings etc.
    Another free program is Pod Player.
    SharePod is also freeware.
    If you want to recover just the structure of playlists from the iPod (and not the actual song files themselves), there's iRepo for Windows. which I understand has this feature along with all the standard features for these programs.
    iPodRip also has the feature enabling you to reconstruct playlists.
    There is also CopyTrans. This does preserve ratings/playcounts etc if those are important to you but this program is not free. It also supports video transfer.

  • Can not add mp3 to library

    I just downloaded an mp3 song from Marié Digby's free area, and I couldn't for the life of me get it to import or add to my itunes library. I have played the track via VLC and it doesn't seem to have anything wrong with it. I added my entire Downloads folder to try and get it to show up. I wish I had an error I could give, simply iTunes 11 on my MBP running ML 10.8.2.

    I don't have a Recently Added playlist.  However, I discovered that the file I had named Eating Healthy was given the name You Can Enjoy Eating Healthy when it copied to iTunes.  I'm guessing iTunes pulled the full name of the piece from the internet.  Upshot--the mp3 did transfer to iTunes on all 3 tries, but I was looking in my alphabetized list under E, not Y, so I didn't see it there.  Thanks for your help. 

  • How do you delete duplicate songs from your iPhone that do not show up in your iTunes library?

    everytime i purchase songs on itunes and sync them to my iphone 4, the songs downloads twice. one as the actual song, and the second one doesnt do anything. when you click on it, it just skips to the next song and doesnt play anything. also this second song has this cirlce dot thing next to it when i am scrolling through my songs in my music...so how do i get rid of this second download? its really annoying to have and it wont let me delete it off my phone. alsoooo since it doesnt show up in my itunes library, i cant delte it off there either! HELP PLEASE

    On the springboard, locate the app you want to delete. For this example, I’ll use WeatherBug.
    Tap and hold down the icon of the application you want to delete. After a few seconds your screen will start to “wiggle” and an X will appear next to each of the apps you’ve installed via the App Store.
    Tap the X next to the icon of the app you want to remove. When prompted, selectDelete.
    And now it’s gone.
    If the application is listed in your iTunes Applications as well, you’ll want to remove it from there – or else it will re-install the next time you sync. Alternately you can keep the app in your iTunes Applications, and set iTunes not to sync all applications, just the ones you want to keep. See the Applications tab of your device the next time it’s connected in iTunes for syncing options.
    http://www.simplehelp.net/2008/07/12/how-to-delete-apps-from-your-ipod-touch-or- iphone/

  • I have an apple iphone 4 that I want to download audio books from my library onto it.  I cannot figure out how to do that.  The iphone does not show up on my mac laptop as a connected device.  Does this kind of download have to run through itunes?  Thanks

    I have an apple iphone 4 that I want to download audio books from my library onto.  I cannot figure out how to do that.  The iphone does not show up on my mac laptop as a connected device.  Does this kind of download have to run through itunes?  Thanks

    Yes it is done through iTunes. The iPhone will never show up in Finder as a device. The following is general information on iTunes sync: http://support.apple.com/kb/HT1386 and the following is a previous discussion where the post by Andreas Junge helped others that had a problem syncing audiobooks: https://discussions.apple.com/message/20052732#20052732

  • When adding folders to iTunes 11, they don't show up in the library.  On one folder add, it created a playlist (not what I wanted).  On the second folder, it shows nothing.  Never seen this before.  Advice?

    I added my first folder of MP3s and it created a playlist, but didn't show up in the library.  When adding a second folder, it didn't show up anywhere.  I can do a search for them in the search window, and it finds/plays them, but I want to be able to browse them in my library.  These are not MP3s downloaded from iTunes, but are personal files located on my hard drive.  Can anyone help?

    I have a Dell that's running Windows XP. I have found that itunes is very temperamental. this works most of the time... except on my son's computer that's running Windows Vista.
    Go to your library in iTunes. Then go up to file and try one of the options (import, add folder to library, or add file to library).
    Adding a folder is the least work. You can add all the files from a folder with one click... if it works. Remember that itunes is temperamental.
    If that doesn't work, try adding a file. The problem with that is that you have to go through the whole process for each and every file (song, movie, etc).
    Sometimes the only thing that works is to import.
    I haven't gotten iTunes to work on my son's computer (Windows Vista).
    I can't get support from apple in any way at all! They are good about creating electronics that appeal to us But they are lousy at support. If anyone figures out how to access support (where you can actually contact Apple) please let me know ([email protected]). I've been trying for 6 months.

Maybe you are looking for

  • LDAP Authentication Scheme - Multiple LDAP Servers?

    How to set up ldap authentication so that multiple ldap servers are available? Scenario: ldap service is replicated through several servers, but does not sit behind a common dns/reverse proxy connection, so applications would list each ldap server an

  • How do I create an API with session support?

    Hi experts, I am implemented an API, now I need to have a session for each user using this API, something like HttpSession, I need to store some attribute for each user. for example, each user may choose its own locale and I need to manage every one

  • Help with iPad gestures in safari please

    Hello. So I'm in safari browsing the net and I open a web page with photos. I click view all and a window opens with the selected photo enlarged and a series of clickable thumbnail photos in a scrollable window below. No problem, eh? Well, I cannot g

  • Missing mail accounts in Mail

    I have just migrated to a new computer from my old one and when I go in to mail I have none of my inboxes showing. I have all my accounts shown in system preferences, internet accounts but they fail to show up in my mail app. This is rather frustrati

  • Lion Update Problems

    So, i hear that the os x lion got an update about the iCloud and another OS improvements, so, i search in the mr.google's engine and found a few Combo Updates, but the size was only like 300 MB or somethin' , then i installed it, it told me to restar