A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Custom Meeting Request form



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old October 16th 07, 07:04 PM posted to microsoft.public.outlook.program_forms
GSK
external usenet poster
 
Posts: 17
Default Custom Meeting Request form

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.

Thanks in advance.
Regards
GSK
  #2  
Old October 16th 07, 07:28 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Custom Meeting Request form

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.

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

Thanks in advance.
Regards
GSK

  #3  
Old October 16th 07, 09:22 PM posted to microsoft.public.outlook.program_forms
GSK
external usenet poster
 
Posts: 17
Default Custom Meeting Request form

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.

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

Thanks in advance.
Regards
GSK


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


  #5  
Old October 16th 07, 11:01 PM posted to microsoft.public.outlook.program_forms
GSK
external usenet poster
 
Posts: 17
Default Custom Meeting Request form

To start with I tried this in the P.2 form

Function Item_Open()
Msgbox "hi"
Item.GetInspector.ShowFormPage ("P.2")
Msgbox "hi"
End Function

Private Sub CommandButton2_Click()
Msgbox "hi"
End Sub

When I ran it, I am getting both the "Hi" messages but the P.2 form is not
selected.
When I go to P.2 form and click on the button, the message is not displayed.

Also please let me know would it be possible to a use
MAPI.Session/address/field and query the CdoPR_BUSINESS_ADDRESS_CITY value
and display in the controls.

THanks again.
GSK

"Sue Mosher [MVP-Outlook]" wrote:

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.



  #6  
Old October 16th 07, 11:24 PM posted to microsoft.public.outlook.program_forms
GSK
external usenet poster
 
Posts: 17
Default Custom Meeting Request form

I just found the syntax issue and its working now the Form selection and
button click. But I still have the other question. Please let me know would
it be possible to a use
MAPI.Session/address/field and query the CdoPR_BUSINESS_ADDRESS_CITY value
and display in text field on click of button in the Custom form.

Thanks
GSK

"GSK" wrote:

To start with I tried this in the P.2 form

Function Item_Open()
Msgbox "hi"
Item.GetInspector.ShowFormPage ("P.2")
Msgbox "hi"
End Function

Private Sub CommandButton2_Click()
Msgbox "hi"
End Sub

When I ran it, I am getting both the "Hi" messages but the P.2 form is not
selected.
When I go to P.2 form and click on the button, the message is not displayed.

Also please let me know would it be possible to a use
MAPI.Session/address/field and query the CdoPR_BUSINESS_ADDRESS_CITY value
and display in the controls.

THanks again.
GSK

"Sue Mosher [MVP-Outlook]" wrote:

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.



 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Custom Meeting Request [email protected] Outlook - Using Forms 1 May 25th 07 07:22 PM
custom TASK REQUEST form error Cass Outlook - General Queries 1 October 4th 06 07:28 PM
custom TASK REQUEST form error Cass Outlook - General Queries 0 October 3rd 06 03:51 PM
Custom Meeting Request Form ML Outlook - Using Forms 5 February 15th 06 04:23 PM
Another question about custom Meeting Request form ML Outlook - Using Forms 0 February 11th 06 04:17 PM


All times are GMT +1. The time now is 03:53 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.