BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 05-02-2006, 09:31 AM   #1
ronag
Knows Where the Search Button Is
 
Join Date: Feb 2005
Location: Toronto
Model: Curve
Carrier: Rogers
Posts: 19
Default Task Dates going crazy

Please Login to Remove!

Each time I sync my Blackberry 8700r there are 4-5 of my tasks that get the dates all changed! I only make due date changes on the desktop computer, and once i sync, they are properly sent to my Blackberry. If i re-sync the next day (with no task changes) it messes up the dates - "due 2060, 2499, etc). Each day, I re-set the due date to "none", and within a day or two, it all goes nuts again!

We have the following setup:
Blackberry 8700r
BES 3.6 (with latest service packs)

I'm not sure if the BES is related to this, but posted here because we use a BES.

Thanks in advance!
Offline  
Old 06-26-2006, 05:31 PM   #2
Mikem42
New Member
 
Join Date: May 2005
Model: 9000
Carrier: AT&T
Posts: 13
Red face Seeing the same problem

I'm seeing a similar problem, but not quite as extreme as you seem to have. Only a handful of tasks seem to run into this, and only if they have been around for a while, and usually if I have changed categories at least once (may be red herring).

I don't know how to avoid the problem, but I wrote a quick VBA script to move all the unrealistic due dates to the current date, which at least partially cleans up the mess in an automated way. Here's the VBA code:

Code:
Sub xfixdates()
    ' I'm not sure why, but I've had some issues with really wacky start and due
    ' dates getting applied to some tasks, which is pretty annoying. So I wrote
    ' a script to clean them up.
    '
    ' There's hardcoded values for date+days and date-days tasks to correct. I've
    ' got mine set to date+900days and date-5000 days. Seemed like safe values
    ' given my usage model where I keep some older (completed) tasks for historical
    ' reasons.
    Dim myolApp As Outlook.Application
    Dim myNamespace As Outlook.NameSpace
    Dim myFolderTasks As Outlook.MAPIFolder
    Dim myItems As Outlook.Items
    Dim myItem As TaskItem
    Dim ReportString As String
    
    ReportString = ""
     
    Set myolApp = CreateObject("Outlook.Application")
    Set myNamespace = myolApp.GetNamespace("MAPI")
    Set myolApp.ActiveExplorer.CurrentFolder = myNamespace.GetDefaultFolder(olFolderTasks)
    Set myFolderTasks = myolApp.ActiveExplorer.CurrentFolder
    
    For Each myItem In myFolderTasks.Items
        If myItem.DueDate = #1/1/4501# Then
            ' this is the value for Due Date = "None" - do nothing
        ElseIf (myItem.DueDate > Date + 900) Or (myItem.DueDate < Date - 5000) Then
            ' the following line is for debugging and setting breakpoints on
            'ReportString = "item " & myItem.Subject & " date " & myItem.DueDate
            myItem.StartDate = Date
            myItem.DueDate = Date
            myItem.Save
        End If
    Next
End Sub
Usually you can just dump this into the MS Visual Basic editor that comes up when you open up "Tools -> Macros -> Visual Basic Editor".

I'd certainly be interested in a real fix, but for now, this resolves some of the issues for me...

- Mike http://3cats.us/
Offline  
Old 07-13-2006, 09:29 AM   #3
achy eyes
New Member
 
Join Date: Jul 2006
Model: 8700g
Carrier: BT
Posts: 1
Default I had the same problem

I had the exact same problem. Spoke with BB tech support for a few hours yesterday and they didn't have it logged into their DB of problems. We did two things that solved the problem:
1) Completely removed all of the desktop software from the computer. This included an uninstall, registry edit, and deleting of the directories. I then installed a clean copy.
2) Cleared all of the tasks from the BB (via the Desktop Software).

I haven't seen the problem reoccur..
Offline  
Old 08-17-2006, 10:27 AM   #4
BBBOZ
New Member
 
Join Date: Feb 2006
Model: 8700c
Posts: 7
Default

Another simple solution;
If you don't use start dates/due dates just remove these two fields from your sync (PIM>advance settings>click on the arrows).
__________________
8700C TMO BES
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


VoIP-GSM Topex VoiBridge picture

VoIP-GSM Topex VoiBridge

$250.00



Fortinet FON-570 VoIP Phone - Corded picture

Fortinet FON-570 VoIP Phone - Corded

$30.00



Allworx 9212L VoIP IP Business Telephone W/ Backlit Display - Black picture

Allworx 9212L VoIP IP Business Telephone W/ Backlit Display - Black

$19.99



"NEW" RingCentral Polycom VVX 311 6-Line VoIP IP SIP Business Media Phone

$14.95



Allworx VOIP Connect 536 VoIP Communication System Server w/ rack ears picture

Allworx VOIP Connect 536 VoIP Communication System Server w/ rack ears

$279.99



Zenitel TKIS-2 Vingtor Stentofon VOIP Intercom Module picture

Zenitel TKIS-2 Vingtor Stentofon VOIP Intercom Module

$299.99







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.