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 23 of 23
Search took 0.04 seconds.
Search: Posts made by: Delnang
Forum: Outlook - Using Forms January 26th 10, 05:01 PM Posted to microsoft.public.outlook.program_forms
Replies: 1
Views: 715
Posted By Delnang
Tab Order Out of Sequence After Attaching Document

I have the tab order set up in my custom form to move from top to bottom. I
used Layout | Tab Order with the following order:

To:
Employee Name:
Manager Name:
Officier Name:
Memo...
Forum: Outlook - Using Forms January 22nd 10, 06:18 PM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 964
Posted By Delnang
Code to clear certain fields in Outlook Form

From a user's perspective, it is right after he/she clicks the message box
which would read, "Manager Employee Number is not valid..." Once the OK
button on the "error" is clicked, their cursor...
Forum: Outlook - Using Forms January 21st 10, 08:00 PM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 964
Posted By Delnang
Code to clear certain fields in Outlook Form

Sue - Thank you!!! I'll remember that...VBScript not JScript. I think I
have one last question. The VBScript I have now is as follows:

Function Item_Send()
Const olCc = 2
Set objRecip =...
Forum: Outlook - Using Forms January 20th 10, 10:43 PM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 964
Posted By Delnang
Code to clear certain fields in Outlook Form

The code reads as follows:
Function Item_Send()
Const olCc = 2
Set objRecip = Item.Recipients.Add
(Item.UserProperties("ManagerEmployeeNumber2"))
If objRecip.Resolve Then
objRecip.Type =...
Forum: Outlook - Using Forms January 20th 10, 07:05 PM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 964
Posted By Delnang
Code to clear certain fields in Outlook Form

I have a text box for employee number. This field is used to address the CC
field. If the employee number is typed incorrectly and therefore cannot be
resolved and error message show. What I'd...
Forum: Outlook - Using Forms January 12th 10, 02:24 PM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 1,222
Posted By Delnang
Mail Format Changes from HTML to RTF Upon Forward - How to cha

I know, I am puzzled too. We use the attach icon built into Outlook to
attach a pdf file. The only thing I could think of it that the code buttons
which add text to the body of the message was...
Forum: Outlook - Using Forms January 7th 10, 08:11 PM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 1,222
Posted By Delnang
Mail Format Changes from HTML to RTF Upon Forward - How to cha

I do have the same the same published form set up as the form to use in
Actions upon Forward.

"Sue Mosher [MVP]" wrote:

As I described in that thread, you need to make sure that the form is...
Forum: Outlook - Using Forms January 4th 10, 08:05 PM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 1,222
Posted By Delnang
Mail Format Changes from HTML to RTF Upon Forward - How to cha

Sue,
I appreciate your response. This is closely related to the...
Forum: Outlook - Using Forms December 29th 09, 03:10 PM Posted to microsoft.public.outlook.program_forms
Replies: 7
Views: 1,222
Posted By Delnang
Mail Format Changes from HTML to RTF Upon Forward - How to change

Mail Format Changes from HTML to RTF Upon Forward in custom form. User is
unable to see attached file icons. How can I ensure user can see attached
file icons upon forward.
Forum: Outlook - Using Forms December 17th 09, 02:43 PM Posted to microsoft.public.outlook.program_forms
Replies: 9
Views: 778
Posted By Delnang
Code Button to Copy Standard Text in Memo (message) Field

The code buttons are working fine where the buttons enter text in the memo
field. However...When the user Forwards a message which has an attachment
and the next user receives it and clicks...
Forum: Outlook - Using Forms October 5th 09, 03:48 PM Posted to microsoft.public.outlook.program_forms
Replies: 1
Views: 420
Posted By Delnang
Run Sript after Forward

I have a command button to insert text into the message body.

Item.Body = Item.Body & vbCrLf & "new stuff"

The script runs before a user hits Forward, but does not run if the user
were to hit...
Forum: Outlook - Using Forms September 30th 09, 08:45 PM Posted to microsoft.public.outlook.program_forms
Replies: 10
Views: 1,308
Posted By Delnang
Script only runs on my PC

Yes, got it. Thanks!

"Sue Mosher [MVP]" wrote:

This is so very, very basic that you need to learn it, so I'm not going to
give you the answer, only hints. You already seem to know that you...
Forum: Outlook - Using Forms September 30th 09, 08:10 PM Posted to microsoft.public.outlook.program_forms
Replies: 10
Views: 1,308
Posted By Delnang
Script only runs on my PC

