![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
I tried this fix and the birthdays aren't appearing in Calendar still.
"Eckhard" wrote: Yes, that works. I also found in the German Forum a macro that does this for all contacts automatically. http://www.docoutlook.de/ =============================== MS-Outlook-2000/2 Geburtstage importieren Feuerwerk auf dem Bildschirm -------------------------------------------------------------------------------- Bei einem Import von Daten in die Kontakte werden die Geburtstage nicht automatisch in den Kalender eingetragen. Ein kleiner VBA-Code kann Dir einen Haufen Tipparbeit ersparen. -------------------------------------------------------------------------------- Die Schritte im Einzelnen Damit das funktioniert, musst Du diese Anweisungen im Codefenster der aktuellen Outlook-Sitzung, oder aber in jedem beliebigen Modul eingeben. -------------------------------------------------------------------------------- Alt + F11 Visual Basic-Editor starten Doppelklick im Projekt-Explorer auf den Eintrag DieseOutlookSitzung, wobei Du gegebenenfalls zuvor die übergeordneten Zweige einblenden musst. Im Codefenster folgende Programmzeilen eingeben -------------------------------------------------------------------------------- Sub BirthdayImport() Dim myFolder As MAPIFolder Set myFolder = Session.PickFolder For i = myFolder.Items.Count To 1 Step -1 If myFolder.Items(i).Class = 40 Then myFolder.Items(i).Display mybirthday = myFolder.Items(i).Birthday myFolder.Items(i).Birthday = "12.12.2000 " myFolder.Items(i).Birthday = mybirthday myFolder.Items(i).Save myFolder.Items(i).Close 0 End If Next i End Sub -------------------------------------------------------------------------------- Visual Basic-Editor beenden Speichern des VBA-Projekts Ja. Nun kannst Du im Menü mit Extras Makro Makros die Geburtstage in den Kalender eintragen. "Vince Averello [MVP-Outlook]" schrieb: If I rememer correctly, you should try editing the contact & saving it. See if that adds the birthday correctly. "Eckhard" wrote in message ... If I import my contacts from Access the birthday is correctly shon in the contact detail, but is not shown in the calendar. If I create a contact manually, or if I edit the imported contacts'birthday, the birthday shows in the calendar. Is there a command to force Outlook to update the calender? |
Ads |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
trying to get my imported contacts b-days to show in calendar | beerluvr | Outlook - Calandaring | 2 | March 31st 07 05:20 PM |
Imported contacts populate calendar with birthdays and anniversari | Shawn | Outlook - Using Contacts | 7 | March 26th 07 04:17 PM |
Wrong Contacts Shown For Email | AnnW | Outlook - Using Contacts | 1 | March 17th 07 02:05 PM |
I've imported 500 contacts. Can calendar show ALL birthdays? | Midas$ | Outlook - Calandaring | 3 | June 3rd 06 02:36 AM |
Contacts added from phone not shown in To: box. | David | Outlook - Using Contacts | 0 | January 26th 06 08:04 PM |