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 » Search Forums
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Showing results 1 to 25 of 28
Search took 0.21 seconds.
Search: Posts made by: Scott07
Forum: Outlook - Using Forms July 12th 07, 01:22 AM Posted to microsoft.public.outlook.program_forms
Replies: 1
Views: 328
Posted By Scott07
Categories

Hi,

When categories are set in Contact forms, it seems that they are broken up
into multiple categorical segments. For example, if a Contact is part of the
"test1" and "test2" categories, it will...
Forum: Outlook - Using Forms July 5th 07, 12:50 AM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 445
Posted By Scott07
Setting a Category

Here is some code. I've commented where my code to & two statements together
is. Any help is appreciated. Thanks.

Function Item_Write()
Set myinspector = Item.GetInspector
Set test =...
Forum: Outlook - Using Forms July 2nd 07, 05:36 PM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 445
Posted By Scott07
Setting a Category

Thanks for the fast reply. If I only check, for example, Test1, the Category
is set properly. Also, if I check Test2, it works properly. However, if I
check both and invoke the code below, the...
Forum: Outlook - Using Forms July 2nd 07, 04:12 PM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 445
Posted By Scott07
Setting a Category

Thanks, that worked. I'm having trouble with the following code, as well.
I've tried varying combinations because I know it's a syntax problem, but
none have worked:

ElseIf test1.Value &...
Forum: Outlook - Using Forms June 27th 07, 03:14 PM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 445
Posted By Scott07
Setting a Category

Hi,

I'm having trouble adding to my code to set a Category by clicking a
Checkbox. I'm getting an error on line 8. I think something is wrong with
the If-Then clauses, but I researched a bit and...
Forum: Outlook - Using Forms June 25th 07, 04:06 PM Posted to microsoft.public.outlook.program_forms
Replies: 22
Views: 1,525
Posted By Scott07
Custom Form - Checkboxes

