View Single Post
  #4  
Old October 16th 07, 09:48 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Custom Meeting Request form

You need to type in the complete procedure declaration for any Click event handlers, e.g.:

Sub CommandButton1_Click()
Msgbox "It works"
End Sub

For Item-level events, use the Script | Event Handler command.

The VBA environment is still useful, of course, for prototyping code and for looking up Outlook property names in the object browser.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"GSK" wrote in message ...
Thanks. But am not sure how to access the controls(buttons,textbox) in the
Script editor window. If you could provide some example it would be really
great.

Thanks and Regards
GSK

"Sue Mosher [MVP-Outlook]" wrote:

Alt+F11 opens the VBA coding environment. Code on custom forms is not VBA, but VBScript. With the form in design mode, click the View Code button.

"GSK" wrote in message ...
I want to customise the Meeting Request form. I have added a new Meeting
Request Form from Design Form section. In one of
the tabs (P.2) I have placed some controls (textbox, button,labels) and
"Required Attendees" field from Field Chooser options.
How can I add the VB code to the form to invoke the button click event and
populate the Required Attendees field ? When I do Alt + F11, am not able to
access the form elements.

Kindly let me know how to add code and populate the Required Attendees field
programatically.


Ads