Simple question - is it possible to open the Outlook calendar directly from a button in Excel without opening Outlook, ?

chazrab

Well-known Member
Joined
Oct 21, 2006
Messages
884
Office Version
  1. 365
Platform
  1. Windows
If not, then is it possible to create an Outlook type calendar in Excel with the same features, i.e.
1. create any message in a square(1 day of the month)
2. attach a notification reminder to it with a time and a sound alert
3. Postpone, add, edit and delete buttons

Thanks for anyone's help on this
cr
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
VBA Code:
Option Explicit

Sub ShowCal()

' Note! Before you can use these example you must set a reference to the Outlook Object Library.

Dim olApp As Object ' Outlook.Application
Set olApp = CreateObject("Outlook.Application")
olApp.session.GetDefaultFolder(olFolderCalendar).Display

End Sub
 
Upvote 0
Hi logit - thanks for replying back. It works great - is there any way to make the Outlook calendar stay on top (i.e., as in Showmodal = false for userforms) , once open in Excel ?

Thanks, cr
 
Upvote 0
I haven't been able to locate a COMMAND SWITCH that would instruct Outlook Calendar to remain on top of other windows.
There are a number of add-ons that will assist with this requirement.

This add-on is only about 20 Kb in size :

Download OnTopper - MajorGeeks


This add-on is about 10 Mb in size :

Actual Window Manager - Download Center - Actual Tools


Note: I have not utilized any of these add-ons or any other. You will need to decide on your own if this is the path you want to take.
 
Upvote 0

Forum statistics

Threads
1,214,935
Messages
6,122,337
Members
449,077
Latest member
Jocksteriom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top