I got the Categories/date-time problem resolved by creating a new form (I
couldn't find any formulas set for Categories, so I used this method).
However, upon running my form, I'm getting an error...
Forum: Outlook - Using Forms June 22nd 07, 05:41 PM Posted to microsoft.public.outlook.program_forms
Replies: 22
Views: 1,525
Posted By Scott07
Custom Form - Checkboxes

So, here's my code. I'm not getting an error anymore, but for some reason,
I'm getting the date and time filled into the Categories box as soon as the
form is opened (6/1/2007 8:00:00AM). Any...
Forum: Outlook - Using Forms June 21st 07, 05:02 PM Posted to microsoft.public.outlook.program_forms
Replies: 22
Views: 1,525
Posted By Scott07
Custom Form - Checkboxes

If I'm understanding correctly, "Message" is the name of the page? Is
General the object?

Thanks.

"Sue Mosher [MVP-Outlook]" wrote:

If the page is named General, then you won't get anything...
Forum: Outlook - Using Forms June 19th 07, 02:38 PM Posted to microsoft.public.outlook.program_forms
Replies: 22
Views: 1,525
Posted By Scott07
Custom Form - Checkboxes

Hi, Sue,

To clarify, I meant that I was checking the functionality of my Checkbox by
viewing the General page, where the Categories are shown (to see if it was
getting set to "Business"). After...
Forum: Outlook - Using Forms June 18th 07, 03:10 PM Posted to microsoft.public.outlook.program_forms
Replies: 22
Views: 1,525
Posted By Scott07
Custom Form - Checkboxes

Thanks. So, here is the code that I have right now:

Function Item_Write()
Set myinspector = Item.GetInspector
Set General = myInspector.ModifiedFormPages("Message")
Set Checkbox1 =...
Forum: Outlook - Using Forms June 17th 07, 06:56 PM Posted to microsoft.public.outlook.program_forms
Replies: 22
Views: 1,525
Posted By Scott07
Custom Form - Checkboxes

I can't test this currently, but are you suggesting the following code is
correct? I misunderstood your instructions, in that, I thought the object
declaration took place before the...
Forum: Outlook - Using Forms June 14th 07, 03:53 PM Posted to microsoft.public.outlook.program_forms
Replies: 22
Views: 1,525
Posted By Scott07
Custom Form - Checkboxes

Oh, I see. The Click procedure was somewhat confusing to me anyways. So,
basically, now I have the following code:

Function Item_Write()
If CheckBox1.Value = True Then
Item.Categories =...
Forum: Outlook - Using Forms June 13th 07, 05:18 PM Posted to microsoft.public.outlook.program_forms
Replies: 22
Views: 1,525
Posted By Scott07
Custom Form - Checkboxes

I've placed the code, as follows, but am not getting any results. To test,
I've created a "Categories" box on my form to see if it is getting set to
"Business" when the checkbox is clicked. ...
Forum: Outlook - Using Forms June 12th 07, 05:51 PM Posted to microsoft.public.outlook.program_forms
Replies: 22
Views: 1,525
Posted By Scott07
Custom Form - Checkboxes

So, something like this (could use some syntax help please):

Function Item_Write()
If CheckBox1.Value = True Then
Item.Categories = Item.Categories & ",Business"
End If
End Function

I realize...
Forum: Outlook - Using Forms June 8th 07, 05:49 PM Posted to microsoft.public.outlook.program_forms
Replies: 22
Views: 1,525
Posted By Scott07
Custom Form - Checkboxes

I visited your link and noticed an article outlining how to use a checkbox to
show and hide a frame. I've removed the references to the frame since I
won't be needing that, but I don't know where...
Forum: Outlook - Using Forms June 7th 07, 04:57 PM Posted to microsoft.public.outlook.program_forms
Replies: 22
Views: 1,525
Posted By Scott07
Custom Form - Checkboxes

Hi,

I'm attempting to create a custom contact form with 3 checkboxes that, when
checked, will add the form to a category (e.g. where Business, Competition,
Favorites, etc. are shown under...
Forum: Outlook - Using Forms May 29th 07, 07:51 PM Posted to microsoft.public.outlook.program_forms
Replies: 21
Views: 1,337
Posted By Scott07
Outlook 2003 - Custom Templates for Public Folders

Got it working! Thanks so much!

"Sue Mosher [MVP-Outlook]" wrote:

You must use the field names, not control names. Drag the Subject property to a custom page on your form. Right-click the...
Forum: Outlook - Using Forms May 28th 07, 04:39 AM Posted to microsoft.public.outlook.program_forms
Replies: 21
Views: 1,337
Posted By Scott07
Outlook 2003 - Custom Templates for Public Folders

So you mean something like the following? Would that link the three
textboxes together?

[textbox1]& " " &[textbox2]& " " &[textbox3]

If that's correct and they're linked, how do I tie them to the...
Forum: Outlook - Using Forms May 27th 07, 10:05 PM Posted to microsoft.public.outlook.program_forms
Replies: 21
Views: 1,337
Posted By Scott07
Outlook 2003 - Custom Templates for Public Folders

Any suggestions on where to find examples for the formula to concatenate my
other textboxes' properties to the Subject property's textbox?

Thank you.

"Sue Mosher [MVP-Outlook]" wrote:

You need...
Forum: Outlook - Using Forms May 26th 07, 01:09 AM Posted to microsoft.public.outlook.program_forms
Replies: 21
Views: 1,337
Posted By Scott07
Outlook 2003 - Custom Templates for Public Folders

Thank you for your response, patience, and guidance.

I've tried using textboxes bound to the "Subject" property, but the problem
I keep experiencing is the following. Since all of my textboxes are...
Forum: Outlook - Using Forms May 25th 07, 06:07 PM Posted to microsoft.public.outlook.program_forms
Replies: 21
Views: 1,337
Posted By Scott07
Outlook 2003 - Custom Templates for Public Folders

Hi, Sue,

Last night, I visited outlookcode.com and spent a few hours trying to solve
my problem, but am still quite confused. Thus far, I've recreated my form
with unbound textboxes and have had...
Forum: Outlook - Using Forms May 24th 07, 04:14 PM Posted to microsoft.public.outlook.program_forms
Replies: 21
Views: 1,337
Posted By Scott07
Outlook 2003 - Custom Templates for Public Folders

Sue,

Per your input, I've recreated my textboxes so that they are now unbound.
My rationale behind binding them to the "Subject" field was to emulate the
"Subject" field's ability to display on...
Forum: Outlook - Using Forms May 24th 07, 03:57 AM Posted to microsoft.public.outlook.program_forms
Replies: 21
Views: 1,337
Posted By Scott07
Outlook 2003 - Custom Templates for Public Folders

I would assume that these are unbound text boxes, as they are not dependent
upon any Outlook properties. Although would their origin as "Subject" fields
make them bound text boxes?

Based upon...
Forum: Outlook - Using Forms May 23rd 07, 05:39 PM Posted to microsoft.public.outlook.program_forms
Replies: 21
Views: 1,337
Posted By Scott07
Outlook 2003 - Custom Templates for Public Folders

Hi, Sue,

So I've done a bit of research to better understand what you're talking
about below, but am still slightly confused. As an example, I have 3 text
boxes that I want displayed on the...
Forum: Outlook - Using Forms May 22nd 07, 04:23 PM Posted to microsoft.public.outlook.program_forms
Replies: 21
Views: 1,337
Posted By Scott07
Outlook 2003 - Custom Templates for Public Folders

Thanks. I got there, but I must not be doing something correctly.
Initially, I was thinking that I could create multiple "Subject" fields to
display the data and rename them appropriately, but it...
Showing results 1 to 25 of 28

 
Forum Jump

All times are GMT +1. The time now is 05:32 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.