Sprint HTC Hero :: Duplicate Entries On Phone Calendar

Nov 20, 2009

When I had my blackberry, I had google sync and my calendar on my phone synced with google (and vice versa) now I'm on the Hero, I noticed any entry I make on the phone duplicates and appears in my calendar on the phone twice. But entries I make in google calendar only appear once. How do I stop this?

Sprint HTC Hero :: Duplicate Entries on Phone Calendar


Sprint HTC Hero :: Deleting Duplicate Entries In Contacts And Calendar?

Jul 14, 2010

I am sick and tired of deleting duplicate entries in contacts and calendar. There is no rhyme or reason. I get some contacts duplicated numerous times. I get duplicate appointments and my new ones refuse to link to the PC. I have tried everthing that two weeks of constant googling can come up with. I am sooooooo GD sorry that I purchased this POS phone and from my point of view the Android system is also a POS.

Next time I am going to finally bite the bullet and get an iPhone.

If anyone has something new please let me know what to do. I have deleted ALL contacts in Google. I have deleted ALL duplicate contacts at least a dozen times. The stupid system still adds, at random, duplicate contacts and tasks. The stupid phone has even linked contacts with no reason or input from me. The calendar has put holidays in numerous dates. Columbus day was in the calendar seven times when I did the last cleanup (I have done 3 seperate cleanups today alone). Independence day was put on both July 4th and 5th. When I deleted it from the 5th it disappeared altogether. I thought my old Palm Treo was bad.

View 2 Replies View Related

HTC Tattoo :: Unstable Sync - Duplicate Calendar Entries On Phone And PC

Feb 26, 2010

I've recently got a a Tattoo and it is mostly fine (apart from the ridiculously hard to remove battery cover!). But the thing that is driving me nuts is how unstable HTC Sync is. I have uninstalled, re-installed on the PC and phone and had to delete all contacts on the phone once to "cleanse" and still every time I go to sync my calendar and contacts something goes wrong. Duplicates contacts and calendar entries in the phone and and on my PC! My work phone is windows and active sync is a dream compared to this!

View 1 Replies View Related

General :: Duplicate Exchange Calendar Entries

Jun 1, 2010

Recently my exchange calendar has shown duplicate entries for the items. It started as two entries and now it is three. I have disabled the calendar for a week, but they showed up again after I re-enabled it. I deleted my exchange account on the phone and re-added it - no changes. How to get rid of the duplicates? I don't have an issue deleting the exchange account from my phone and removing any data files - I just need to know what to remove to clean it up - before I re-add the account.

View 2 Replies View Related

Motorola Droid :: Corporate Calendar Duplicate Entries

Dec 12, 2009

Has anyone else noticed a problem with Corporate Calendar showing duplicate meeting entries? Everything was fine until my corporate password expired. After I reset my corporate password, changed the Droids corporate mail/calendar password to match and now all of my calendar entries have been duplicated.

View 8 Replies View Related

Sprint HTC Hero :: Some Calendar Entries One Hour Behind

Nov 1, 2009

Some calendar entries from outlook calendar are 1 hour behind what they should be? Can't figure this one out.

View 6 Replies View Related

Sprint HTC Hero :: How To Search Calendar Entries?

Jan 28, 2010

For the life of me, I can't find a way to search for entries in my calendar other than manually swiping left or right while viewing the day in time grid format. This works of course but it has some obvious limitations. Now I can predict that someone will say, just use the Gmail Calendar. This is because calendar entries input into the Web Gmail Calendar show up in my HTC Hero calendar and the Gmail Calendar has a search option; i.e. so I could go to the Web, open the Gmail Calendar and search for the item there. This method works, of course, but it's kind of double the work and forces me to depend on the web instead of my HTC phone where I'd prefer to search directly inside the default Hero calendar application.

View 2 Replies View Related

HTC Hero :: Can't Sync New Entries In Mobile's Calendar With Outlook

Aug 21, 2009

I've imported all the contacts from outlook to my mobile without any problem but when I open People they are divided in two alphabetically sorted lists: i have some contacts sorted from A to Z and then the remaining sorted as well from A to Z but this second batch has dividers between contacts starting with different letters.All my contacts are there but it's very annoying to have them divided in 2 lists, any idea how to organize them in a single list?Second problem is that I can't sync new entries in the mobile's calendar with outlook. HTC Sync doesn't see them at all. Any idea how to fis this as well?

View 3 Replies View Related

