A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Showing scheduling page when opening appointment



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old February 6th 09, 08:35 AM posted to microsoft.public.outlook.program_vba
Jeroen
external usenet poster
 
Posts: 14
Default Showing scheduling page when opening appointment

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?
Ads
  #2  
Old February 7th 09, 04:23 PM posted to microsoft.public.outlook.program_vba
Jeroen
external usenet poster
 
Posts: 14
Default Showing scheduling page when opening appointment

Anybody who has any ideas?

"Jeroen" wrote:

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?

  #3  
Old February 12th 09, 01:19 PM posted to microsoft.public.outlook.program_vba
Jeroen
external usenet poster
 
Posts: 14
Default Showing scheduling page when opening appointment

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.



"Jeroen" wrote:

Anybody who has any ideas?

"Jeroen" wrote:

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?

  #4  
Old February 12th 09, 04:44 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Showing scheduling page when opening appointment

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).

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Jeroen" wrote in message
...
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.



"Jeroen" wrote:

Anybody who has any ideas?

"Jeroen" wrote:

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?


  #5  
Old February 17th 09, 02:22 PM posted to microsoft.public.outlook.program_vba
Jeroen
external usenet poster
 
Posts: 14
Default Showing scheduling page when opening appointment

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.

"Ken Slovak - [MVP - Outlook]" wrote:

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).

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Jeroen" wrote in message
...
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.



"Jeroen" wrote:

Anybody who has any ideas?

"Jeroen" wrote:

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?



  #6  
Old February 17th 09, 03:08 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Showing scheduling page when opening appointment

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.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Jeroen" wrote in message
...
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.


  #7  
Old February 17th 09, 10:35 PM posted to microsoft.public.outlook.program_vba
Jeroen
external usenet poster
 
Posts: 14
Default Showing scheduling page when opening appointment

Thanks Ken, now I can continue.



"Ken Slovak - [MVP - Outlook]" wrote:

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.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Jeroen" wrote in message
...
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.



 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
scheduling details not showing BorisS Outlook - Calandaring 2 December 17th 08 12:54 AM
Showing Meeting Organizer in Scheduling View Pershing2 Outlook - Calandaring 1 December 15th 08 09:45 PM
Outlook 2007 Showing calendar on opening page with open Inbox John Butler Outlook - General Queries 0 March 8th 07 01:08 PM
No information showing for scheduling Andrew Outlook - Calandaring 0 February 12th 07 12:50 PM
Resource (already booked) not showing in Scheduling tab eMTee Outlook - Calandaring 3 September 13th 06 06:38 AM


All times are GMT +1. The time now is 08:58 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.