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 - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Outlook Preview (Reading) Pane



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old January 12th 06, 03:30 PM posted to microsoft.public.outlook.program_forms
[email protected]
external usenet poster
 
Posts: 1
Default Outlook Preview (Reading) Pane

Hi, guys!

I need a little help, please.
The goal is to create a simple HTML page that exposes Outlook 2003
Message Folders functionality through Outlook View Control.
Is it possible to display a Preview (Reading) Pane on the same HTML
page? Like actual Outlook 2003 has?

HTML Code:


!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTML xmlns:mso = "urn:schemas-microsoft-comfficeffice" xmlns:msdt
= "uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
META http-equiv=Content-Type content="text/html;
charset=windows-1252"
META content="MSHTML 6.00.2900.2769" name=GENERATOR
BODY leftMargin=0 topMargin=0 rightMargin=0 bottomMargin=0
OBJECT classid=CLSID:0006F063-0000-0000-C000-000000000046 height=50%
width=50% id=ViewCtlFolder
PARAM NAME="Namespace" VALUE="MAPI"
PARAM NAME="Folder" VALUE="Inbox"
PARAM NAME="Restriction" VALUE=""
PARAM NAME="DeferUpdate" VALUE="0"
/OBJECT
/BODY
/HTML

  #2  
Old January 12th 06, 04:51 PM posted to microsoft.public.outlook.program_forms
Alex
external usenet poster
 
Posts: 4
Default Outlook Preview (Reading) Pane

In addition, I am looking to create simple HTML page to present to the
users. Page (if it is possible) is going to be splitted in two windows
(?), one window will have a Outlook folder with e-mails and another is
a preview pane. This functionality is a mirror of an Outlook. I do not
want to show any custom forms with or without code in reading pane,
strictly messages with plain and HTML body (do not care about messages
with code).
I am a beginner in HTML, but I think that this is possible to achive.

  #3  
Old January 19th 06, 08:41 PM posted to microsoft.public.outlook.program_forms
Alex
external usenet poster
 
Posts: 4
Default Outlook Preview (Reading) Pane

Does anyone has an idea which way should research go?
Thank you,
Alex.

  #4  
Old February 1st 06, 12:02 AM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Outlook Preview (Reading) Pane

You cannot control what the reading pane displays. It will execute its built-in behaviors on the item the user selects.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Alex" wrote in message oups.com...
In addition, I am looking to create simple HTML page to present to the
users. Page (if it is possible) is going to be splitted in two windows
(?), one window will have a Outlook folder with e-mails and another is
a preview pane. This functionality is a mirror of an Outlook. I do not
want to show any custom forms with or without code in reading pane,
strictly messages with plain and HTML body (do not care about messages
with code).
I am a beginner in HTML, but I think that this is possible to achive.

  #5  
Old February 1st 06, 12:01 AM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Outlook Preview (Reading) Pane

Yes, the folder home page replaces the item list. The reading pane can be either on or off.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


wrote in message oups.com...

The goal is to create a simple HTML page that exposes Outlook 2003
Message Folders functionality through Outlook View Control.
Is it possible to display a Preview (Reading) Pane on the same HTML
page? Like actual Outlook 2003 has?


  #6  
Old February 1st 06, 03:57 PM posted to microsoft.public.outlook.program_forms
Alex
external usenet poster
 
Posts: 4
Default Outlook Preview (Reading) Pane

Thank you very much, Sue!

Could you point me (if possible) what property/parameter of Outlook
View Control is responsible to turn reading pane on/off?
Or how to get folder home page in Outlook View Control?

Thank you,
Alex.

  #7  
Old February 1st 06, 04:26 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Outlook Preview (Reading) Pane

The OVC itself doesn't show the preview pane or a folder home page. It works the other way around. You would put an OVC on a folder home page to show the list of items in the folder.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Alex" wrote in message oups.com...
Thank you very much, Sue!

Could you point me (if possible) what property/parameter of Outlook
View Control is responsible to turn reading pane on/off?
Or how to get folder home page in Outlook View Control?

Thank you,
Alex.

  #8  
Old February 2nd 06, 01:25 PM posted to microsoft.public.outlook.program_forms
Alex
external usenet poster
 
Posts: 4
Default Outlook Preview (Reading) Pane

Sue,

I tried to navigate a folder's home page to a test page with OVC. It
works and shows my page in folder view and preview pane in Outlook.
But I am trying to get folder content and preview pane outside of the
Outlook by displaying OVC contained page through Web Browser control in
Windows-based .NET application.
What I already acheived is displaying content of requested Outlook
folder.
But this view is without preview pane.

Sue, what do you think - is there any solution to this problem?

Thank you,
Alex.

  #9  
Old February 2nd 06, 03:23 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Outlook Preview (Reading) Pane

Outlook does not include any control to show a reading pane in a web page. You'd have to develop that capability yourself. A SelectionChange event is available -- see http://www.outlookcode.com/codedetail.aspx?id=62 -- but I'm not sure how well it works in a standalone web page.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Alex" wrote in message oups.com...
Sue,

I tried to navigate a folder's home page to a test page with OVC. It
works and shows my page in folder view and preview pane in Outlook.
But I am trying to get folder content and preview pane outside of the
Outlook by displaying OVC contained page through Web Browser control in
Windows-based .NET application.
What I already acheived is displaying content of requested Outlook
folder.
But this view is without preview pane.

Sue, what do you think - is there any solution to this problem?

Thank you,
Alex.

 




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
Outlook 2002 Preview Pane J Outlook - General Queries 1 March 2nd 06 08:24 PM
outlook preview pane Giannis Hatzioannou Outlook - Installation 0 January 26th 06 09:16 AM
Preview Pane - set to off globally, in ALL folders? Soren Outlook - General Queries 3 January 22nd 06 07:13 AM
Traping AttachmentRead event on preview pane Outlook 2000 [email protected] Outlook - General Queries 1 January 18th 06 03:07 PM
How can I put outbox in preview pane format? Leonidas Outlook - Installation 2 January 10th 06 11:03 PM


All times are GMT +1. The time now is 04:01 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.