Deleting the Contacts File

My contacts file is a disaster. How can I delete it in its entirety and Load a clean file from my PC?
Post relates to: Zire 31
Message Edited by boxturtle on 12-16-2009 01:23 PM

If you go here:
XP
C:\Program Files\Palm or Palm One\[hotsync username]\address
C:\Palm\[hotsync username]\address
C:\Program Files\Handspring\[hotsync username]\address
Then delete the address.dat file. If you have data on your device then you would want to set the conduits to handheld overwrites desktop for Contacts. If you are unsure of this part post back and I gave give more detailed instructions

Similar Messages

  • I have a I phone 4. I recently changed carriers to straight talk it was working fine but I deleted the vpn file on accident. Now I can't get cellular data. Does anyone know how I can reinstall that file or download it somewhere?

    I own a I phone 4. I recently changed my service from AT&T to Straight Talk. It was working fine but then I deleted the vpn file on accident. Now when I try to get on line I get a message that I am not signed up with a cellular data network. Does anyone know how I can retrieve or download the vpn file?

    I have taken it back to the Apple store genius bar, but they say they don't see anything wrong. Well unless you use it all day and experience the problems when they happen, you wont see anything wrong. But there are lots wrong with it. But this would be the same store as I purchased the phone. And they backed up my old Iphone 4, but were not able to get anything to load back onto my new phone. So, I lost pretty much everything. But over time, some of my contacts have started showing up, although i am still missing over 800 of them.

  • I created a ringtone successfully and assigned it to a contact, but the default ring always answers, I've tried deleting the contact, and also shutting the phone down completely, but neither has worked. One tip mentioned making sure format was correct??

    I assigned a ringtone to a contact but the default answers.  I've tried deleting the contact and reinstalling it and  shutting the phone down (holding the home button in and the top button until apple icon appears), One tip mentioned making sure the format was correct. ???  Any suggestions?  The ringtone itself works if used as a default, but when I assign it to this contact, no dice.

    First thing to always do is write a Certified Return Receipt letter or just copy the post you made and send it to Verizon Wireless and dispute it in writing.
    Then walk down to your local court and file a small claims court case against Verizon for all the fraudulent charges. Verizon will call you before that court case and then it may be possible to get this wiped off your account.
    Also file a BBB complaint http://www.bbb.org
    Again Verizon will contact you to offer to settle. Get the settlement in writing not verbal. Or proceed to court.
    Sorry you are going through hell for something you should never have had to go through.
    Good Luck

  • How do I delete the Contacts Icon put on the 2G and 3G iPhones?

    How do I delete the Contacts on my 2G iPhone? I want to pass the 2G on and all my phone numbers are there and the Contacts won't deltete!

    Back up your Address Book on your Mac. Delete al the contacts. Sync the phone. All your conatats will be gone
    Unplug the phone. Restore your contacts into Address Book.
    Eaglesflight1258 is right. You can't delete the Contacts icon from the phone, and even if you could, pressing the phone button brings up the same contacts list. There's only one list of names and numbers, and both buttons use it.
    An alternative strategy is to get the other stuff to the recipient by copying the files onto his/her computer so they can be synced with the phone; then Erase everything from the phone.

  • I deleted a contact, but they still show up in my text options to send.  I would like to delete the contact from my texts too.

    I deleted a contact, but they still show up in my text options to send.  I would like to delete the contact from my texts too.

    No don't restore your iphone. I've done that several times & it has never worked. -I still have deleted contacts in my iphone texts.  *However if you do restore it you will not lose all your data, pics, text messages etc if you backup in iCloud. It restores back to original phone. Very nice :). Anyhowwww....
    I JUST  figured it out!! :))). Remove the contact from recents.
      Start a text. You should see the deleted contact. All the way to the right of the name is a symbol. The symbol is a circle with "i" in the middle. Click that symbol then in red lettering click "remove from recents".

  • HT3842 Does iTunes store the original music file and copy it into a separate folder? If i delete the original file from finder will it remove it from my iTunes library?

    Hi, on my last PC when transferring music to my new MacBook Pro i noticed i had about 6 duplicated of each song in every album i took hours in removing them.
    I Just wondered Does iTunes store the original music file and then copy it into a separate folder?
    If i delete the original file from finder will it remove it from my iTunes library or vice versa. I didnt want to lose any music like i have some how managed to on my old computer.
    Or should i keep both files of it in the Music folder and also iTunes library folder?
    Which is best ?

    DrewPowell wrote:
    I Just wondered Does iTunes store the original music file and then copy it into a separate folder?
    It does both at the same time.
    When you add files to iTunes, it copies them into /Music/iTunes/iTunes media/ folder. The original file remains where it was.
    You can drag a file to /Music/iTunes/iTunes media/Automatically add to iTunes/ folder.
    This will add to iTunes and move it to /Music/iTunes/iTunes media/.
    I keep a shortcut of this folder on my desktop then simply drag files to the shortcut to add to iTunes.
    Then there are no "extra" files around.

  • Firefox does not delete the .part file from my download folder after a successful download

    First off, I'm on a MacBook Pro, running 10.6.4 and FF3.6.12
    I've recently noticed that on occasion Firefox does not seem to delete the .part file associated with a successful download. The .part file (with a name consisting of a string of random characters followed by a .part extension) is visible in my Download folder stack, although not visible in the actual folder view. I cannot drag this file from the stack to the trash.
    The real problem stems from the fact that this seems to create a directory error on my hard drive. Were I to run Disk Utility (which I will have to do... again!), it would return with an error saying something like "incorrect block length", requiring me to boot up from my install disk and repair the drive.
    Is this maybe a bug? Is there something I might be doing wrong? Could an extension like AdBlock be messing up my downloads?

    It seems that FireFox leaves those partial download files if for any reason they get interrupted. It's possible to resume the download through various uninteresting means, but if you're like me, it gets filled up with files that I intentionally did not complete downloading.
    If you're terminal-savvy, you can set up a script that cleans up old .part files. Here's what I've set in my crontab:
    0 * * * * /usr/bin/find ~/Downloads/*.part -atime +1 -exec rm {} \; &> /dev/null
    It will delete any files in my downloads folder that are at least 1 day old.
    To install this in your crontab, launch terminal and type "crontab -e"
    This will bring up a text editor, probably vi. You'll see a bunch of ~'s down the left side. Type "i" to go into "insert" mode. The bottom left will say "-- INSERT --"
    Copy and paste (or type) the line of code I have above.
    Hit enter just to make sure you have a newline at the end.
    Hit "Escape" to exit the insert mode.
    Hit Shift-Z Shift-Z (that's Shift-Z twice) to exit the editor.
    You should see a status message "crontab: installing new crontab"
    If you type "crontab -l" you should see your newly installed crontab.
    At the top of the next hour, any .part files that are more than a day old should be deleted, and this should continue forever.

  • How to delete the Generated files from application server(open hub)?

    hi experts,
    when i try to execute process chain the DTP it is giving below dump. Exception CX_RSBK_REQUEST_LOCKED logged.
    when i execute the DTP manually and trying to delete the previous request, it is giving for dump ITAB_DUPLICATE_KEY.
    so to delete the generated file from application server, how to delete it for specific dates?
    Information on where terminated
    Termination occurred in the ABAP program "GPD6S3OE0BCVGC6L9DBNVYQARZM" - in
    "START_ROUTINE".
    The main program was "RSBATCH_EXECUTE_PROZESS ".
    In the source code you have the termination point in line 2874
    of the (Include) program "GPD6S3OE0BCVGC6L9DBNVYQARZM".
    The program "GPD6S3OE0BCVGC6L9DBNVYQARZM" was started as a background job.
    and when i check the dump it is point out at below code
    " Populate the lookup table for 0STOR_LOC
    SELECT * from /BI0/TSTOR_LOC
    into CORRESPONDING FIELDS OF table L_0STOR_LOC_TEXT
    FOR ALL ENTRIES IN SOURCE_PACKAGE WHERE
    STOR_LOC = SOURCE_PACKAGE-STOR_LOC.
    but the programme is syntactically correct only.
    how to rectify the issue.
    regards
    venuscm
    Edited by: venugopal vadlamudi on Sep 28, 2010 1:59 PM

    hi experts,
    We have written start routine to get the storage location text and sending to File located at Application server through OPEN HUB.
    here is the code written in the Transformations
    In the global section
    Text for 0STOR_LOC
        DATA: l_0stor_loc_text TYPE HASHED TABLE OF /bi0/tstor_loc
              WITH UNIQUE KEY stor_loc.
        DATA: l_0stor_loc_text_wa TYPE /bi0/tstor_loc.
    and in the code to get the text
    " Populate the lookup table for 0STOR_LOC
        *SELECT * from /BI0/TSTOR_LOC*
          into CORRESPONDING FIELDS OF table L_0STOR_LOC_TEXT
          FOR ALL ENTRIES IN SOURCE_PACKAGE WHERE
                  STOR_LOC = SOURCE_PACKAGE-STOR_LOC.
    im sure there is problem with the Routine only. i think i need to change the code if so please provide me the modified one.
    thanks
    venuscm
    Edited by: venugopal vadlamudi on Sep 29, 2010 9:37 AM

  • Deleting the original File of encryted  data

    Hello, i have two question:
    1)i want to know how to delete the original of an PBE encrypted file.
    2)After Decryption how to delete the encrypted file from directory.
    you can send answer to [email protected]
    Thanks

    Hello, i have two question:
    1)i want to know how to delete the original of an PBE
    encrypted file.You mean something like "File.delete()"?
    2)After Decryption how to delete the encrypted file
    from directory.You mean something like "File.delete()"?
    you can send answer to [email protected]
    We could, but we won't. This is a board designed to help everybody get answers - not just you.
    Grant

  • I tried to delete one item from an email folder, and my computer deleted the whole file. I cant fint it anywhere.

    I tried to delete one item from an email folder, my computer deleted the whole file and I cant find it anywhere. Any ideas?

    lindafromgainesville wrote:
    ...is there a seperate trash for email?
    In Mail, yes -

  • Is it safe to delete the cache file folder from library

    is it safe to delete the cache file folder from library ?

    As I understand it Robo doesn't really 'do' third-party
    source control. We use SourceGear Vault, but really only as a
    repository for the files. We can't really work concurrently because
    Robo needs exclusive access to the top level project files. But it
    kind of works for us, because we're on opposite sides of the globe.
    I see what you're saying on the 'local' versions of (say) the
    cpd files conflicting. If anyone else has an informed view, I'm all
    ears. We've set it up this way ourselves - I don't know of anyone
    doing the same. If someone tells me this is a bad idea, I'm happy
    to think again.
    Cheers!

  • Can I configure to always delete the master file?

    Hi!
    If I want to delete a file, I don't just remove it from the cataloge, but to delete the master file, too.
    If I use the remove key, I get the (annoying) pop up, what I want to do: (sorry, I've a german version, so I just try to translate it)
    Delete from hard disk
    Remove (default selected)
    Cancel
    Is there any chance to avoid this dialog? Or at least to chance the preselected button, so I've just to use the enter key?
    Actually I've to
    press delete
    press left arrow key
    press enter
    That is a little bit annoying and error-prone
    Thanks a lot!
    P.S.: I just found out, that ALT+DELETE is a shurtcut to remove the file from the catalog. So it would be greate to have a similar shurtcut to delete the file from the filesystem.

    Thanks!
    But it is almost the same as CTRL+ALT+DELETE, which has a special meaning in Windows :-(
    So there is no way, to get a delete action, that easiliy deletes, without pressing four keys in parallel? :-|
    Perhaps, the developers of Lightroom could provide an option, so you get the pop up, but the default action is different. That would be really great.

  • Why does the new operating system not delete the moved files from their original location - it seems like an enormous waste of space, time and effort to clean up every file once you've moved it

    Why does the new operating system not delete the moved files from their original locations - it seems like an enormous waste of space, time and effort to clean up every file once you've moved it - also, when transferring large amounts of files it becomes a very large problem remembering which files were transferred and which not.

    You're going to need to be more specific, as I'm not quite sure I understand what you're talking about.
    If you're referring to copying from an external hard drive or flash drive, and you want to actually move files rather than copy them, you can hold down the option key to force it to do a "move" rather than a "copy." This is not new behavior, though... the Mac OS has worked this way as long as I can recall (and I've been using it since 1984).
    If you're having a problem with trying to move files from one place to another on a single drive causing them to be copied instead, that is likely because of some permissions issue preventing you from actually being able to move them.

  • Hi Friends... I'm trying to delete a back-up file on mu TC but I get the message "The operation could not be completed because the item "bands" is in use. I'd like to start the Back from scratch, could help me out with deleting the current file?

    Hi Friends...
    I’m trying to delete a back-up file on mu TC but I get the message “The operation could not be completed because the item “bands” is in use. I’d like to start the Back from scratch, could help me out with deleting the current file?

    Sorry, I am very confused. I asked the following question....
    Is this the only backup file on your Mac, or do you have other backup files and data on the Time Capsule disk?
    The answer that you gave was....
    This is the only one
    Now you are saying that....
    But I have lots of other files on Time Capsule! The back up file is only one of them.
    Can you clarify, please?

  • Trying to use a new, larger external hard drive for my Time Machine backup.  However, every time I start the backup, it gets started then fails.  And, I can't delete the few files that did save on the external.  Sort of a catch 22.  Any ideas?

    Trying to use a new, larger external hard drive for my Time Machine backup.  However, every time I start the backup, it gets started then fails.  And, I can't delete the few files that did save on the external.  Sort of a catch 22.  Any ideas?

    Is it a USB hard drive?  USB hard drives have the problem of not giving full speed if they are hooked up on the same bus as keyboards and mice.  Double check your profiler to make sure that is not a problem.  If it is Firewire, make sure there aren't other firewire devices in use at the same time.  I recommend not only keeping a Time Machine backup, but also a clone, and if you do use Time Machine, to make sure the Time Machine drive or partition is at least twice the size of the original drive.

Maybe you are looking for

  • Oracle 8i Lite Start up

    Hi everybody, I've windows/2000 pro installed on my m/c. The client version of it. I'm using this m/c to surf the net and do some MS Acesses development and VB development. Now, I'm trying to do something with Oracle 8i Lite. I've received oracle 8i

  • Mistake in codes

    Hello Experts, I hav written a procedure to migrate data from one table into another. One issue is arising regarding this part. in my table i am getting the value of lookup fsr in most of the fsr column begin                                select a.r

  • Voting disk issue in Windows 2003 server

    I installed oracle RAC 10g with ASM on windows server 2003 R2. I was able to successfully install clusterware as well as ASM with database. Prior to the install, I ran diskpart and then set automount enable. I was able to configure the ocr, ocrmirror

  • Installation done succesfullly - Document.pcc is null or not an object

    Hi I have installed Plumtree on my Machine. All logs files says that installation sucessfully. DSN created successfuly. There are 2 websites created 1. Portal 2. ptapi BUT I HAVE FOLLOWING PROBLEMS When I run the PORTAL it displays following error me

  • Regd javascript

    How can we create Vectors in JavaScript