Showing scheduling page when opening appointment

  • Thread starter Thread starter Jeroen
  • Start date Start date
J

Jeroen

Hello,

When I make an appointment I want to open it on the scheduling page, that
works fine with Office 2003 but with Office 2007 i'm getting an persission
error/page does not exist error. I noticed that the name of the "tab" isn't
scheduling but scheduling assistent. So I tried to open it with that name but
the same error occured.

Anybody who has any idea how to fix this?
 
The code is as follows:

SetCurrentFormpage("Scheduling");
Appointment.Display(false);

The exact message is:

The specified page does not exist or does not allow that operation.

Works nice with Outlook 2003 and Outlook 2007 without Exchange but with
Outlook 2007 with Exchange I get the error.

I'm hope someone has an answer because I need to get the application to our
customers.
 
Usually when you don't get answers it means no one has a clue. In that case
after a few tries perhaps the best solution is to open a support case with
MS and see if they can figure it out (for money of course unless you have
free support incidents from an MSDN subscription).
 
Ok, I understand it.

Is it possible to see if Outlook has Exchange attached to it?

The i can disable the code and not get an error.
 
You can use NameSpace.ExchangeConnectionMode. That returns a member of the
OlExchangeConnectionMode enum. The value olNoExchange (0) is returned if no
Exchange is being used.
 
Thanks Ken, now I can continue.



Ken Slovak - said:
You can use NameSpace.ExchangeConnectionMode. That returns a member of the
OlExchangeConnectionMode enum. The value olNoExchange (0) is returned if no
Exchange is being used.
 
Back
Top