Sprint HTC Hero :: Calendar Events Not Syncing From Phone To Outlook Calendar

Aug 12, 2010

The events I am scheduling on my Hero are not syncing to my Outlook calender.

View 3 Replies View Related

Samsung Moment :: Duplicate Entries In Contacts

Jul 29, 2010

If i edit a contact, it's got like 3 rows of the same info listed, what's the best way to clean this out?

View 4 Replies View Related

Samsung Captivate :: Duplicate Contact Entries - SIM And FB

Oct 22, 2010

I just bought the Captivate 2 days ago and this is my first Android phone. I have tried to sync my contacts and FB together (not all of my FB contacts as I have 500+) but just the main people I talk to on a regular basis and it has created duplicate entries in my contact list. I know this not an operating hinderance to the phone but it is just annoying.

What is the point of syncing when it just created more entries? It also has duplicates in the drop down to: part when I create a new text message. Should I take all of my contacts off my SIM and copy them to the phone? Is there a way to have one entry for my contacts including the FB pic? I am importing my contacts from hotmail to gmail now and hoping this might help.

View 1 Replies View Related

Android :: Ghost Calendar Entries Showing Up In Calendar / Not In Google Calendar

Nov 10, 2009

I'm a new Droid Eris user and have been using Google Calendar for some time.I have a single calendar set up which is syncing with the Eris.I can successfully add/edit/delete entries from both applications and have them show up just fine on the other side.I have a couple of recurring entries that I've since deleted in Google Calendar but are still showing up on my Eris.The unique thing about both of these entries is that they were meeting requests sent to my Gmail address and accepted from there.They have since been cancelled from the original sender and are now removed from my Google Calendar.My calendar entries are labeled as dark blue, and these two show as light blue.I cannot select them on the Eris to edit or delete them.

View 3 Replies View Related

Android :: SQLite Statement Produce Result To Indicate Duplicate Entries?

Oct 28, 2009

For my application, I am trying to add entries without having a duplicate entry, and if there are a duplicate notify the user and have him try again. Using SQLite, which I know very very little about, I have tried these two ways and want to know which one is better, more efficient or a better way to develop it? First way:

db.execSQL("INSERT INTO " + DatabaseHelper.DATABASE_TABLE +
"(LATITUDE, LONGITUDE, RATING) SELECT " + latitude + ", " + longitude + ", " + rating +
" WHERE NOT EXISTS (SELECT 1 FROM " + DatabaseHelper.DATABASE_TABLE +
" WHERE LATITUDE = " + latitude + " AND LONGITUDE = " + longitude + ")");

Second way:

long id = -1;
try { id = db.compileStatement(
"SELECT COUNT(*) FROM " + DatabaseHelper.DATABASE_TABLE
+ " WHERE LATITUDE = " + latitude
+ " AND LONGITUDE = " + longitude)
.simpleQueryForLong();
} catch (NullPointerException e) { return -1;
} return id;

The first way, either inserts or ignores the values, I check by doing so, storing the row-count of the rows into a variable before the call, call that function, and then check its results. If the results is not higher than it was before the call, the insert was made ignored, prompt the user with the 'values exist' message. (Very sloppy, I know but desperate times calls for desperate measures). The second way, returns the actual count of rows that match the numbers I want to store, if the number returned greater than 1, prompt the user with the 'values exist' message. I have been going back and forth, trying different ways but I do not know how to set up SQLite to have UNIQUE pairs, which I was told would be the easiest.

View 3 Replies View Related

HTC Droid Eris :: Calendar Entries Not Shown On Phone

May 28, 2010

I have Google Calendar entries from January through today that show on the Google Website, but only the last 30 days and forward show up on my Eris. Is there a way to show all the calendar entries from January through the present day? I have the 2.1 OTA, have done the Factory Reset, and have synchronized my Google Gmail, Contacts, and Calendar entries.

View 2 Replies View Related

General :: Print Or Synch Phone Calendar Entries?

Jan 29, 2012

I've been using the *phone* calendar to make appointment reminders when I'm out and about. Now, I need to print those out for the past six months and I've searched all over--it doesn't seem possible.

Is there some clever poorly documented way to either PRINT the phone's calendar appointments? Or to synch them to another app on the PC, like Outlook, or the main Google Calendar account, so that they can be viewed and printed from the PC as well?

The information from my own Google Calendar shows up on the phone--but the phone's calendar appointments don't show up on except from the phone, where they can't be printed out.

