Outlook addin formregion as a drop down

Status
Not open for further replies.
S

Sanaulah

Hi,

I am developing an addin for Outlook in C#,

I have created a form region as a "Separate" FormRegionType, I want it to

show up as an action with a drop down.

can anyone please help me with this ?
 
I'm not sure what you're trying to accomplish. A separate form region

displays as a separate "page" in the Inspector window. It can contain one or

more drop-down lists, but it is not itself a drop-down.

Sue Mosher

"Sanaulah" wrote:


> Hi,

> I am developing an addin for Outlook in C#,

> I have created a form region as a "Separate" FormRegionType, I want it to
> show up as an action with a drop down.

> can anyone please help me with this ?
 
Hi,

How can i make form region to have a drop down list ? thats what i am trying

to do, because i want the user to be able to choose from drop down on which

form region to redirect.

so, how can i make the formregion to have a drop down ? is there any

property from where i can set it up ? or can i do it by C# code ?

thanks

"Sue Mosher [MVP]" wrote:


> I'm not sure what you're trying to accomplish. A separate form region
> displays as a separate "page" in the Inspector window. It can contain one or
> more drop-down lists, but it is not itself a drop-down.
> > Sue Mosher
> > >

> "Sanaulah" wrote:
>
> > Hi,
> > I am developing an addin for Outlook in C#,
> > I have created a form region as a "Separate" FormRegionType, I want it to
> > show up as an action with a drop down.
> > can anyone please help me with this ?
 
Hi,

just to explain my case a bit,

actually i want my form region to show up in main contact ribbon of Outlook,

when i click the button on main ribbon , it shows the form region (thats how

it is behaving right now which is alright) and the lower bottom of the button

is a drop down, showing some option (actions to perform).

How can i achieve this in C# ? or by using visual studip IDE ?

cheers

"Sanaulah" wrote:


> Hi,

> How can i make form region to have a drop down list ? thats what i am trying
> to do, because i want the user to be able to choose from drop down on which
> form region to redirect.

> so, how can i make the formregion to have a drop down ? is there any
> property from where i can set it up ? or can i do it by C# code ?

> thanks

> "Sue Mosher [MVP]" wrote:
>
> > I'm not sure what you're trying to accomplish. A separate form region
> > displays as a separate "page" in the Inspector window. It can contain one or
> > more drop-down lists, but it is not itself a drop-down.
> > > > Sue Mosher
> > > > > > > > "Sanaulah" wrote:
> >
> > > Hi,
> > > > I am developing an addin for Outlook in C#,
> > > > I have created a form region as a "Separate" FormRegionType, I want it to
> > > show up as an action with a drop down.
> > > > can anyone please help me with this ?
 
it is a separate form region, should show button on main contact ribbon. *

"Sanaulah" wrote:


> Hi,

> just to explain my case a bit,

> actually i want my form region to show up in main contact ribbon of Outlook,
> when i click the button on main ribbon , it shows the form region (thats how
> it is behaving right now which is alright) and the lower bottom of the button
> is a drop down, showing some option (actions to perform).

> How can i achieve this in C# ? or by using visual studip IDE ?

> cheers

> "Sanaulah" wrote:
>
> > Hi,
> > How can i make form region to have a drop down list ? thats what i am trying
> > to do, because i want the user to be able to choose from drop down on which
> > form region to redirect.
> > so, how can i make the formregion to have a drop down ? is there any
> > property from where i can set it up ? or can i do it by C# code ?
> > thanks
> > "Sue Mosher [MVP]" wrote:
> >
> > > I'm not sure what you're trying to accomplish. A separate form region
> > > displays as a separate "page" in the Inspector window. It can contain one or
> > > more drop-down lists, but it is not itself a drop-down.
> > > > > > Sue Mosher
> > > > > > > > > > > > > > > "Sanaulah" wrote:
> > > > > Hi,
> > > > > > I am developing an addin for Outlook in C#,
> > > > > > I have created a form region as a "Separate" FormRegionType, I want it to
> > > > show up as an action with a drop down.
> > > > > > can anyone please help me with this ?
 
There's no way to make the region's button on the ribbon do that. Maybe you

