Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6673365
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:37:09+00:00 2026-05-26T03:37:09+00:00

When I manually make a calendar reminder/appointment, I can then click Invite Attendees and

  • 0

When I manually make a calendar reminder/appointment, I can then click “Invite Attendees” and chose the people to invite and then click “Send” and everyone will receive that calendar reminder/appointment.

I have the following code to make a reminder programmatically, but it won’t send to the intended recipients. If I open the reminder after the script has run and click on “Invite Attendees” I can see the list is filled with the people I want to send the reminder to, so I’m not really sure why it’s not actually sending the reminder to them.

Can anyone shed some light on this for me?

Private Function CreateAppointment(SubjectStr As String, BodyStr As String, StartTime As Date, EndTime As Date, AllDay As Boolean)
    Dim olApp As Outlook.Application
    Dim Appt As Outlook.AppointmentItem
    ' Only create the reminder if there's no duplicate
    If (CheckForDuplicates(SubjectStr) = False) Then
        Set olApp = CreateObject("Outlook.Application")
        Set Appt = olApp.CreateItem(olAppointmentItem)
        Appt.Recipients.Add ("John Doe")
        Appt.Recipients.ResolveAll
        Appt.Subject = SubjectStr
        Appt.Start = StartTime
        Appt.End = EndTime
        Appt.AllDayEvent = AllDay
        Appt.Body = BodyStr
        Appt.ReminderSet = True
        Appt.Save
        Appt.Send
    End If
    Set Appt = Nothing
    Set olApp = Nothing
End Function
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T03:37:10+00:00Added an answer on May 26, 2026 at 3:37 am

    A meeting is a specific type of appointment — an appointment that other people are invited to.

    In order to make an appointment a meeting, you need to do more than just invite attendees. You need to set the status to ‘Meeting’. Add this to your code:

    Appt.MeetingStatus = olMeeting
    

    Also note that you set a reminder, but didn’t set a reminder time. For example,

    Appt.ReminderMinutesBeforeStart = 30
    

    Finally, if this is Outlook VBA, why are you using CreateObject? You should be using the native Application Object to derive all your objects.

    i.e. instead of

    Set olApp = CreateObject("Outlook.Application")
    

    you would use

    Set olApp = Outlook.Application
    

    HTH

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I make a calendar in php so that the users will not
Recently I was trying to make a calendar application that will display the current
I use ABUITableViewCell and draw all content manually. Also I use CGContextClip to make
Hope you can help me with this one. I need to make a program
I use an XMLWriter to manually make an XML document. Is there a way
do you use a tool? or just manually make them?
How do I manually touch a UIView means programattically. I want to touch a
Is it possible to manually connect to the database using sqlclient and sqlconnection (ie
I only manually set one cookie on my social network site, but I rely
I need to manually edit some of the files inside of the .cmp file

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.