Forum: Outlook - Using Forms
May 23rd 06, 09:54 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 543
Enable Disable the To textbox
All,
Never mind I found it. Page 368. I fixed my code as below.
Dim objPage
Dim objControl
ForwardItem.To = ""
Set objPage = ForwardItem.GetInspector.ModifiedFormPages("Message")
...
|
Forum: Outlook - Using Forms
May 22nd 06, 11:41 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 543
Enable Disable the To textbox
All,
I know how to get custom textboxes,
Set m_TestText =
Item.GetInspector.ModifiedFormPages("Message").Controls("TextBox4")
But how do I get the standard "To" textbox? I need to enable...
|
Forum: Outlook - Using Forms
May 6th 06, 08:58 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 29
Views: 2,710
Form on Reply or Forward
Sorry, Last line below.
Function SetDatabaseSetup()
If Item.UserProperties.Find("Database Setup None").Value = "False" Then
m_IMOSDatabase.Enabled = 1
m_ODMDatabase.Enabled =...
|
Forum: Outlook - Using Forms
May 5th 06, 05:33 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 29
Views: 2,710
Form on Reply or Forward
Ok, see code below,
Option Explicit
Dim m_blnIsNew
Dim m_ExcluYesCB
Dim m_ExcluAppCB
Dim m_ExcluntegCB
Dim m_OERNone
Dim m_OERRefData
|
Forum: Outlook - Using Forms
May 3rd 06, 10:01 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 29
Views: 2,710
Form on Reply or Forward
Sue,
I am close, but now it is telling me after I select reply, that some of my
objects are missing. I am getting "Object required: 'my variable name' Line
No:212". I declared these variables as...
|
Forum: Outlook - Using Forms
May 3rd 06, 09:29 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 29
Views: 2,710
Form on Reply or Forward
Sue,
Just a quick question. Do you have that noted somewhere in the book. I
must admit I have been jumping around the book so I may have missed that.
Thanks as always,
Jeff
"Sue Mosher...
|
Forum: Outlook - Using Forms
May 3rd 06, 06:15 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 29
Views: 2,710
Form on Reply or Forward
All,
I have created a form and I want that form to work on replies and forwards
just as it does when it is first created. How?
Thanks,
Jeff Riley
|
Forum: Outlook - Using Forms
April 26th 06, 04:42 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 2
Views: 547
|
Forum: Outlook - Using Forms
April 25th 06, 10:04 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 2
Views: 547
Item.Recipients.Add Not Working for me
Hello all,
I have the following code but I can not seemt to get it working. I am still
missing something very basic. Sue you will see this is still mostly the code
you gave me. I am just trying...
|
Forum: Outlook - Using Forms
April 19th 06, 08:45 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 2
Views: 766
Need to verify TO recipient
Hello All,
When the user hits send on a custom mail item I have created, I want to make
sure a specific email address is in the To recipient line. How can I do
this? I have tried the code below,...
|
Forum: Outlook - Using Forms
April 11th 06, 09:06 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 494
Can not get the Option Buttons to work
Hello all,
I have a set of Option Buttons on my custom form. My problem is when I
select one of the two it is not showing up on the sent message (read page).
Any ideas?
Thank you,
Jeff Riley
|
Forum: Outlook - Using Forms
April 10th 06, 05:58 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 876
Creating Dropdown Calendar in Outlook Form
Hello,
I am creating a custom message form and I want to create a start date field
that works just like the start date field on the task form. My problem is I
can not figure out how to get the...
|