don't understand that a form region is a separate page in the Inspector

window. The UI for the region itself is built on the region's surface, not in

the ribbon, which just provides a way to display the region. If you want

other functionality in the ribbon, that would be done independent of the form

region.

You can, of course, put a drop-down control on the region surface. Details

depend on whether you're building your region with an .ofs file or totally in

VS.

Sue Mosher

"Sanaulah" wrote:


> Hi,

> just to explain my case a bit,

> actually i want my form region to show up in main contact ribbon of Outlook,
> when i click the button on main ribbon , it shows the form region (thats how
> it is behaving right now which is alright) and the lower bottom of the button
> is a drop down, showing some option (actions to perform).

> How can i achieve this in C# ? or by using visual studip IDE ?

> cheers

> "Sanaulah" wrote:
>
> > Hi,
> > How can i make form region to have a drop down list ? thats what i am trying
> > to do, because i want the user to be able to choose from drop down on which
> > form region to redirect.
> > so, how can i make the formregion to have a drop down ? is there any
> > property from where i can set it up ? or can i do it by C# code ?
> > thanks
> > "Sue Mosher [MVP]" wrote:
> >
> > > I'm not sure what you're trying to accomplish. A separate form region
> > > displays as a separate "page" in the Inspector window. It can contain one or
> > > more drop-down lists, but it is not itself a drop-down.
> > > > > > Sue Mosher
> > > > > > > > > > > > > > > "Sanaulah" wrote:
> > > > > Hi,
> > > > > > I am developing an addin for Outlook in C#,
> > > > > > I have created a form region as a "Separate" FormRegionType, I want it to
> > > > show up as an action with a drop down.
> > > > > > can anyone please help me with this ?
 
Alright I understand it now,

Is it possible to make a custom ribbon group in the main outlook ribbon to

contain buttons of one or more custom form regions (the default one, the way

it displays it).

thanks for your response.

Cheers

"Sue Mosher [MVP]" wrote:


> There's no way to make the region's button on the ribbon do that. Maybe you
> don't understand that a form region is a separate page in the Inspector
> window. The UI for the region itself is built on the region's surface, not in
> the ribbon, which just provides a way to display the region. If you want
> other functionality in the ribbon, that would be done independent of the form
> region.

> You can, of course, put a drop-down control on the region surface. Details
> depend on whether you're building your region with an .ofs file or totally in
> VS.
> > Sue Mosher
> > >

