PC Review


Reply
Thread Tools Rate Thread

Display custom form in Preview Pane? Alternatives?

 
 
lex3001
Guest
Posts: n/a
 
      30th Dec 2008
I am looking for a way to provide custom Outlook Form functionality (a custom
form with data populated from a database which can be modified and saved
again) in a custom Meeting Request. This has all been implemented and tested
except that when other users receive the Meeting Request, they cannot view it
in the Preview Pane.

What are the alternatives? Is there a way to use a COM Add-In to accomplish
the same functionality (an additional tab with fields and data in the form)?
What are the other options we have? This is for Outlook 2003. I understand
that Outlook Form Regions in 2007 and VSTO might not have this issue (is that
true?).
 
Reply With Quote
 
 
 
 
Ken Slovak - [MVP - Outlook]
Guest
Posts: n/a
 
      31st Dec 2008
Nothing for Outlook 2003. For Outlook 2007 you can use form regions to set
up a replacement form region to completely replace an existing tab in an
Outlook form or an adjacent form region that will show up in addition to the
tab you add the region to. Either form region and its contents will be
readable in the reading pane.

For Outlook 2003 you'd need to do a real hack. You'd get the sub-window for
the reading pane using Win32 API calls and get that window's location and
size. Then you'd create your own window with the data you want, overlay it
on the existing preview/reading pane window and make the new window a child
window of the Outlook Explorer window. You'd also need to subclass a Windows
message handler to handle messages to the existing preview pane window for
things like resizing and closing/opening, so you would know when to resize,
close/show your window, etc. Doable, but a hack.

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


"lex3001" <(E-Mail Removed)> wrote in message
news:A1A21411-9777-44A9-8024-(E-Mail Removed)...
>I am looking for a way to provide custom Outlook Form functionality (a
>custom
> form with data populated from a database which can be modified and saved
> again) in a custom Meeting Request. This has all been implemented and
> tested
> except that when other users receive the Meeting Request, they cannot view
> it
> in the Preview Pane.
>
> What are the alternatives? Is there a way to use a COM Add-In to
> accomplish
> the same functionality (an additional tab with fields and data in the
> form)?
> What are the other options we have? This is for Outlook 2003. I understand
> that Outlook Form Regions in 2007 and VSTO might not have this issue (is
> that
> true?).


 
Reply With Quote
 
lex3001
Guest
Posts: n/a
 
      31st Dec 2008
Thanks Ken - have you seen any examples posted on the Internet of the method
you describe? Also, I read some links about creating a COM Add-In on the
sender's machine that sets an undocumented property which tells the client to
go ahead and render the the preview pane anyway. Have you heard about this?
Any feedback on it?

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

> Nothing for Outlook 2003. For Outlook 2007 you can use form regions to set
> up a replacement form region to completely replace an existing tab in an
> Outlook form or an adjacent form region that will show up in addition to the
> tab you add the region to. Either form region and its contents will be
> readable in the reading pane.
>
> For Outlook 2003 you'd need to do a real hack. You'd get the sub-window for
> the reading pane using Win32 API calls and get that window's location and
> size. Then you'd create your own window with the data you want, overlay it
> on the existing preview/reading pane window and make the new window a child
> window of the Outlook Explorer window. You'd also need to subclass a Windows
> message handler to handle messages to the existing preview pane window for
> things like resizing and closing/opening, so you would know when to resize,
> close/show your window, etc. Doable, but a hack.
>
> --
> 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
>
>
> "lex3001" <(E-Mail Removed)> wrote in message
> news:A1A21411-9777-44A9-8024-(E-Mail Removed)...
> >I am looking for a way to provide custom Outlook Form functionality (a
> >custom
> > form with data populated from a database which can be modified and saved
> > again) in a custom Meeting Request. This has all been implemented and
> > tested
> > except that when other users receive the Meeting Request, they cannot view
> > it
> > in the Preview Pane.
> >
> > What are the alternatives? Is there a way to use a COM Add-In to
> > accomplish
> > the same functionality (an additional tab with fields and data in the
> > form)?
> > What are the other options we have? This is for Outlook 2003. I understand
> > that Outlook Form Regions in 2007 and VSTO might not have this issue (is
> > that
> > true?).

>
>

 
Reply With Quote
 
Ken Slovak - [MVP - Outlook]
Guest
Posts: n/a
 
      1st Jan 2009
Those who have done such things don't tell how they've done it exactly since
it would be proprietary information for them.

Setting properties on the sending side wouldn't work most or all of the
time. You can set specific properties on the receiving end but since MS
doesn't want those exposed I can't really discuss them.

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


"lex3001" <(E-Mail Removed)> wrote in message
news:62DB3AD8-EB4F-4542-8F01-(E-Mail Removed)...
> Thanks Ken - have you seen any examples posted on the Internet of the
> method
> you describe? Also, I read some links about creating a COM Add-In on the
> sender's machine that sets an undocumented property which tells the client
> to
> go ahead and render the the preview pane anyway. Have you heard about
> this?
> Any feedback on it?


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Custom Form & Preview Pane Scott Halper Microsoft Outlook Form Programming 1 19th Oct 2007 02:03 AM
Custom Message-form and Preview pane =?Utf-8?B?UGV0ZXIgS2FybHN0csO2bQ==?= Microsoft Outlook Form Programming 2 21st Oct 2005 02:19 PM
display custom forms in reading pane preview =?Utf-8?B?d3VuZHJsaWs=?= Microsoft Outlook Form Programming 1 12th Aug 2005 11:48 PM
custom form not displayed in the preview pane Pierre Bru Microsoft Outlook Form Programming 1 21st Jun 2005 02:04 PM
Custom appointment form and the preview pane mattheere Microsoft Outlook Form Programming 2 28th Oct 2003 08:03 AM


Features
 

Advertising
 

Newsgroups
 


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