View Single Post
  #1  
Old January 29th 09, 07:49 AM posted to microsoft.public.outlook
Bruno Campanini
external usenet poster
 
Posts: 8
Default Single appointment fro Access to Outlook

I'm able to send a single appointment from inside Access to Outlook.
This is the core code:
With OutAppt
.Subject = [Nominativo_Paziente]
.Start = [DataInizio] & " " & [OraInizio]
.End = [DataFine] & " " & [OraFine]
.FormDescription = [DescrizioniVarie]
.Location = [Nominativo_Medico]
.ReminderSet = False
.Save
End With

How can I tell him to "Replace duplicates with items imported"?

Bruno
Ads