> "Sanaulah" wrote:
>
> > Hi,
> > just to explain my case a bit,
> > actually i want my form region to show up in main contact ribbon of Outlook,
> > when i click the button on main ribbon , it shows the form region (thats how
> > it is behaving right now which is alright) and the lower bottom of the button
> > is a drop down, showing some option (actions to perform).
> > How can i achieve this in C# ? or by using visual studip IDE ?
> > cheers
> > "Sanaulah" wrote:
> >
> > > Hi,
> > > > How can i make form region to have a drop down list ? thats what i am trying
> > > to do, because i want the user to be able to choose from drop down on which
> > > form region to redirect.
> > > > so, how can i make the formregion to have a drop down ? is there any
> > > property from where i can set it up ? or can i do it by C# code ?
> > > > thanks
> > > > "Sue Mosher [MVP]" wrote:
> > > > > I'm not sure what you're trying to accomplish. A separate form region
> > > > displays as a separate "page" in the Inspector window. It can contain one or
> > > > more drop-down lists, but it is not itself a drop-down.
> > > > > > > > Sue Mosher
> > > > > > > > > > > > > > > > > > > > > > "Sanaulah" wrote:
> > > > > > > Hi,
> > > > > > > > I am developing an addin for Outlook in C#,
> > > > > > > > I have created a form region as a "Separate" FormRegionType, I want it to
> > > > > show up as an action with a drop down.
> > > > > > > > can anyone please help me with this ?
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
G Save emails as msg file from Outlook Web AddIn (Office JS) Outlook VBA and Custom Forms 0
S Outlook 2016 and Acrobat PDFMaker Office COM Addin Using Outlook 0
Gary Hile Icloud addin for outlook 2016 Using Outlook 5
P outlook addin unloaded in office 2007 Using Outlook 0
oliv- How to Run a Script IN AN ADDIN with Outlook's Rules and Alerts Outlook VBA and Custom Forms 2
Diane Poremsky Always Load an Outlook Addin Using Outlook 1
D Constant Dropbox Outlook Addin Authentication Prompts Using Outlook 5
C Outlook 2010, Need to restrict domain users from installing any sort of a addin in outlook Using Outlook 2
M Icloud Addin in Outlook 2013 Exchange Server Administration 9
H Outlook 2010 Antispam Addin Not Available Using Outlook 1
S COM Addin Failed to load in Outlook 2003 Outlook VBA and Custom Forms 1
C Connecting to an addin in Outlook 2010 (or not) Outlook VBA and Custom Forms 1
T Regarding Outlook addin Outlook VBA and Custom Forms 1
N Drag and drop attachment in outlook addin Outlook VBA and Custom Forms 4
K Attach addin to outlook 2007 editor Outlook VBA and Custom Forms 3
W My VSTO 3.0 Outlook addin doesn’t load Outlook VBA and Custom Forms 1
T need help w/ sending an e-mail -- outlook 2007 addin Outlook VBA and Custom Forms 2
N VSTO outlook 2007 addin installation problem Outlook VBA and Custom Forms 1
N Support for outlook 2003 addin in xp home sp2 Outlook VBA and Custom Forms 3
R Hi, Ken, What should be noticed to avoid memory leak in outlook addin? Outlook VBA and Custom Forms 3
D Outlook AddIn can't load outside Visual Studio Outlook VBA and Custom Forms 1
T Simple MAPI send and Outlook COM addin Outlook VBA and Custom Forms 3
U Outlook Addin Creation using Visual Studio 2008 Outlook VBA and Custom Forms 1
E Opening WinForm in Outlook 2003 VSTO Addin with Wordmail enabled Outlook VBA and Custom Forms 1
D Outlook 2007 AddIn: Rendering issue Outlook VBA and Custom Forms 1
D Outlook 2007 AddIn: Filter attachments by type Outlook VBA and Custom Forms 2
A Outlook can't remember outlook.com, Exchange password. Using Outlook 0
S Related messages show in main Outlook window vice new Advanced Find windows Using Outlook 1
H Force Outlook 2019 with GMail 2-Step to Require Login? Using Outlook 0
G Retaining Tabs in outlook body Using Outlook 2
V Setting up Outlook 2021 on new computer Using Outlook 2
G Add Map It button to Custom Contacts Form in Outlook Outlook VBA and Custom Forms 1
X Custom icon (not from Office 365) for a macro in Outlook Outlook VBA and Custom Forms 1
Victor_50 Problem - Google Workspace will stop "unsafe" access to Outlook end 2024 Using Outlook 3
C New pc, new outlook, is it possible to import auto-complete emailaddress Using Outlook 4
T Outlook 365 won't take new working password Using Outlook 0
S Create Outlook Task from Template and append Body with Email Body Outlook VBA and Custom Forms 4
P Can't add custom field to custom Outlook form, it always adds to the Folder instead Outlook VBA and Custom Forms 2
B Sync Outlook Public Folders to Contacts Using Outlook 2
D Delete Outlook emails from MS server Using Outlook 12
B Outlook tasks and PDF Using Outlook 4
D Outlook 2019 is no longer asking for password ... Using Outlook 5
Kika Melo How to mark as Junk any message not from Contacts (in Outlook.com) Using Outlook 3
L Outlook attachments from OneDrive as links Using Outlook 0
G Outlook 365 My iCloud Outlook doesn’t work after reinstalling Microsoft365 on Windows 10 PC – now I get error message on contacts and calendar Using Outlook 1
T How to Export & Import GMAIL Contacts into Outlook 2021 ? Using Outlook 4
M Synchronization and backup of Outlook from local to server. Using Outlook 8
T How to get an EVENT COLOR option in Outlook 2021 ? Using Outlook 0
K How can I delete an e-mail from Outlook Using Outlook 1
V Outlook Error The Attempted operation Failed. An Object Could Not be found Outlook VBA and Custom Forms 0

Similar threads

Back
Top