Is there a way to verify the contents of my Vault?

I have recently attempted to move my vault to another drive and the process stopped part way through, the receiving drive ( Verbatim Firewire 500 Gig.) stopped and I got the "a drive has been improperly disconnected" type error message and the following pop-up:
and this when I tried to eject the source drive (WD My Book 500 Gig.)
I was able to eject it after a relaunch of Finder and a restart of my iMac  I did a disk repair to both the WD drive and the Verbatim drive. The latter had some errors in "Volume" information which were repaired by disk utility and I tried to move the Vault again with the same result again so I wonder whether the Vault file is corrupted and need to know if there is a way to verify the integrity of the files contained in it.

Hi Kieran,
You can read and set the tool tips using the .assist.toolTip property:
this.assist.toolTip = "This is a tooltip...";
Hope that helps,
Niall

Similar Messages

  • Is there a way to list the contents of a particular directory?

    Hi,
    I'm creating the blue-print of a new iPad app and was wondering if there was a way to request the contents of a particular directory (eithre local to the device or a a particular directory on the web) and also get the "type" of each item.
    For example if inside a directory "Directory1" and inside that directory I have 4 files and another directory, (file1.gif, file2.txt, file3.mov, file4.mp3, Directory2)
    Is there a way to request the contents of Directory1 and the type of files they are?
    The ideal thing will be to get a recursive request and get an array of contents of all directories inside a particular directory.
    something like:
    Directory1[file1a.gif,file1b.txt,file1c.mov,file1d.mp3,[Directory2[file2b.mov,fi le2b.mp3]]]
    What I want is to create a navigation for the user based on the resultant strign.
    Am I re-inventing the wheel here?
    Any direction will be greatly appreciated. I rather adjust blue-print now based on what is possible.
    Thanks!

    We are users here. You might have better luck going to the developers forum.
    http://developer.apple.com/devforums/
    There are also links on that page that may help too.

  • Is there a way to view the content of my iCloud backup on a computer

    The back up to iCloud was from an iPhone 4 on IOS 6 (this was the IOS that the phone was on when it did a back up, before it was updated to IOS 7.1.2) , and I can see within iCloud drive that the back up is there, but is there a way to view the content of that back up like the pictures for the most part.

    No. The only way to see it is to restore the backup to an iOS device.

  • Is there a way to compare the contents of a library by comparing itl files or some other files?

    Is there a way to compare the contents of a library by comparing itl files or some other files?
    I need to compare the contents of my current library to one that existed 2 months ago but ALL I have is the itl file from 2 months ago.  Can this be done?

    You are correct, many people have noticed over the years that Sound Check does not work as advertised.
    A more effective approach is to treat the files with a 3rd party volume normalization program. Although I have not personally used it, many users on this Forum have reported good results from an inexpensive program called iVolume.

  • Is there a way to bind the content of a ListProperty?

    Hi,
    Is there an existing way to bind the content of a ListProperty?  Consider the following:
    private final ListProperty<Worker<?>> workers = new SimpleListProperty<>(FXCollections.observableArrayList());
        public ListProperty<Worker<?>> workersProperty() {return workers;}
        public ObservableList<Worker<?>> getWorkers() {return workers.get();}
        public void setWorkers(ObservableList<Worker<?>> workers) {this.workers.set(workers);}
        private final ObservableList<Worker<?>> stateWatchedWorkers = FXCollections.observableArrayList(
                new Callback<Worker<?>, Observable[]>() {
                    @Override
                    public Observable[] call(final Worker<?> param) {
                        return new Observable[]{
                                param.stateProperty()
    What I want to do is bind the content of the stateWatchedWorkers list to workers.  If the entire workers list is replaced, I want stateWatchedWorkers to be updated to match the content of the new list.  Put another way, I want the stateWatchedWorkers list to be mapped to the current list being held by the workers property.

    James_D answered this on StackOverflow.  Using Bindings.bindContent(target, listProperty) is all that's needed.  It "just works".  Here's a code example to show how it works:
    import javafx.beans.Observable;
    import javafx.beans.binding.Bindings;
    import javafx.beans.property.*;
    import javafx.collections.FXCollections;
    import javafx.collections.ListChangeListener;
    import javafx.collections.ObservableList;
    import javafx.util.Callback;
    public class ListPropertyContentBinding {
    /* This is a quick test to see how ListProperty notifies about list changes
    * when the entire list is swapped.
    * Conclusion: When the backing list is changed, ListProperty will perform
    * notification indicating that all items from the original list were
    * removed and that all items from the updated (new) list were added.
    ObservableList<Person> oldPeople = FXCollections.observableArrayList();
    ObservableList<Person> newPeople = FXCollections.observableArrayList();
    // A list property that is used to hold and swap the lists.
    ListProperty<Person> people = new SimpleListProperty<>(oldPeople);
    // A list that includes an extractor.  This list will be bound to people and
    // is expected to additionally notify whenever the name of a person in the
    // list changes.
    ObservableList<Person> nameWatchedPeople = FXCollections.observableArrayList(
            new Callback<Person, Observable[]>() {
                @Override
                public Observable[] call(final Person person) {
                    return new Observable[]{
                            person.name
    public ListPropertyContentBinding() {
        Bindings.bindContent(nameWatchedPeople, people);
        nameWatchedPeople.addListener((ListChangeListener<Person>) change -> {
            while (change.next()) {
                System.out.println("    " + change.toString());
        Person john = new Person("john");
        System.out.println("Adding john to oldPeople. Expect 1 change.");
        oldPeople.add(john);
        System.out.println("Changing john's name to joe. Expect 1 change.");
        john.name.set("joe");
        Person jane = new Person("jane");
        System.out.println("Adding jane to newPeople. Expect 0 changes.");
        newPeople.add(jane);
        System.out.println("Updating people to newPeople. Expect ? changes.");
        people.set(newPeople);
        Person jacob = new Person("jacob");
        System.out.println("Adding jacob to oldPeople. Expect 0 changes.");
        oldPeople.add(jacob);
        System.out.println("Adding jacob to newPeople. Expect 1 change.");
        newPeople.add(jacob);
        System.out.println("Changing jacob's name to jack. Expect 1 change.");
        jacob.name.set("jack");
        System.out.println("Updating people to oldPeople. Expect ? changes.");
        System.out.println(" oldPeople: " + oldPeople.toString());
        System.out.println(" newPeople : " + newPeople.toString());
        people.set(oldPeople);
    public static void main(String[] args) {
        new ListPropertyContentBinding();
    class Person {
        private final StringProperty name = new SimpleStringProperty();
        public Person(String name) {
            this.name.set(name);
        @Override
        public String toString() {
            return name.get();
    ...and the output from running the above.
    Adding john to oldPeople. Expect 1 change.
        { [john] added at 0 }
    Changing john's name to joe. Expect 1 change.
        { updated at range [0, 1) }
    Adding jane to newPeople. Expect 0 changes.
    Updating people to newPeople. Expect ? changes.
        { [joe] removed at 0 }
        { [jane] added at 0 }
    Adding jacob to oldPeople. Expect 0 changes.
    Adding jacob to newPeople. Expect 1 change.
        { [jacob] added at 1 }
    Changing jacob's name to jack. Expect 1 change.
        { updated at range [1, 2) }
    Updating people to oldPeople. Expect ? changes.
    oldPeople: [joe, jack]
    newPeople : [jane, jack]
        { [jane, jack] removed at 0 }
        { [joe, jack] added at 0 }

  • I have an ipod classic - is there a way to copy the contents of it to my computer - my old computer is crashed.

    how can i copy the contents of my ipod classic back to my computer - i have a new computer and the old one was crashed so all on iit was lost

    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • Is there any way to backup the content of adiscovery earch mailbox

    I have performed a Discovery search for aduting purpose an dI wonder if I can backup to ta tape the content of the resulst stored on on the Dicosver Search mailbox, to save space on my Exchange servers cluster

    Yes, you can take backup to tape, if you are already taking regular backup of your Exchange database then you don't have to really worry about taking additional backup for this mailbox.
    Second option is to export the content to a PST.
    Blog |
    Get Your Exchange Powershell Tip of the Day from here

  • Is there a way to clear the content stored in dbms_error_code

    Hi everybody,
    Here is my situation. I'm doing an application in forms 6.i. There's an ON-ERROR trigger defined at form level which calls a procedure programmed to treat errors. Inside this procedure I issue a message like "record is being used by another user" when I get the -54 dbms_error_code.
    So far, so good. The problem is when I test the lock. I do a select for update nowait to lock a record (at sql*plus) and then I try to update this record (in forms). The exception is raised just fine. But when I returned to sql*plus and issue a rollback to end the transaction and go to forms and try to continue with the operation, I succeed, the record is recorded in the database but i get the error message "record is being used by another user". This happens always in the commit line of my code and I know that it passes through ON-ERROR and issue the message.
    I know that it's because of the last error that ocurred (-54 lock). So i was wondering if there is a way of clearing this last error. Please, anyone can help me?
    Thanks anyway.

    The On-error trigger gets raised for lots of different reasons. Only a few of these are caused by database errors, and ONLY THEN should you check dbms_error_code.
    <p>When you get any other errors, ones caused by doing something wrong within the form processing, On-Error runs, but dbms_error_code is not changed. So you should not check it.
    <p>EVERY time on-error runs, you should check Error_Code, and only with certain values should you check DBMS_Error_Text. Here is an on-error trigger I use:
    <p>Re: FRM-40735:Pre_Insert trigger raised unhandled exception ORA-20011

  • Is there a way to verify the authenticity of OS X Installation media?

    Hi,
    I have been having problems with a computer being compromised and after so many re-installs, I am beginning to suspect the installation media itself. Does anyone have or know of an md5 checksum or any other hash for the disks? Is there any other method that can be used to verify their authenticy? I have:
    Mac mini
    Mac OS X Install Disk 1
    Mac OS X version 10.4.7
    AHT version 3A102
    Disc version 1.1
    2Z691-5887-A
    Mac OS X Install Disk 2
    Disc version 1.0
    ZZ691-5860-A
    Thanks in advance for any and all replies.

    Hi! The installation process normally check the media for verification. Your continued installation problems may point to another problem. Often bad ram can write bad data to a drive or the drive itself can be the problem. The cases of a bad install dvd are rare. I'd pull ram except for the original stick, then I'd zero the hard drive and try again. Otherwise the most likely suspect is a bad logic board. Have you run the hardware test disc? Tom

  • Is there a way of resizing the contents of multiple bounding boxes at the same time using the number fields in the tool bar?

    I'musing cs6 and need to resize an image and two text boxes to a specific pixel width.
    I try selecting all of the boxes and punching in 960 px in the resizing field in the tool bar but only the bounding boxes and not their contents get resized...

    Use the horizontal scale field (and include the units) rather than the width field.

  • I live on a ship and have a slow connection. Is there way to get the content via CD?

    I live on a ship and have a slow internet connection. Is there a way to get the content via CD?

    You can still get it (DVD in this case) in some places -
    http://www.amazon.co.uk/Apple-MB795Z-A-Logic-Studio/dp/B002ISDD1K/ref=sr_1_3?ie= UTF8&qid=1340218920&sr=8-3

  • My iPhone 5 has broken and is being replaced with a new iPhone tomorrow. However, My carrier (orange) will b picking up my broken iPhone and I am unsure how to secure the content and icloud data on the broken phone. Is there a way to display the data?

    My iPhone 5 has broken and is being replaced with a new iPhone tomorrow. However, My carrier (orange) will b picking up my broken iPhone and I am unsure how to secure the content and icloud data on the broken phone. Is there a way to disable the data held on it and ensure that if it is fixed, nobody can use/see my data and access my account?

    Hi Gazpan,
    Thanks for visiting Apple Support Communities.
    I recommend using the steps in this article to back up your iPhone if possible:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/ht1766
    You may also find this advice helpful for your situation:
    What to do before selling or giving away your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/ht5661
    If you no longer have your iOS device
    If you're using iCloud and Find My iPhone on the device, you can erase the device remotely and remove it from your account by signing in to icloud.com/find, selecting the device, and clicking Erase. When the device has been erased, click Remove from Account.
    If you're unable to complete either of the above steps, you should change your Apple ID password. Changing your password won't remove any personal information that is cached on the device, but it will make sure that the new owner can't delete your information from iCloud.
    Cheers,
    Jeremy

  • HT4972 I replaced the computer I originally used to synch my iPhone. I get the message stating that my content will be erased, even though this is the computer I now synch with. Is there a way to make the update recognize the new computer?

    I replaced the computer I originally used to synch my iPhone. When trying to update to iOS5.0, I get the message stating that my content will be erased, even though this is the computer I now synch my phone with. Is there a way to make the update recognize the new computer so that my content will be kept?

    The best option is to copy your entire iTunes folder from your old computer to your new one using one of the methods described here: http://support.apple.com/kb/HT4527.  This will allow iTunes on your new computer to recognize and sync with your phone without deleting content.  You will also need to copy over any other synced data not in your iTunes library such as photos synced to your phone, calendars and contacts.
    If you can't do this, these articles will help you start syncing with your new computer with minimal or no data loss:
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive
    Recovering your iTunes library from your iPod or iOS device

  • How can I acess my ipad content from the pc, without enter the security code on ipad? I broke the screen and it doesn´t work. theres a way to enter the code on the pc?

    how can I acess my ipad content from the pc, without enter the security code on ipad? I broke the screen and it doesn´t work. theres a way to enter the code on the pc? thank you

    No. Get it fix by making an appointment with the Apple genius bar.

  • HT4859 How can I verify that my App data is actually stored in iCloud. With Dropbox, I can actually see my stored files. With iCloud, itseems I'm supposed 2 just trust that Appl has the data. Short of doing a restore is there no way to check the data?

    How can I verify that my App data is actually stored in the iCloud. I can see and access my notebook, contacts etc. on the iCloud website, and I can see my photos in a folder on my Windows-based desktop compter (iCloud/Photostream). But no app data.
    With Dropbox, I can actually see all of my stored files. With iCloud, it seems, I'm supposed to just trust that Apple has my back. Short of deliberately trashing my app data and then attempting a restore, is there no way to check the data?

    You can't access them on Windows (unless you have iCloud enabled Windows programs) and I don't think any are, yet.
    iCloud data is accessed via Apps/Programs, the Windows programs vendors will have to step up (just to make it worse Microsoft have not yet enabled their Mac programs, such as Office yet) I doubt that iCloud access is much of a priority for them, complain to MS, when enough Windows users complain maybe they'll do something.

Maybe you are looking for