Sorry, I got lost by that. Here is my code:

Sub Employee_Signature_Click()
Item.Body = Item.Body & vbCrLf & Now()
Item.Body = Item.Body & vbCrLf & "I have read the document."
End Sub

What would be...
Forum: Outlook - Using Forms September 30th 09, 06:35 PM Posted to microsoft.public.outlook.program_forms
Replies: 10
Views: 1,308
Posted By Delnang
Script only runs on my PC

Again, Thank you!

One last question? Approx. 95% of our users have signatures. How do you go
about getting that custom code to appear above one's signature. Right now,
it is appearing below...
Forum: Outlook - Using Forms September 30th 09, 05:48 PM Posted to microsoft.public.outlook.program_forms
Replies: 10
Views: 1,308
Posted By Delnang
Script only runs on my PC

Thank you! What great knowledge.

1) What would the code look like? I am not very well versed. I get
confused as to where () and "" go.
Item.Body = Item.Body & vbCrLf & "concat(=now(),"new...
Forum: Outlook - Using Forms September 30th 09, 05:06 PM Posted to microsoft.public.outlook.program_forms
Replies: 10
Views: 1,308
Posted By Delnang
Script only runs on my PC

Yes, that worked like a charm. I knew it would be easy.

Two addtional questions:
1. Is there a way to add an =now() type statement to this so that one would
know when the text was added to an...
Forum: Outlook - Using Forms September 30th 09, 02:13 PM Posted to microsoft.public.outlook.program_forms
Replies: 10
Views: 1,308
Posted By Delnang
Script only runs on my PC

I have code behind a command button:
Example:

Item.Body = Item.Body & vbCrLf & "new stuff"

and when I select the command button it works on my PC. When I send the
email, and the recipient clicks...
Forum: Outlook - Using Forms September 21st 09, 03:22 PM Posted to microsoft.public.outlook.program_forms
Replies: 9
Views: 778
Posted By Delnang
Code Button to Copy Standard Text in Memo (message) Field

Great, thank you for all your help.

Angie

"Sue Mosher [MVP]" wrote:

Parentheses are used to enclose arguments. Therefore, your function has no
name. And in fact, you don't want a function at...
Forum: Outlook - Using Forms September 18th 09, 10:22 PM Posted to microsoft.public.outlook.program_forms
Replies: 9
Views: 778
Posted By Delnang
Code Button to Copy Standard Text in Memo (message) Field

I need just a little more help with the code. Will this be written like:

Function (Acknowledgement)
Item.Body = Item.Body & vbCrLf & "new stuff"
End Function

I do not know all the code to make it...
Forum: Outlook - Using Forms September 18th 09, 06:33 PM Posted to microsoft.public.outlook.program_forms
Replies: 9
Views: 778
Posted By Delnang
Code Button to Copy Standard Text in Memo (message) Field

The email editor choice is set by the user. The text copied in can be flat
rtf text...no bells and whistles.
Thank you,
Angie

"Sue Mosher [MVP]" wrote:

Is Word the email editor? Or the native...
Forum: Outlook - Using Forms September 18th 09, 05:35 PM Posted to microsoft.public.outlook.program_forms
Replies: 9
Views: 778
Posted By Delnang
Code Button to Copy Standard Text in Memo (message) Field

Sue,
Thank you for your response. Yes, I am able to publish these forms to the
Organizational Forms library on our company's Exchange server. We are using
Outlook 2003. The message format type...
Forum: Outlook - Using Forms September 18th 09, 03:28 PM Posted to microsoft.public.outlook.program_forms
Replies: 9
Views: 778
Posted By Delnang
Code Button to Copy Standard Text in Memo (message) Field

I am looking for the code I could use behind a macro button that would
basically copy a sentence or two into the message (memo) field.

What I am hoping for is that I send a form to an employee......
Forum: Outlook - Using Forms January 9th 06, 03:27 PM Posted to microsoft.public.outlook.program_forms
Replies: 0
Views: 1,099
Posted By Delnang
Reply/Forward Keeps Running Thread in one Message Instead of Separ

I am creating a form for customer complaints. The customer fills out a form
and it comes into a que, we assign a Complaint # (i.e. 12345). We then
forward it to a manager who then might make...
Showing results 1 to 23 of 23

 
Forum Jump

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