Single appointment fro Access to Outlook

B

Bruno Campanini

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
 
B

Brian Tillman [MVP - 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"?

Ask programming questions in the programmiong newsgroups
microsoft.public.outlook.program_vba and .program_addins
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top