PC Review


Reply
Thread Tools Rate Thread

Creating Form Regions with more than one page

 
 
escamoteur
Guest
Posts: n/a
 
      29th Mar 2010
Hi,

I already customized Outlook inspectors with full custom form regions sucessfully.

What I don't know is how do I add a second page to it, like in an Contacts Inspector the "Details" page so that it can be selected
and displayed by the Ribbon->Display Group?

(Outlook 2007, COM-Addin, c#)

Best
Tom

 
Reply With Quote
 
 
 
 
Ken Slovak - [MVP - Outlook]
Guest
Posts: n/a
 
      29th Mar 2010
Please clarify, do you want to add 2 separate form regions or learn how to
add 1? How are you adding form regions now?

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


"escamoteur" <(E-Mail Removed)> wrote in message
news:50CD4A1B-32AB-4968-902B-(E-Mail Removed)...
> Hi,
>
> I already customized Outlook inspectors with full custom form regions
> sucessfully.
>
> What I don't know is how do I add a second page to it, like in an Contacts
> Inspector the "Details" page so that it can be selected and displayed by
> the Ribbon->Display Group?
>
> (Outlook 2007, COM-Addin, c#)
>
> Best
> Tom


 
Reply With Quote
 
escamoteur
Guest
Posts: n/a
 
      30th Mar 2010
If you take e.g. the standard Inspector for Contacts, you have a "General" and a "Details" page and you can switch between them by
the Ribbon.

I want something similiar.

I create my Formregion using GetFormRegionStorage. This works fine. I design the Formregion with Outlook Formdesigner.

I hope you knoe understand better what I mean.

Tom

"Ken Slovak - [MVP - Outlook]" <(E-Mail Removed)> schrieb im Newsbeitrag news:(E-Mail Removed)...
> Please clarify, do you want to add 2 separate form regions or learn how to add 1? How are you adding form regions now?
>
> --
> 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
>
>
> "escamoteur" <(E-Mail Removed)> wrote in message news:50CD4A1B-32AB-4968-902B-(E-Mail Removed)...
>> Hi,
>>
>> I already customized Outlook inspectors with full custom form regions sucessfully.
>>
>> What I don't know is how do I add a second page to it, like in an Contacts Inspector the "Details" page so that it can be
>> selected and displayed by the Ribbon->Display Group?
>>
>> (Outlook 2007, COM-Addin, c#)
>>
>> Best
>> Tom

>

 
Reply With Quote
 
Ken Slovak - [MVP - Outlook]
Guest
Posts: n/a
 
      30th Mar 2010
For what you want you need a separate form region. That's what they're
called. You set that up in the form region XML. You can google for "Outlook
separate form region" and see examples for various platforms.

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


"escamoteur" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> If you take e.g. the standard Inspector for Contacts, you have a "General"
> and a "Details" page and you can switch between them by the Ribbon.
>
> I want something similiar.
>
> I create my Formregion using GetFormRegionStorage. This works fine. I
> design the Formregion with Outlook Formdesigner.
>
> I hope you knoe understand better what I mean.
>
> Tom


 
Reply With Quote
 
escamoteur
Guest
Posts: n/a
 
      30th Mar 2010
So far I use a Replace-All Formregion with the XML

<?xml version="1.0"?>
<FormRegion xmlns="http://schemas.microsoft.com/office/outlook/12/formregion.xsd">
<!-- Internal name -->
<name>BusinessOpportunity</name>
<!-- Display name -->
<title>Booking Opportunity</title>
<!-- Additive adjoining form region -->
<formRegionType>replaceAll</formRegionType>
<!-- Outlook form region file is in the current folder relative to the location of contoso.xml -->
<!--<layoutFile>c:\Entwicklung\ArtistsOrganizer\Booking.ofs</layoutFile>-->
<addin>OrganizerAddIn.Connect</addin>
<!-- Display form region when inspector is in the Reading Pane -->
<showPreview>false</showPreview>
<!-- Version of form region -->
<version>1.0</version>
</FormRegion>

Can I add a sparate form region to this?

Tom

"Ken Slovak - [MVP - Outlook]" <(E-Mail Removed)> schrieb im Newsbeitrag news:(E-Mail Removed)...
> For what you want you need a separate form region. That's what they're
> called. You set that up in the form region XML. You can google for "Outlook
> separate form region" and see examples for various platforms.
>
> --
> 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
>
>
> "escamoteur" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
>> If you take e.g. the standard Inspector for Contacts, you have a "General"
>> and a "Details" page and you can switch between them by the Ribbon.
>>
>> I want something similiar.
>>
>> I create my Formregion using GetFormRegionStorage. This works fine. I
>> design the Formregion with Outlook Formdesigner.
>>
>> I hope you knoe understand better what I mean.
>>
>> Tom

>

 
Reply With Quote
 
escamoteur
Guest
Posts: n/a
 
      30th Mar 2010
What I don't understand is, GetFormRegionStorage can only return on .ofs File, how do I handle additional Separate Form regions for
the message class that all are displayed in one inspector?

Thanks Tom

"Ken Slovak - [MVP - Outlook]" <(E-Mail Removed)> schrieb im Newsbeitrag news:(E-Mail Removed)...
> For what you want you need a separate form region. That's what they're called. You set that up in the form region XML. You can
> google for "Outlook separate form region" and see examples for various platforms.
>
> --
> 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
>
>
> "escamoteur" <(E-Mail Removed)> wrote in message news:%(E-Mail Removed)...
>> If you take e.g. the standard Inspector for Contacts, you have a "General" and a "Details" page and you can switch between them
>> by the Ribbon.
>>
>> I want something similiar.
>>
>> I create my Formregion using GetFormRegionStorage. This works fine. I design the Formregion with Outlook Formdesigner.
>>
>> I hope you knoe understand better what I mean.
>>
>> Tom

>

 
Reply With Quote
 
Ken Slovak - [MVP - Outlook]
Guest
Posts: n/a
 
      30th Mar 2010
I believe a replaceall region is not compatible with a separate region, but
I've never tried it. Try it and see.

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


"escamoteur" <(E-Mail Removed)> wrote in message
news:8FD72084-3561-419F-B792-(E-Mail Removed)...
> So far I use a Replace-All Formregion with the XML
>
> <?xml version="1.0"?>
> <FormRegion
> xmlns="http://schemas.microsoft.com/office/outlook/12/formregion.xsd">
> <!-- Internal name -->
> <name>BusinessOpportunity</name>
> <!-- Display name -->
> <title>Booking Opportunity</title>
> <!-- Additive adjoining form region -->
> <formRegionType>replaceAll</formRegionType>
> <!-- Outlook form region file is in the current folder relative to the
> location of contoso.xml -->
> <!--<layoutFile>c:\Entwicklung\ArtistsOrganizer\Booking.ofs</layoutFile>-->
> <addin>OrganizerAddIn.Connect</addin>
> <!-- Display form region when inspector is in the Reading Pane -->
> <showPreview>false</showPreview>
> <!-- Version of form region -->
> <version>1.0</version>
> </FormRegion>
>
> Can I add a sparate form region to this?
> Tom


 
Reply With Quote
 
Ken Slovak - [MVP - Outlook]
Guest
Posts: n/a
 
      30th Mar 2010
In one OFS file?

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


"escamoteur" <(E-Mail Removed)> wrote in message
news:6BBCF59E-0022-424C-B7E5-(E-Mail Removed)...
> What I don't understand is, GetFormRegionStorage can only return on .ofs
> File, how do I handle additional Separate Form regions for the message
> class that all are displayed in one inspector?
>
> Thanks Tom


 
Reply With Quote
 
escamoteur
Guest
Posts: n/a
 
      30th Mar 2010
According to Randy Byrne's book it's possible. unfortunately he does not tell how.
Tom

"Ken Slovak - [MVP - Outlook]" <(E-Mail Removed)> schrieb im Newsbeitrag news:(E-Mail Removed)...
> I believe a replaceall region is not compatible with a separate region, but
> I've never tried it. Try it and see.
>
> --
> 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
>
>
> "escamoteur" <(E-Mail Removed)> wrote in message
> news:8FD72084-3561-419F-B792-(E-Mail Removed)...
>> So far I use a Replace-All Formregion with the XML
>>
>> <?xml version="1.0"?>
>> <FormRegion
>> xmlns="http://schemas.microsoft.com/office/outlook/12/formregion.xsd">
>> <!-- Internal name -->
>> <name>BusinessOpportunity</name>
>> <!-- Display name -->
>> <title>Booking Opportunity</title>
>> <!-- Additive adjoining form region -->
>> <formRegionType>replaceAll</formRegionType>
>> <!-- Outlook form region file is in the current folder relative to the
>> location of contoso.xml -->
>> <!--<layoutFile>c:\Entwicklung\ArtistsOrganizer\Booking.ofs</layoutFile>-->
>> <addin>OrganizerAddIn.Connect</addin>
>> <!-- Display form region when inspector is in the Reading Pane -->
>> <showPreview>false</showPreview>
>> <!-- Version of form region -->
>> <version>1.0</version>
>> </FormRegion>
>>
>> Can I add a sparate form region to this?
>> Tom

>

 
Reply With Quote
 
escamoteur
Guest
Posts: n/a
 
      30th Mar 2010
How can I place to regions in one OFS File?

"Ken Slovak - [MVP - Outlook]" <(E-Mail Removed)> schrieb im Newsbeitrag news:#(E-Mail Removed)...
> In one OFS file?
>
> --
> 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
>
>
> "escamoteur" <(E-Mail Removed)> wrote in message
> news:6BBCF59E-0022-424C-B7E5-(E-Mail Removed)...
>> What I don't understand is, GetFormRegionStorage can only return on .ofs
>> File, how do I handle additional Separate Form regions for the message
>> class that all are displayed in one inspector?
>>
>> Thanks Tom

>

 
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
Creating Form Regions with more than one page escamoteur Microsoft Outlook VBA Programming 13 31st Mar 2010 01:49 PM
Creating a Word document that contains uneditable regions? Barbara White Microsoft Word Document Management 2 18th Jul 2006 03:54 PM
Creating a "sensitive regions" image on a form Zorro Microsoft Excel Programming 1 13th May 2006 09:45 AM
visual C++.NET: creating regions Aileen xyz via .NET 247 Microsoft Dot NET 0 2nd Sep 2004 01:34 PM
Editable Regions and Page Title =?Utf-8?B?Um9iIE9zdHJ5?= Microsoft Frontpage 1 13th Feb 2004 04:37 PM


Features
 

Advertising
 

Newsgroups
 


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