View 2 Replies View Related

General :: Galaxy Note I717 / ICS 4.0.4. - Media Scanner Making Duplicate Song Entries

Sep 28, 2012

I used to have a problem with the media scanner making duplicate song entries, only one would play and the other was invalid. For some reason that went away and now it adds media once and never scans again, so if I add songs later they never get picked up to be shown in the music player or winamp etc.

I found these tips:

go to application manager> all application and search
-media storage,
-music player,
-gallery application

and just delete cache and data and restart. It will solve the problem a it force to re build data base

This works still but it is a complete PITA because it resets wallpapers, ringtones and all sorts of other things to default and I don't want to have to do this every time I add a song. How do I fix the media scanner, does it even have logs or something I can look at?

Galaxy Note i717 ICS 4.0.4.

View 1 Replies View Related

Sprint HTC Hero :: Duplicate Emails Being Sent To Recipients

Dec 14, 2009

I've noticed that duplicate emails are being sent to my recipients. Especially when I send a photfrom the camera by going "Share>Mail" it sends two emails to the recipient. I can't figure out why...Anyone?

View 1 Replies View Related

Sprint HTC Hero :: Duplicate Apps In All Programs ?

Nov 11, 2009

I switched my SMS to Handcent to resolve the battery issue. The tutorial I followed recommended reinstalling Hero's battery after doing all the software stuff. I took this to mean "take it out and put it back in." Well, I did that and it worked for the battery issue, but when I went to my "all programs" a bunch of my apps were listed twice (facebook, some games, etc). I dragged and removed the extra apps but every time I come back to all programs, they are still listed twice. Weird, I know. This isn't a drastic problem, but it is annoying esp if it keeps happening to additional programs.

View 2 Replies View Related

Sprint HTC Hero :: Looking For Calendar App For Phone?

May 27, 2010

A Calendar App for the Hero that (a) has holidays already plugged in (so I can look ahead and find out what day Christmas falls on, etc), and (b) let's me schedule things (vacations, trips, appointments and meetings) then reminds me of those things via something like a pop-up or text message the day before. Does anything like this exist?

Every App I look at has to be "synced" with something else, or just seems to have way more than what I need. Ideas? Bueller? Anyone?

View 7 Replies View Related

Sprint HTC Hero :: Duplicate Text Messages / Stop It

Dec 28, 2009

Starting yesterday I have been getting duplicate text messages sometimes 3 of the same one. I've been using sms popup for over a week now and haven't had a problem until yesterday. Just wondering if anyone else is having the same problem and If they have sms pop-up or is it a Sprint or Hero thing? TIA for any insight or solutions.

View 1 Replies View Related

Sprint HTC Hero :: Way To Stop Duplicate Text Message Notifications?

Nov 5, 2009

Anyone have a workaround for this yet, sorry if it was already posted in a diffrent thread.

View 3 Replies View Related

Sprint HTC Hero :: Calendar Color Mismatch Between Phone And Online

May 26, 2010

Running 2.1 - Anyone else run into the problem of the calendar colors not matching up on their phone with the colors in their Google Calendars online? Just noticed today that all calendars are either red or blue, and not even close to what colors I use online.

View 3 Replies View Related

Sprint HTC Hero :: Prevent Phone From Syncing New Calendar Events?

Dec 1, 2009

When I sync my Sprint HTC Hero with Windows Vista (using HTC Sync version 2.0.8), I get the following error message: "The application com.android.providers.calendar (process com.htc.calendar) has stopped unexpectedly. Please try again." I also get this message occasionally when I'm not syncing. It doesn't seem to prevent my Hero from syncing new calendar events, but the error message is annoying. Anyone have an idea why I'm getting it and what I can do about it?

View 1 Replies View Related

Sprint HTC Hero :: 100% Google Voice - No Duplicate Text Messages - Retain SMS History

Oct 18, 2009

I want to be on GV 100% (voice, txt, whatever else GV provides) the problem wiht this so far is that i get duplicate text messages - which is annoying the reason for my frustration as i see it is that GV is not as integrated into the phone the same way voice calls are - when you dial out, it goes out through my GV number, not my number from my carrier now, i could send a txt to someone using google's GV widget, but the problem with that is i lose the ability to click on the Messages button in the contact's info page (see pg 36 in the manual) and see my entire text history with that client bummer however, as a result of this whole stock-message-app-draining-the-battery "thing" i've jumped onboard the handcent bandwagon turns out, handcent stores its messages in the phones database/memory/whatever so that the text history is retained and accessible via that Messages button in the contact info page! nice! now.. if only you could send OUT to GV's system through these 3rd party messaging apps (thus avoiding GVs app and its inability to save/store txt msg history in the contacts page), we would be set!

