O2003 - Custom Form - Adding Category Button

Status
Not open for further replies.
S

srm

I'm using O2003 and created a custom task form. I want to have access

to my master Category list like I do on the main task form.

I created a command button and used "cmdCategories" in the name field

entered the code below. When I try to use the button, I get an invalid

procedure or call in the "Set cmd" line.

Sub cmdCategories_Click()

Set ai = Item.Application.ActiveInspector

Set mb = ai.CommandBars.Item("Menu Bar")

Set cmd = mb.Controls("Edit").Controls("Categories...")

cmd.Execute

End Sub

Any suggestions would be appreciated?

Shawn
 
S

Sue Mosher [MVP]

Use the TaskItem.ShowCategoriesDialog method:

http://msdn.microsoft.com/en-us/library/aa210294.aspx

Sue Mosher

"srm" <srm@primatech.com> wrote in message

news:39c8a702-f005-475b-a0fc-f9e2988859c6@k17g2000yqh.googlegroups.com...
> I'm using O2003 and created a custom task form. I want to have access
> to my master Category list like I do on the main task form.

> I created a command button and used "cmdCategories" in the name field
> entered the code below. When I try to use the button, I get an invalid
> procedure or call in the "Set cmd" line.

> Sub cmdCategories_Click()
> Set ai = Item.Application.ActiveInspector
> Set mb = ai.CommandBars.Item("Menu Bar")
> Set cmd = mb.Controls("Edit").Controls("Categories...")
> cmd.Execute
> End Sub

> Any suggestions would be appreciated?

> Shawn
 
S

srm

On Dec 9, 9:07 am, "Sue Mosher [MVP]" <sue...@gmail.com> wrote:
> Use the TaskItem.ShowCategoriesDialog method:http://msdn.microsoft.com/en-us/library/aa210294.aspx

> > Sue Mosher
>    >      >    
> "srm" <s...@primatech.com> wrote in message

> news:39c8a702-f005-475b-a0fc-f9e2988859c6@k17g2000yqh.googlegroups.com...
>
> > I'm using O2003 and created a custom task form. I want to have access
> > to my master Category list like I do on the main task form.

>
> > I created a command button and used "cmdCategories" in the name field
> > entered the code below. When I try to use the button, I get an invalid
> > procedure or call in the "Set cmd" line.

>
> > Sub cmdCategories_Click()
> >   Set ai = Item.Application.ActiveInspector
> >   Set mb = ai.CommandBars.Item("Menu Bar")
> >   Set cmd = mb.Controls("Edit").Controls("Categories...")
> >   cmd.Execute
> > End Sub

>
> > Any suggestions would be appreciated?

>
> > Shawn


Sue:

Thank you.

Shawn
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
Witzker How to get the button Karte ( map) in custom contact form Outlook VBA and Custom Forms 2
B Outlook 2019 Custom Email form - Edit default email form Outlook VBA and Custom Forms 6
D Outlook 365 Custom forms field limit? Outlook VBA and Custom Forms 4
J PSA: How to create custom keyboard shortcut for "Paste Unformatted Text" in Outlook on Windows Outlook VBA and Custom Forms 1
M copy field value to custom field Outlook VBA and Custom Forms 0
J Does the .fdm contain my custom form? How to make ol use it? - ol2007 Outlook VBA and Custom Forms 4
J ol2021 custom form not displaying pics Outlook VBA and Custom Forms 37
N "Perform a Custom Action" Outlook VBA and Custom Forms 0
cbufacchi Outlook 365 Populate custom Outlook Appoint form Outlook VBA and Custom Forms 2
C Create Meeting With Custom Form Outlook VBA and Custom Forms 2
FryW Need help modifying a VBA script for in coming emails to auto set custom reminder time Outlook VBA and Custom Forms 0
J custom form not displaying pictures Outlook VBA and Custom Forms 7
I Button PDF in Outlook Contact custom form Outlook VBA and Custom Forms 1
K Font Sizing in Custom Form Regions for Contacts Outlook VBA and Custom Forms 1
V Update new custom field Outlook VBA and Custom Forms 5
D Anyone tell me where custom view settings are stored? Outlook VBA and Custom Forms 9
S Outlook 2016 Arrange tasks by date, additional custom sorting, but still use friendly terms like Today, Tomorrow, This week? Using Outlook 1
K can't get custom form to update multiple contacts using VBA Outlook VBA and Custom Forms 3
H Custom Outlook Contact Form VBA Outlook VBA and Custom Forms 1
S Custom Field Cannot Be Displayed In Views Outlook VBA and Custom Forms 2
D Custom Search Folders not refreshing/updating automatically Using Outlook 0
F Validation on custom task form after task acceptance Outlook VBA and Custom Forms 1
K UDF with formula not showing on Calendar custom view. Outlook VBA and Custom Forms 0
S Create a clickable custom column field Outlook VBA and Custom Forms 0
I Error saving screenshots in a custom form in outlook 2016, outlook 365 - ok in outlook 2013, outlook 2010 Outlook VBA and Custom Forms 5
M VbScript for Command Button on Contacts Custom Form Using Outlook 1
G Other users can't see P.2 with custom fields in Form Outlook VBA and Custom Forms 0
O Create a custom contact form - questions before messing things up... Outlook VBA and Custom Forms 4
S Reference Custom Fields with VBA Outlook VBA and Custom Forms 2
L Custom Form Tutoral? Outlook VBA and Custom Forms 6
D Lost Access to Custom Form Outlook VBA and Custom Forms 4
M vCard does not have user-defined fields from my custom contact form (365) Using Outlook 1
S Outlook Custom Form Scripting only working when clicking on "Run this form" Outlook VBA and Custom Forms 2
A Custom VBA to sort emails into folders Outlook VBA and Custom Forms 0
Victor_50 Outlook 2013 Custom Contact Form starts with "E-mail 2" Outlook VBA and Custom Forms 2
C Custom Form (seperate layout pages and message reading pane) Outlook VBA and Custom Forms 0
C Reading Pane for Custom Form Outlook VBA and Custom Forms 2
M Custom Calendar Print Suggestions? Using Outlook 0
K Custom Category Colors Using Outlook 2
N Custom Form Controls Not Visible To Recipient Outlook VBA and Custom Forms 3
E To convert imported data to custom fields in Task list Outlook VBA and Custom Forms 1
Randy Redekopp How To Merge Contact Info to Email Custom Form Template Using Outlook 2
D Problem with custom form including _DocSiteControl1 Outlook VBA and Custom Forms 0
C Custom Outlook Form - Populate Information from Radio Button / Check Box Using Outlook 0
H Custom Signature Not Displayed When Account Selected Outlook VBA and Custom Forms 10
E Custom formula for columns Using Outlook 3
W Message class changes of a custom form changes to the default form Using Outlook 2
A Possible to hide ribbon with custom appointment form? Outlook VBA and Custom Forms 3
S Custom Form, copy user field data to message body Outlook VBA and Custom Forms 12
Andrew Quirl Custom form to route requests based on input criteria Outlook VBA and Custom Forms 1

Similar threads

Top