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 53
Search took 0.07 seconds.
Search: Posts made by: cmonroe21 via OfficeKB.com
Forum: Outlook - Using Forms June 19th 09, 06:23 PM Posted to microsoft.public.outlook.program_forms
Replies: 6
Views: 841
Using my custom form with a public folder

I tried that, but I recreated the "Assign to" button and "send" button on my
task, and so I was getting the "Cannot create a form of this type from a
public folder" when I clicked send. Just now had...
Forum: Outlook - Using Forms June 18th 09, 08:52 PM Posted to microsoft.public.outlook.program_forms
Replies: 6
Views: 841
Using my custom form with a public folder

Thank you so much for reading that novel and responding! Thanks for the info
about folders. So, we created a folder for appointments and created a custom
appointment form and made it the default...
Forum: Outlook - Using Forms June 16th 09, 09:41 PM Posted to microsoft.public.outlook.program_forms
Replies: 6
Views: 841
Using my custom form with a public folder

Nope, that's not right either. Can't seem to find out how to create a folder
for emails (the folder I created for "mail and post items" will only accept
posts).

cmonroe21 wrote:
I might have just...
Forum: Outlook - Using Forms June 16th 09, 09:36 PM Posted to microsoft.public.outlook.program_forms
Replies: 6
Views: 841
Using my custom form with a public folder

I might have just figured out that what I thought was a standard message form
is actually a standard note form? I should create a folder that contains
"notes" and not "mail and posts"???

cmonroe21...
Forum: Outlook - Using Forms June 16th 09, 09:25 PM Posted to microsoft.public.outlook.program_forms
Replies: 6
Views: 841
Using my custom form with a public folder

I have canned my rather extensive task form due to functionality issues (huge
bummer!) and decided to try to use a message form instead. But since I
completely created my task only to find out it...
Forum: Outlook - Using Forms June 15th 09, 07:49 PM Posted to microsoft.public.outlook.program_forms
Replies: 2
Views: 122
Accessing _RecipientControl1 (Assigned To)

Works like a charm. Thank you! I think I was confused about the
_RecipientControl1 thing, good to know that I can bypass dealing with it!

Sue Mosher [MVP] wrote:
Try checking the value of...
Forum: Outlook - Using Forms June 15th 09, 05:47 PM Posted to microsoft.public.outlook.program_forms
Replies: 2
Views: 122
Accessing _RecipientControl1 (Assigned To)

I am creating a custom task form in OL2007, and I want to make sure the
"Assigned To" box (bound to the Assigned to field) is not empty when Send is
clicked. The name of the field associated with...
Forum: Outlook - Using Forms June 12th 09, 09:56 PM Posted to microsoft.public.outlook.program_forms
Replies: 4
Views: 849
Cannot assign a task from a public folder?

I try to look on outlookcode.com first before posting any questions on here...
bought the book which led me to that site. It's great! But, I couldn't find
much on this topic. You have given me...
Forum: Outlook - Using Forms June 12th 09, 06:48 PM Posted to microsoft.public.outlook.program_forms
Replies: 4
Views: 849
Cannot assign a task from a public folder?

Thanks so much for your feedback! Very helpful! Okay, on that note... is
there any way to set up more than one default task form, so that when someone
creates a new task they can choose from more...
Forum: Outlook - Using Forms June 12th 09, 05:15 PM Posted to microsoft.public.outlook.program_forms
Replies: 4
Views: 849
Cannot assign a task from a public folder?

I created a custom task template and published it in a public folder (I set
the folder up to store tasks). Seems to be working fine until the person
goes to "Send" (or assign) the task, then we get...
Forum: Outlook - Using Forms June 4th 09, 09:53 PM Posted to microsoft.public.outlook.program_forms
Replies: 4
Views: 468
How do I grab a field property (like .value) so I can modify it via OL code?

Thank you Sue. I think you are my new hero :)

Sue Mosher [MVP] wrote:
No, your first instinct was correct. A look at the object browser (F2 in
VBA) would show you that the UserProperty object...
Forum: Outlook - Using Forms June 3rd 09, 11:55 PM Posted to microsoft.public.outlook.program_forms
Replies: 4
Views: 468
How do I grab a field property (like .value) so I can modify it via OL code?

Thank you! Item.UserProperties("TestBox").Value = "works!" worked!!

I thought that TestBox was a field that had properties, but was not a
property itself... obviously my train of thought was not...
Forum: Outlook - Using Forms June 3rd 09, 10:52 PM Posted to microsoft.public.outlook.program_forms
Replies: 4
Views: 468
How do I grab a field property (like .value) so I can modify it via OL code?

I am creating a custom OL2007 task form with coding in Outlook. I saw the
outlookcode.com page "Syntax for outlook property and form control values and
events" and got the PropertyChange fucntion to...
Forum: Outlook - Using Forms June 3rd 09, 05:29 PM Posted to microsoft.public.outlook.program_forms
Replies: 0
Views: 275
Recreate the Attachment button

I am creating an OL2007 task and want to create my own attachment button. I
figured out that the user can select the "Insert" tab at the top of the
window and then has access to the paperclip...
Forum: Outlook - Using Forms June 3rd 09, 03:56 PM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 489
Use VBA editor on my custom OL form

Thank you so much for your help! It's working like a charm! :)

Sue Mosher [MVP] wrote:
No, as the error message said, you can't send a task request to yourself.

I used:

[quoted text...
Forum: Outlook - Using Forms June 3rd 09, 01:10 AM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 489
Use VBA editor on my custom OL form

I used:

Sub Send_Click()
Item.Assign
Item.Send
End Sub

And it seems to like it, but it says I cannot send a task request to myself??
I tried sending it to someone else, and I cannot be sure they...
Forum: Outlook - Using Forms June 3rd 09, 12:37 AM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 489
Use VBA editor on my custom OL form

Sub Send_Click()
Dim myTask As Outlook.TaskItem 'do I need to do this? or is the task
item already created and already have a name?
Set myTask = Application.CreateItem(olTaskItem) 'but...
Forum: Outlook - Using Forms June 3rd 09, 12:19 AM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 489
Use VBA editor on my custom OL form

Thank you! So when I create the "Send" command button control on the form,
OL2007 doesn't automatically create a Sub Send_Click()? (The view code
window is empty, so I'm guessing not?) So I have...
Forum: Outlook - Using Forms June 2nd 09, 09:47 PM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 489
Use VBA editor on my custom OL form

I have been able to create fairly extensive custom forms using no code at all.
.. Outlook seems to be pretty custom form friendly. But now I am trying to
create a task form and don't think I can get...
Forum: Outlook - Using Forms May 27th 09, 12:06 AM Posted to microsoft.public.outlook.program_forms
Replies: 2
Views: 444
Task form fields

Thank you so much! That's exactly what I needed! I appreciate the help!
And the quick response! :)

Sue Mosher [MVP] wrote:
The Assigned To field on a task request is the equivalent of the To...
Forum: Outlook - Using Forms May 26th 09, 05:07 PM Posted to microsoft.public.outlook.program_forms
Replies: 0
Views: 406
Task form fields

I have created a custom task form using the p.2 page and now need to
replicate the "To..." button and its text box as well as the Send button. I
know I need to assign the already existing task form...
Forum: Outlook - Using Forms May 26th 09, 05:07 PM Posted to microsoft.public.outlook.program_forms
Replies: 2
Views: 444
Task form fields

I have created a custom task form using the p.2 page and now need to
replicate the "To..." button and its text box as well as the Send button. I
know I need to assign the already existing task form...
Forum: Outlook - Using Forms May 4th 09, 04:19 PM Posted to microsoft.public.outlook.program_forms
Replies: 2
Views: 382
Difference between the TabStrip and MultiPage controls??

Thank you so much!

Sue Mosher [MVP] wrote:
If you want to place controls on the design surface, use a multi-page
control. I can't think of any scenarios where tabstrip would be preferred -- ...
Forum: Outlook - Using Forms April 28th 09, 07:40 PM Posted to microsoft.public.outlook.program_forms
Replies: 2
Views: 382
Difference between the TabStrip and MultiPage controls??

I am designing a task form template in Outlook 2007 in which I want to use
either the MultiPage or TabStrip controls. They look similar, what is the
difference? I have noticed that with the...
Forum: Outlook - Using Forms April 17th 09, 07:09 PM Posted to microsoft.public.outlook.program_forms
Replies: 1
Views: 314
Need to create multiple category label sets.

How do I get the category color labels to stick to a certain calendar? For
example, I have the categories labeled for my email (i.e. blue is
"Attachments to Save", green is "Important Info in...
Showing results 1 to 25 of 53

 
Forum Jump

All times are GMT +1. The time now is 05:20 AM.


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.