Forum: Outlook - Using Forms
October 31st 06, 03:30 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 423
IPM.Note
Hello Sue,
The icon for the IPM.Note custom form with vbscript has been assigned 2 new
icons (large and small) on properties.
I've unchecked the "Send form definition with item"
I've then published...
|
Forum: Outlook - Using Forms
October 17th 06, 04:06 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 474
Publishing to Exchange Environment
Sue,
My IT Director approved the custom vb form that you helped me create.
However, the sys admin is wanting me to send her an oft file via email or
drop it on a network share in order to publish...
|
Forum: Outlook - Using Forms
October 12th 06, 10:05 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 21
Views: 827
Phone Message - Custom
The "object variable not set" comes up when you send the form with the script
running in the background. All of the sudden the debugger comes up and
states that the
strBody1 = strbody1 &...
|
Forum: Outlook - Using Forms
October 12th 06, 08:33 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 21
Views: 827
Phone Message - Custom
I don't know.
I feel like my head is going to explode. Maybe I'm making this way more
difficult than it is.
I figured that you can have thousands of variables for the text boxes.
Where when...
|
Forum: Outlook - Using Forms
October 12th 06, 04:54 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 21
Views: 827
Phone Message - Custom
Being that the object variable is not set, does that mean that I have to set
each area because there is nothing inserted into the text box (i.e. "Caller",
"Phonetext") as a null value.
So I'm...
|
Forum: Outlook - Using Forms
October 12th 06, 03:13 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 21
Views: 827
Phone Message - Custom
Well, the TO: field was just an example.
I'm just going to be using the Caller, Companytext and Phonetext. This is
in order for the Blackberries to see it. The only thing the BB see's on any...
|
Forum: Outlook - Using Forms
October 11th 06, 11:01 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 21
Views: 827
Phone Message - Custom
Yes and here is the stumbling block.
After the TO: field, anyone can insert the name from Outlook or Exchange. I
don't know the coding because the text information entered varies from phone
call...
|
Forum: Outlook - Using Forms
October 11th 06, 10:03 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 21
Views: 827
Phone Message - Custom
No disrespect, but I am asking a specific question
Hopefully my explanation here can make my question more understandable.
TO: ________________________________________
COMPANY :...
|
Forum: Outlook - Using Forms
September 28th 06, 09:47 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 21
Views: 827
Phone Message - Custom
Sue,
This is a "custom phone message form" as in the subject line.
When you start talking about CDO, Recipient collections, post form, etc,
it's all greek to me.
I'd take screen shots and send them...
|
Forum: Outlook - Using Forms
September 28th 06, 07:34 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 21
Views: 827
Phone Message - Custom
I'm not exactly sure why we're using html coding for this.
If you use the field chooser to drop the TO: field onto your form, it drops
the box for selecting addresses from your global if you're on...
|
Forum: Outlook - Using Forms
September 28th 06, 04:41 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 21
Views: 827
Phone Message - Custom
And this is for the text boxes?
In the To: field, the entry changes.
Same for the Company: field, and the Phone: field.
So the user of the form actually types the information into this text box...
|
Forum: Outlook - Using Forms
September 28th 06, 03:20 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 21
Views: 827
Phone Message - Custom
And the vbscript for that would look how??
Corey
"Sue Mosher [MVP-Outlook]" wrote:
Then you'd set HTMLBody, not Body and your strBody would need to include all the HTML formatting you want to...
|
Forum: Outlook - Using Forms
September 27th 06, 10:26 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 21
Views: 827
Phone Message - Custom
This vbscript is great for returning a set value.
But what if you needed to display font in a text area of the form that
always changes per call, and paste it within the message body.
Sub...
|
Forum: Outlook - Using Forms
September 15th 06, 11:33 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 11
Views: 1,986
Outlook form with vbscript
We have the combination field set up on the "Edit Read Page" however, it's
hidden to the receiver of the form.
The setup of the combination is correct, . But because the combination
formula is...
|
Forum: Outlook - Using Forms
September 15th 06, 10:38 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 11
Views: 1,986
Outlook form with vbscript
The subject line code that is being used with the combination is: "Please
open, message from [caller] @ [phone]
"Sue Mosher [MVP-Outlook]" wrote:
It might help if you provided the formula for...
|
Forum: Outlook - Using Forms
September 15th 06, 10:08 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 11
Views: 1,986
Outlook form with vbscript
Sorry, let me rephrase.
I have a combination field linked to the subject line. When the combination
field is inserted onto the form; and the form then sent out, the person on
the receiving end is...
|
Forum: Outlook - Using Forms
September 15th 06, 09:19 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 11
Views: 1,986
Outlook form with vbscript
Also, I have a combination field linked to the subject line. When it's
inserted, the person on the receiving end is getting an error stating "form
cannot be opened".
Corey
"Sue Mosher...
|
Forum: Outlook - Using Forms
September 15th 06, 09:15 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 11
Views: 1,986
Outlook form with vbscript
Sub Item_Send()
strBody = Item.Body
If Item.UserProperties("Telephoned") = True Then
strBody = strBody & vbCrLf & "Telephoned"
End If
If Item.UserProperties("PleaseCall") =...
|