Well, today i learned that when a person sends you a txt through the GV service (ie - they send you a text to your GV number), it appears to you as a 406 area code (see here - read TuXian's post) and furthermore, you can save that number in the contact's info page and send to that person using that number its not "perfect" because its not "seamless" -- the end user has to THINK - and DO SOMETHING for this system to work which is okay for us "techies" and "enthusiasts" - but for the general public, that's not gonna cut it but it seems to work at this point either HTC needs to improve teh Sense UI to incorporate content generated in the GV widget/app, or google needs to store its data in the Hero's file structure.... but this is definitely "kludgy" and they will need to a better job if they expect to rival apple and the iphone in a meaningful and significant way (ok, where did that little rant come from!)

View 4 Replies View Related

Android :: How To Transfer Calendar Entries And Contacts?

Jun 14, 2010

Upgrade time. Moving from a Nokia 6220 to a Legend or Desire. How do I transfer my calendar entries? The calendar contains everything i.e. birthdays, holidays etc. Also my contacts ( 200+ ) entries? I have html files also.

View 3 Replies View Related

Android :: Invite People To Calendar Entries

Dec 25, 2009

Two Android phones in the house, me and my son. In my Gmail calendar online, I can see my and his calendars and can add entries to either. Is there any way to view his calendar on my phone in the built-in calendar app? Is there a way to add entries to his calendar, or to invite him to appointments I create in my calendar?

View 3 Replies View Related

Android :: Calendar Double Entries Occasionally

Feb 17, 2010

There are occasions where I create a new entry in my calendar on the phone and I end up with 2 entries for the same date and time. This is something I cannot seem to replicate intentionally. How can I set the refresh interval for syncing my phone with Google online? I know I can go through settings, google and press menu > sync now, but how can I decide how often the phone does this automatically?

View 2 Replies View Related

Motorola Droid :: How To Delete All Calendar Entries?

Jan 3, 2010

What's the quick and easy way to clear out my Droid's Gmail calendar? I sync two/from Outlook and the cloud, and need to clear off my Droid and Gmail to get things back in sync after some changes I've made. The last time I wanted to do something like this, I emptied (deleted) my Gmail calendar on the web, but for some reason the phone calendar didn't clear out, and I ended up doing a reset to start over. I'm sure there's an easier way, like removing the account from the phone, but it's the primary account and I don't want to delete my contacts from the phone or cloud.

View 8 Replies View Related

HTC Desire :: Removing Calendar Account And Its Entries?

May 19, 2010

Right, all my appointments are stored on my Outlook calendar at work. I can't get activesync to work with my server, so let's ignore that option. What I have been doing is using Google Calendar sync running on my PC to sync entries to my Google calendar. So far so good. Now initially, I synced my Desire to Google Calendar using the "Google" account in "Accounts and Settings". that worked fine. The entries in the Calendar app were given a blue stripe to identify them as being from the Google sync account.

I wanted to start using Google's own exchange servers to get my email and when I added that as a new account, I saw I could also sync calendar via the google activesync account. So I tried that too and predictably I got duplicate and double entries (oooo-er) in my Calendar app. So I just unticked the Google calendar and used the google-exchange one instead. Now today I wanted to do some large scale tidying up and noticed that in my Calendar, I have entries (orange stripe) which are listed as "Exchange" entries but under the Calendar settings - there is no longer an Exchange calendar!
All I have is PC Sync - nothing on that one
And Google sync! (the blue entries)
So how do I get rid of the exchange entries?

View 1 Replies View Related

HTC Incredible :: Google Calendar Entries Not Syncing

May 22, 2010

I can't figure out what it going on and I'm hoping that somebody here can help me. I am using the stock HTC calendar widget for my calendar, but I can't get any calendar entries dated before April 1,2010 to sync with my phone anymore ~ they were there when I first got my phone, but now they are gone. My google calendar goes back over 2 years when I view it on my computer so I know all the information is still there, I just can't get it to show up on my phone. Any idea what has happened? Oh, and if anyone can suggest a better calendar application? than the HTC one, that will still sync with my Google calendar, I'm willing to try that and just forget about the HTC one.

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved