![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
#11
|
|||
|
|||
![]()
Thanks Sue. I tried what you recommended, but it still doesn't work. The
BCC fied/control has been removed from the form. I went into the (Properties) tab and made sure the "Send form defnition with item" is unchecked. I went into the (Actions) tab, double-clicked the Forward action and in "This action creates a form of the following type", I pointed the Form name: to my form. After that, I published the form once again. The code I have is: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "Sue Mosher [MVP-Outlook]" wrote: You might have removed the control displaying the Bcc property, but you didn't remove the Bcc field. Removing a control just removes a control. It has no effect on the data. Did you try what I suggested? -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "teenzbutler" wrote in message news ![]() I deleted the BCC field, and published the form. I opened the form, clicked the To: button, and the BCC field is populating with the old email address. How is that possible without the BCC field in the form? Is there a cache somewhere that I am not aware of? I assume you need a BCC field in the form in order for the code to work. Isn't that correct? "Sue Mosher [MVP-Outlook]" wrote: I can't quite picture what you're doing, given that it is not possible to delete a standard field from any Outlook item. The way to remove a recipient from a custom form is to run the form, remove the recipient, republish. "teenzbutler" wrote in message ... Thanks Sue. I am testing the code with a new email address. However, I have one problem, I cannot remove the old email address within the BCC field. I did not input the email address in the field below "Set the initial value of this field to:" I manually entered it within the BCC field itself by editing the field. Now when I try and remove the email address, it won't go away. Even if I delete the BCC field and create a new one, the old address re-populates. I went into Advanced Properties to remove it, but nothing works. What am I doing wrong? "Sue Mosher [MVP-Outlook]" wrote: Put code in the Item_Forward event handler to set the Bcc property of the new forward message to the desired address: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "teenzbutler" wrote in message ... Thanks for you reply. No, I did not set the initial value to this field. Instead, I edited the field an manually inputted the email address. The reason why I did it this way was because, when I checked the "Set the initial value of this field to:" box, the users were unable to send the form. They would get "Operation failed". It took me a while to figure out that it was this setting that caused the problem. Even though I published the form to the Organizational Library, it still would fail. Do you have any suggestions? "Sue Mosher [MVP-Outlook]" wrote: Are you setting the value of the Bcc property of the original item with an initial value? If not, how? "teenzbutler" wrote in message ... I created a BCC: field so that a specific user is copied anytime the form is submitted. I want that same person to be BCC-ed when the form is forwarded as well. For some reason, I cannot figure this out. Does anyone have any information on this? |
Ads |
#12
|
|||
|
|||
![]()
When you forward an item, does its Help | About This Form dialog give you the correct and current name and version information for the form?
If you put a MsgBox statement in the Item_Forward event handler, does the message box show? -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "teenzbutler" wrote in message ... Thanks Sue. I tried what you recommended, but it still doesn't work. The BCC fied/control has been removed from the form. I went into the (Properties) tab and made sure the "Send form defnition with item" is unchecked. I went into the (Actions) tab, double-clicked the Forward action and in "This action creates a form of the following type", I pointed the Form name: to my form. After that, I published the form once again. The code I have is: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "Sue Mosher [MVP-Outlook]" wrote: You might have removed the control displaying the Bcc property, but you didn't remove the Bcc field. Removing a control just removes a control. It has no effect on the data. Did you try what I suggested? "teenzbutler" wrote in message news ![]() I deleted the BCC field, and published the form. I opened the form, clicked the To: button, and the BCC field is populating with the old email address. How is that possible without the BCC field in the form? Is there a cache somewhere that I am not aware of? I assume you need a BCC field in the form in order for the code to work. Isn't that correct? "Sue Mosher [MVP-Outlook]" wrote: I can't quite picture what you're doing, given that it is not possible to delete a standard field from any Outlook item. The way to remove a recipient from a custom form is to run the form, remove the recipient, republish. "teenzbutler" wrote in message ... Thanks Sue. I am testing the code with a new email address. However, I have one problem, I cannot remove the old email address within the BCC field. I did not input the email address in the field below "Set the initial value of this field to:" I manually entered it within the BCC field itself by editing the field. Now when I try and remove the email address, it won't go away. Even if I delete the BCC field and create a new one, the old address re-populates. I went into Advanced Properties to remove it, but nothing works. What am I doing wrong? "Sue Mosher [MVP-Outlook]" wrote: Put code in the Item_Forward event handler to set the Bcc property of the new forward message to the desired address: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "teenzbutler" wrote in message ... Thanks for you reply. No, I did not set the initial value to this field. Instead, I edited the field an manually inputted the email address. The reason why I did it this way was because, when I checked the "Set the initial value of this field to:" box, the users were unable to send the form. They would get "Operation failed". It took me a while to figure out that it was this setting that caused the problem. Even though I published the form to the Organizational Library, it still would fail. Do you have any suggestions? "Sue Mosher [MVP-Outlook]" wrote: Are you setting the value of the Bcc property of the original item with an initial value? If not, how? "teenzbutler" wrote in message ... I created a BCC: field so that a specific user is copied anytime the form is submitted. I want that same person to be BCC-ed when the form is forwarded as well. For some reason, I cannot figure this out. Does anyone have any information on this? |
#13
|
|||
|
|||
![]()
When I forward the form, I do not see anything in the Form Dialog box. The
Version, Form Number, and Contact are blank. I added a Msgbox to the script. It now looks like this: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " MsgBox "This is a test" End Function I do not get prompted when I forward the form. What do you think? "Sue Mosher [MVP-Outlook]" wrote: When you forward an item, does its Help | About This Form dialog give you the correct and current name and version information for the form? If you put a MsgBox statement in the Item_Forward event handler, does the message box show? -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "teenzbutler" wrote in message ... Thanks Sue. I tried what you recommended, but it still doesn't work. The BCC fied/control has been removed from the form. I went into the (Properties) tab and made sure the "Send form defnition with item" is unchecked. I went into the (Actions) tab, double-clicked the Forward action and in "This action creates a form of the following type", I pointed the Form name: to my form. After that, I published the form once again. The code I have is: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "Sue Mosher [MVP-Outlook]" wrote: You might have removed the control displaying the Bcc property, but you didn't remove the Bcc field. Removing a control just removes a control. It has no effect on the data. Did you try what I suggested? "teenzbutler" wrote in message news ![]() the To: button, and the BCC field is populating with the old email address. How is that possible without the BCC field in the form? Is there a cache somewhere that I am not aware of? I assume you need a BCC field in the form in order for the code to work. Isn't that correct? "Sue Mosher [MVP-Outlook]" wrote: I can't quite picture what you're doing, given that it is not possible to delete a standard field from any Outlook item. The way to remove a recipient from a custom form is to run the form, remove the recipient, republish. "teenzbutler" wrote in message ... Thanks Sue. I am testing the code with a new email address. However, I have one problem, I cannot remove the old email address within the BCC field. I did not input the email address in the field below "Set the initial value of this field to:" I manually entered it within the BCC field itself by editing the field. Now when I try and remove the email address, it won't go away. Even if I delete the BCC field and create a new one, the old address re-populates. I went into Advanced Properties to remove it, but nothing works. What am I doing wrong? "Sue Mosher [MVP-Outlook]" wrote: Put code in the Item_Forward event handler to set the Bcc property of the new forward message to the desired address: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "teenzbutler" wrote in message ... Thanks for you reply. No, I did not set the initial value to this field. Instead, I edited the field an manually inputted the email address. The reason why I did it this way was because, when I checked the "Set the initial value of this field to:" box, the users were unable to send the form. They would get "Operation failed". It took me a while to figure out that it was this setting that caused the problem. Even though I published the form to the Organizational Library, it still would fail. Do you have any suggestions? "Sue Mosher [MVP-Outlook]" wrote: Are you setting the value of the Bcc property of the original item with an initial value? If not, how? "teenzbutler" wrote in message ... I created a BCC: field so that a specific user is copied anytime the form is submitted. I want that same person to be BCC-ed when the form is forwarded as well. For some reason, I cannot figure this out. Does anyone have any information on this? |
#14
|
|||
|
|||
![]()
For troubleshooting purposes, you should always apply a new version number on the (Properties) page of the form before you publishe a new version.
Does the item being forwarded reside in a folder in another user's mailbox? To what forms library did you publish the form? -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "teenzbutler" wrote in message ... When I forward the form, I do not see anything in the Form Dialog box. The Version, Form Number, and Contact are blank. I added a Msgbox to the script. It now looks like this: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " MsgBox "This is a test" End Function I do not get prompted when I forward the form. What do you think? "Sue Mosher [MVP-Outlook]" wrote: When you forward an item, does its Help | About This Form dialog give you the correct and current name and version information for the form? If you put a MsgBox statement in the Item_Forward event handler, does the message box show? "teenzbutler" wrote in message ... Thanks Sue. I tried what you recommended, but it still doesn't work. The BCC fied/control has been removed from the form. I went into the (Properties) tab and made sure the "Send form defnition with item" is unchecked. I went into the (Actions) tab, double-clicked the Forward action and in "This action creates a form of the following type", I pointed the Form name: to my form. After that, I published the form once again. The code I have is: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "Sue Mosher [MVP-Outlook]" wrote: You might have removed the control displaying the Bcc property, but you didn't remove the Bcc field. Removing a control just removes a control. It has no effect on the data. Did you try what I suggested? "teenzbutler" wrote in message news ![]() the To: button, and the BCC field is populating with the old email address. How is that possible without the BCC field in the form? Is there a cache somewhere that I am not aware of? I assume you need a BCC field in the form in order for the code to work. Isn't that correct? "Sue Mosher [MVP-Outlook]" wrote: I can't quite picture what you're doing, given that it is not possible to delete a standard field from any Outlook item. The way to remove a recipient from a custom form is to run the form, remove the recipient, republish. "teenzbutler" wrote in message ... Thanks Sue. I am testing the code with a new email address. However, I have one problem, I cannot remove the old email address within the BCC field. I did not input the email address in the field below "Set the initial value of this field to:" I manually entered it within the BCC field itself by editing the field. Now when I try and remove the email address, it won't go away. Even if I delete the BCC field and create a new one, the old address re-populates. I went into Advanced Properties to remove it, but nothing works. What am I doing wrong? "Sue Mosher [MVP-Outlook]" wrote: Put code in the Item_Forward event handler to set the Bcc property of the new forward message to the desired address: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "teenzbutler" wrote in message ... Thanks for you reply. No, I did not set the initial value to this field. Instead, I edited the field an manually inputted the email address. The reason why I did it this way was because, when I checked the "Set the initial value of this field to:" box, the users were unable to send the form. They would get "Operation failed". It took me a while to figure out that it was this setting that caused the problem. Even though I published the form to the Organizational Library, it still would fail. Do you have any suggestions? "Sue Mosher [MVP-Outlook]" wrote: Are you setting the value of the Bcc property of the original item with an initial value? If not, how? "teenzbutler" wrote in message ... I created a BCC: field so that a specific user is copied anytime the form is submitted. I want that same person to be BCC-ed when the form is forwarded as well. For some reason, I cannot figure this out. Does anyone have any information on this? |
#15
|
|||
|
|||
![]()
I added the verion and number in the properties tab. The item being
forwarded does not reside in a folder in another user's mailbox. I published the form in the Organizational Forms Library. "Sue Mosher [MVP-Outlook]" wrote: For troubleshooting purposes, you should always apply a new version number on the (Properties) page of the form before you publishe a new version. Does the item being forwarded reside in a folder in another user's mailbox? To what forms library did you publish the form? -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "teenzbutler" wrote in message ... When I forward the form, I do not see anything in the Form Dialog box. The Version, Form Number, and Contact are blank. I added a Msgbox to the script. It now looks like this: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " MsgBox "This is a test" End Function I do not get prompted when I forward the form. What do you think? "Sue Mosher [MVP-Outlook]" wrote: When you forward an item, does its Help | About This Form dialog give you the correct and current name and version information for the form? If you put a MsgBox statement in the Item_Forward event handler, does the message box show? "teenzbutler" wrote in message ... Thanks Sue. I tried what you recommended, but it still doesn't work. The BCC fied/control has been removed from the form. I went into the (Properties) tab and made sure the "Send form defnition with item" is unchecked. I went into the (Actions) tab, double-clicked the Forward action and in "This action creates a form of the following type", I pointed the Form name: to my form. After that, I published the form once again. The code I have is: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "Sue Mosher [MVP-Outlook]" wrote: You might have removed the control displaying the Bcc property, but you didn't remove the Bcc field. Removing a control just removes a control. It has no effect on the data. Did you try what I suggested? "teenzbutler" wrote in message news ![]() the To: button, and the BCC field is populating with the old email address. How is that possible without the BCC field in the form? Is there a cache somewhere that I am not aware of? I assume you need a BCC field in the form in order for the code to work. Isn't that correct? "Sue Mosher [MVP-Outlook]" wrote: I can't quite picture what you're doing, given that it is not possible to delete a standard field from any Outlook item. The way to remove a recipient from a custom form is to run the form, remove the recipient, republish. "teenzbutler" wrote in message ... Thanks Sue. I am testing the code with a new email address. However, I have one problem, I cannot remove the old email address within the BCC field. I did not input the email address in the field below "Set the initial value of this field to:" I manually entered it within the BCC field itself by editing the field. Now when I try and remove the email address, it won't go away. Even if I delete the BCC field and create a new one, the old address re-populates. I went into Advanced Properties to remove it, but nothing works. What am I doing wrong? "Sue Mosher [MVP-Outlook]" wrote: Put code in the Item_Forward event handler to set the Bcc property of the new forward message to the desired address: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "teenzbutler" wrote in message ... Thanks for you reply. No, I did not set the initial value to this field. Instead, I edited the field an manually inputted the email address. The reason why I did it this way was because, when I checked the "Set the initial value of this field to:" box, the users were unable to send the form. They would get "Operation failed". It took me a while to figure out that it was this setting that caused the problem. Even though I published the form to the Organizational Library, it still would fail. Do you have any suggestions? "Sue Mosher [MVP-Outlook]" wrote: Are you setting the value of the Bcc property of the original item with an initial value? If not, how? "teenzbutler" wrote in message ... I created a BCC: field so that a specific user is copied anytime the form is submitted. I want that same person to be BCC-ed when the form is forwarded as well. For some reason, I cannot figure this out. Does anyone have any information on this? |
#16
|
|||
|
|||
![]()
So, when you forward now, do you get the right version in Help | About This Form both on the original message and the new forward message? You could also try adding a ForwardItem.Display statement to the Forward event handler.
-- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "teenzbutler" wrote in message ... I added the verion and number in the properties tab. The item being forwarded does not reside in a folder in another user's mailbox. I published the form in the Organizational Forms Library. "Sue Mosher [MVP-Outlook]" wrote: For troubleshooting purposes, you should always apply a new version number on the (Properties) page of the form before you publishe a new version. Does the item being forwarded reside in a folder in another user's mailbox? To what forms library did you publish the form? "teenzbutler" wrote in message ... When I forward the form, I do not see anything in the Form Dialog box. The Version, Form Number, and Contact are blank. I added a Msgbox to the script. It now looks like this: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " MsgBox "This is a test" End Function I do not get prompted when I forward the form. What do you think? "Sue Mosher [MVP-Outlook]" wrote: When you forward an item, does its Help | About This Form dialog give you the correct and current name and version information for the form? If you put a MsgBox statement in the Item_Forward event handler, does the message box show? "teenzbutler" wrote in message ... Thanks Sue. I tried what you recommended, but it still doesn't work. The BCC fied/control has been removed from the form. I went into the (Properties) tab and made sure the "Send form defnition with item" is unchecked. I went into the (Actions) tab, double-clicked the Forward action and in "This action creates a form of the following type", I pointed the Form name: to my form. After that, I published the form once again. The code I have is: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "Sue Mosher [MVP-Outlook]" wrote: You might have removed the control displaying the Bcc property, but you didn't remove the Bcc field. Removing a control just removes a control. It has no effect on the data. Did you try what I suggested? "teenzbutler" wrote in message news ![]() the To: button, and the BCC field is populating with the old email address. How is that possible without the BCC field in the form? Is there a cache somewhere that I am not aware of? I assume you need a BCC field in the form in order for the code to work. Isn't that correct? "Sue Mosher [MVP-Outlook]" wrote: I can't quite picture what you're doing, given that it is not possible to delete a standard field from any Outlook item. The way to remove a recipient from a custom form is to run the form, remove the recipient, republish. "teenzbutler" wrote in message ... Thanks Sue. I am testing the code with a new email address. However, I have one problem, I cannot remove the old email address within the BCC field. I did not input the email address in the field below "Set the initial value of this field to:" I manually entered it within the BCC field itself by editing the field. Now when I try and remove the email address, it won't go away. Even if I delete the BCC field and create a new one, the old address re-populates. I went into Advanced Properties to remove it, but nothing works. What am I doing wrong? "Sue Mosher [MVP-Outlook]" wrote: Put code in the Item_Forward event handler to set the Bcc property of the new forward message to the desired address: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "teenzbutler" wrote in message ... Thanks for you reply. No, I did not set the initial value to this field. Instead, I edited the field an manually inputted the email address. The reason why I did it this way was because, when I checked the "Set the initial value of this field to:" box, the users were unable to send the form. They would get "Operation failed". It took me a while to figure out that it was this setting that caused the problem. Even though I published the form to the Organizational Library, it still would fail. Do you have any suggestions? "Sue Mosher [MVP-Outlook]" wrote: Are you setting the value of the Bcc property of the original item with an initial value? If not, how? "teenzbutler" wrote in message ... I created a BCC: field so that a specific user is copied anytime the form is submitted. I want that same person to be BCC-ed when the form is forwarded as well. For some reason, I cannot figure this out. Does anyone have any information on this? |
#17
|
|||
|
|||
![]()
Thanks Sue. When I open the form, I go up into Help, and there is not an
option that states "About this form." This options appears once I forward the form. After forwarding the form, I go up into Help About this Form. My version number appears properly. I can give the FowardItem.Display a try and report back. "Sue Mosher [MVP-Outlook]" wrote: So, when you forward now, do you get the right version in Help | About This Form both on the original message and the new forward message? You could also try adding a ForwardItem.Display statement to the Forward event handler. -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "teenzbutler" wrote in message ... I added the verion and number in the properties tab. The item being forwarded does not reside in a folder in another user's mailbox. I published the form in the Organizational Forms Library. "Sue Mosher [MVP-Outlook]" wrote: For troubleshooting purposes, you should always apply a new version number on the (Properties) page of the form before you publishe a new version. Does the item being forwarded reside in a folder in another user's mailbox? To what forms library did you publish the form? "teenzbutler" wrote in message ... When I forward the form, I do not see anything in the Form Dialog box. The Version, Form Number, and Contact are blank. I added a Msgbox to the script. It now looks like this: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " MsgBox "This is a test" End Function I do not get prompted when I forward the form. What do you think? "Sue Mosher [MVP-Outlook]" wrote: When you forward an item, does its Help | About This Form dialog give you the correct and current name and version information for the form? If you put a MsgBox statement in the Item_Forward event handler, does the message box show? "teenzbutler" wrote in message ... Thanks Sue. I tried what you recommended, but it still doesn't work. The BCC fied/control has been removed from the form. I went into the (Properties) tab and made sure the "Send form defnition with item" is unchecked. I went into the (Actions) tab, double-clicked the Forward action and in "This action creates a form of the following type", I pointed the Form name: to my form. After that, I published the form once again. The code I have is: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "Sue Mosher [MVP-Outlook]" wrote: You might have removed the control displaying the Bcc property, but you didn't remove the Bcc field. Removing a control just removes a control. It has no effect on the data. Did you try what I suggested? "teenzbutler" wrote in message news ![]() the To: button, and the BCC field is populating with the old email address. How is that possible without the BCC field in the form? Is there a cache somewhere that I am not aware of? I assume you need a BCC field in the form in order for the code to work. Isn't that correct? "Sue Mosher [MVP-Outlook]" wrote: I can't quite picture what you're doing, given that it is not possible to delete a standard field from any Outlook item. The way to remove a recipient from a custom form is to run the form, remove the recipient, republish. "teenzbutler" wrote in message ... Thanks Sue. I am testing the code with a new email address. However, I have one problem, I cannot remove the old email address within the BCC field. I did not input the email address in the field below "Set the initial value of this field to:" I manually entered it within the BCC field itself by editing the field. Now when I try and remove the email address, it won't go away. Even if I delete the BCC field and create a new one, the old address re-populates. I went into Advanced Properties to remove it, but nothing works. What am I doing wrong? "Sue Mosher [MVP-Outlook]" wrote: Put code in the Item_Forward event handler to set the Bcc property of the new forward message to the desired address: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "teenzbutler" wrote in message ... Thanks for you reply. No, I did not set the initial value to this field. Instead, I edited the field an manually inputted the email address. The reason why I did it this way was because, when I checked the "Set the initial value of this field to:" box, the users were unable to send the form. They would get "Operation failed". It took me a while to figure out that it was this setting that caused the problem. Even though I published the form to the Organizational Library, it still would fail. Do you have any suggestions? "Sue Mosher [MVP-Outlook]" wrote: Are you setting the value of the Bcc property of the original item with an initial value? If not, how? "teenzbutler" wrote in message ... I created a BCC: field so that a specific user is copied anytime the form is submitted. I want that same person to be BCC-ed when the form is forwarded as well. For some reason, I cannot figure this out. Does anyone have any information on this? |
#18
|
|||
|
|||
![]()
Sue. I added the ForwardItem.Display but that did not work. My code looks
like this: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " ForwardItem.Display MsgBox "This is a test" Response.Cc = Item.SenderEmailAddress End Function I stand corrected on the version and form number. This information does appear when you first send the form. I am not sure what else to try. "teenzbutler" wrote: Thanks Sue. When I open the form, I go up into Help, and there is not an option that states "About this form." This options appears once I forward the form. After forwarding the form, I go up into Help About this Form. My version number appears properly. I can give the FowardItem.Display a try and report back. "Sue Mosher [MVP-Outlook]" wrote: So, when you forward now, do you get the right version in Help | About This Form both on the original message and the new forward message? You could also try adding a ForwardItem.Display statement to the Forward event handler. -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "teenzbutler" wrote in message ... I added the verion and number in the properties tab. The item being forwarded does not reside in a folder in another user's mailbox. I published the form in the Organizational Forms Library. "Sue Mosher [MVP-Outlook]" wrote: For troubleshooting purposes, you should always apply a new version number on the (Properties) page of the form before you publishe a new version. Does the item being forwarded reside in a folder in another user's mailbox? To what forms library did you publish the form? "teenzbutler" wrote in message ... When I forward the form, I do not see anything in the Form Dialog box. The Version, Form Number, and Contact are blank. I added a Msgbox to the script. It now looks like this: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " MsgBox "This is a test" End Function I do not get prompted when I forward the form. What do you think? "Sue Mosher [MVP-Outlook]" wrote: When you forward an item, does its Help | About This Form dialog give you the correct and current name and version information for the form? If you put a MsgBox statement in the Item_Forward event handler, does the message box show? "teenzbutler" wrote in message ... Thanks Sue. I tried what you recommended, but it still doesn't work. The BCC fied/control has been removed from the form. I went into the (Properties) tab and made sure the "Send form defnition with item" is unchecked. I went into the (Actions) tab, double-clicked the Forward action and in "This action creates a form of the following type", I pointed the Form name: to my form. After that, I published the form once again. The code I have is: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "Sue Mosher [MVP-Outlook]" wrote: You might have removed the control displaying the Bcc property, but you didn't remove the Bcc field. Removing a control just removes a control. It has no effect on the data. Did you try what I suggested? "teenzbutler" wrote in message news ![]() the To: button, and the BCC field is populating with the old email address. How is that possible without the BCC field in the form? Is there a cache somewhere that I am not aware of? I assume you need a BCC field in the form in order for the code to work. Isn't that correct? "Sue Mosher [MVP-Outlook]" wrote: I can't quite picture what you're doing, given that it is not possible to delete a standard field from any Outlook item. The way to remove a recipient from a custom form is to run the form, remove the recipient, republish. "teenzbutler" wrote in message ... Thanks Sue. I am testing the code with a new email address. However, I have one problem, I cannot remove the old email address within the BCC field. I did not input the email address in the field below "Set the initial value of this field to:" I manually entered it within the BCC field itself by editing the field. Now when I try and remove the email address, it won't go away. Even if I delete the BCC field and create a new one, the old address re-populates. I went into Advanced Properties to remove it, but nothing works. What am I doing wrong? "Sue Mosher [MVP-Outlook]" wrote: Put code in the Item_Forward event handler to set the Bcc property of the new forward message to the desired address: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "teenzbutler" wrote in message ... Thanks for you reply. No, I did not set the initial value to this field. Instead, I edited the field an manually inputted the email address. The reason why I did it this way was because, when I checked the "Set the initial value of this field to:" box, the users were unable to send the form. They would get "Operation failed". It took me a while to figure out that it was this setting that caused the problem. Even though I published the form to the Organizational Library, it still would fail. Do you have any suggestions? "Sue Mosher [MVP-Outlook]" wrote: Are you setting the value of the Bcc property of the original item with an initial value? If not, how? "teenzbutler" wrote in message ... I created a BCC: field so that a specific user is copied anytime the form is submitted. I want that same person to be BCC-ed when the form is forwarded as well. For some reason, I cannot figure this out. Does anyone have any information on this? |
#19
|
|||
|
|||
![]()
Response.CC? Don't you mean ForwardItem.CC?
-- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "teenzbutler" wrote in message ... Sue. I added the ForwardItem.Display but that did not work. My code looks like this: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " ForwardItem.Display MsgBox "This is a test" Response.Cc = Item.SenderEmailAddress End Function I stand corrected on the version and form number. This information does appear when you first send the form. I am not sure what else to try. "teenzbutler" wrote: Thanks Sue. When I open the form, I go up into Help, and there is not an option that states "About this form." This options appears once I forward the form. After forwarding the form, I go up into Help About this Form. My version number appears properly. I can give the FowardItem.Display a try and report back. "Sue Mosher [MVP-Outlook]" wrote: So, when you forward now, do you get the right version in Help | About This Form both on the original message and the new forward message? You could also try adding a ForwardItem.Display statement to the Forward event handler. "teenzbutler" wrote in message ... I added the verion and number in the properties tab. The item being forwarded does not reside in a folder in another user's mailbox. I published the form in the Organizational Forms Library. "Sue Mosher [MVP-Outlook]" wrote: For troubleshooting purposes, you should always apply a new version number on the (Properties) page of the form before you publishe a new version. Does the item being forwarded reside in a folder in another user's mailbox? To what forms library did you publish the form? "teenzbutler" wrote in message ... When I forward the form, I do not see anything in the Form Dialog box. The Version, Form Number, and Contact are blank. I added a Msgbox to the script. It now looks like this: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " MsgBox "This is a test" End Function I do not get prompted when I forward the form. What do you think? "Sue Mosher [MVP-Outlook]" wrote: When you forward an item, does its Help | About This Form dialog give you the correct and current name and version information for the form? If you put a MsgBox statement in the Item_Forward event handler, does the message box show? "teenzbutler" wrote in message ... Thanks Sue. I tried what you recommended, but it still doesn't work. The BCC fied/control has been removed from the form. I went into the (Properties) tab and made sure the "Send form defnition with item" is unchecked. I went into the (Actions) tab, double-clicked the Forward action and in "This action creates a form of the following type", I pointed the Form name: to my form. After that, I published the form once again. The code I have is: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "Sue Mosher [MVP-Outlook]" wrote: You might have removed the control displaying the Bcc property, but you didn't remove the Bcc field. Removing a control just removes a control. It has no effect on the data. Did you try what I suggested? "teenzbutler" wrote in message news ![]() the To: button, and the BCC field is populating with the old email address. How is that possible without the BCC field in the form? Is there a cache somewhere that I am not aware of? I assume you need a BCC field in the form in order for the code to work. Isn't that correct? "Sue Mosher [MVP-Outlook]" wrote: I can't quite picture what you're doing, given that it is not possible to delete a standard field from any Outlook item. The way to remove a recipient from a custom form is to run the form, remove the recipient, republish. "teenzbutler" wrote in message ... Thanks Sue. I am testing the code with a new email address. However, I have one problem, I cannot remove the old email address within the BCC field. I did not input the email address in the field below "Set the initial value of this field to:" I manually entered it within the BCC field itself by editing the field. Now when I try and remove the email address, it won't go away. Even if I delete the BCC field and create a new one, the old address re-populates. I went into Advanced Properties to remove it, but nothing works. What am I doing wrong? "Sue Mosher [MVP-Outlook]" wrote: Put code in the Item_Forward event handler to set the Bcc property of the new forward message to the desired address: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "teenzbutler" wrote in message ... Thanks for you reply. No, I did not set the initial value to this field. Instead, I edited the field an manually inputted the email address. The reason why I did it this way was because, when I checked the "Set the initial value of this field to:" box, the users were unable to send the form. They would get "Operation failed". It took me a while to figure out that it was this setting that caused the problem. Even though I published the form to the Organizational Library, it still would fail. Do you have any suggestions? "Sue Mosher [MVP-Outlook]" wrote: Are you setting the value of the Bcc property of the original item with an initial value? If not, how? "teenzbutler" wrote in message ... I created a BCC: field so that a specific user is copied anytime the form is submitted. I want that same person to be BCC-ed when the form is forwarded as well. For some reason, I cannot figure this out. Does anyone have any information on this? |
#20
|
|||
|
|||
![]()
I removed that line. I was trying to have the form CC the originator as
well. But that didn't work. I don't think there is anything more I can try. Do you? "Sue Mosher [MVP-Outlook]" wrote: Response.CC? Don't you mean ForwardItem.CC? -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "teenzbutler" wrote in message ... Sue. I added the ForwardItem.Display but that did not work. My code looks like this: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " ForwardItem.Display MsgBox "This is a test" Response.Cc = Item.SenderEmailAddress End Function I stand corrected on the version and form number. This information does appear when you first send the form. I am not sure what else to try. "teenzbutler" wrote: Thanks Sue. When I open the form, I go up into Help, and there is not an option that states "About this form." This options appears once I forward the form. After forwarding the form, I go up into Help About this Form. My version number appears properly. I can give the FowardItem.Display a try and report back. "Sue Mosher [MVP-Outlook]" wrote: So, when you forward now, do you get the right version in Help | About This Form both on the original message and the new forward message? You could also try adding a ForwardItem.Display statement to the Forward event handler. "teenzbutler" wrote in message ... I added the verion and number in the properties tab. The item being forwarded does not reside in a folder in another user's mailbox. I published the form in the Organizational Forms Library. "Sue Mosher [MVP-Outlook]" wrote: For troubleshooting purposes, you should always apply a new version number on the (Properties) page of the form before you publishe a new version. Does the item being forwarded reside in a folder in another user's mailbox? To what forms library did you publish the form? "teenzbutler" wrote in message ... When I forward the form, I do not see anything in the Form Dialog box. The Version, Form Number, and Contact are blank. I added a Msgbox to the script. It now looks like this: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " MsgBox "This is a test" End Function I do not get prompted when I forward the form. What do you think? "Sue Mosher [MVP-Outlook]" wrote: When you forward an item, does its Help | About This Form dialog give you the correct and current name and version information for the form? If you put a MsgBox statement in the Item_Forward event handler, does the message box show? "teenzbutler" wrote in message ... Thanks Sue. I tried what you recommended, but it still doesn't work. The BCC fied/control has been removed from the form. I went into the (Properties) tab and made sure the "Send form defnition with item" is unchecked. I went into the (Actions) tab, double-clicked the Forward action and in "This action creates a form of the following type", I pointed the Form name: to my form. After that, I published the form once again. The code I have is: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "Sue Mosher [MVP-Outlook]" wrote: You might have removed the control displaying the Bcc property, but you didn't remove the Bcc field. Removing a control just removes a control. It has no effect on the data. Did you try what I suggested? "teenzbutler" wrote in message news ![]() the To: button, and the BCC field is populating with the old email address. How is that possible without the BCC field in the form? Is there a cache somewhere that I am not aware of? I assume you need a BCC field in the form in order for the code to work. Isn't that correct? "Sue Mosher [MVP-Outlook]" wrote: I can't quite picture what you're doing, given that it is not possible to delete a standard field from any Outlook item. The way to remove a recipient from a custom form is to run the form, remove the recipient, republish. "teenzbutler" wrote in message ... Thanks Sue. I am testing the code with a new email address. However, I have one problem, I cannot remove the old email address within the BCC field. I did not input the email address in the field below "Set the initial value of this field to:" I manually entered it within the BCC field itself by editing the field. Now when I try and remove the email address, it won't go away. Even if I delete the BCC field and create a new one, the old address re-populates. I went into Advanced Properties to remove it, but nothing works. What am I doing wrong? "Sue Mosher [MVP-Outlook]" wrote: Put code in the Item_Forward event handler to set the Bcc property of the new forward message to the desired address: Function Item_Forward(ByVal ForwardItem) ForwardItem.Bcc = " End Function "teenzbutler" wrote in message ... Thanks for you reply. No, I did not set the initial value to this field. Instead, I edited the field an manually inputted the email address. The reason why I did it this way was because, when I checked the "Set the initial value of this field to:" box, the users were unable to send the form. They would get "Operation failed". It took me a while to figure out that it was this setting that caused the problem. Even though I published the form to the Organizational Library, it still would fail. Do you have any suggestions? "Sue Mosher [MVP-Outlook]" wrote: Are you setting the value of the Bcc property of the original item with an initial value? If not, how? "teenzbutler" wrote in message ... I created a BCC: field so that a specific user is copied anytime the form is submitted. I want that same person to be BCC-ed when the form is forwarded as well. For some reason, I cannot figure this out. Does anyone have any information on this? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Using bcc | Tony Williams | Outlook - General Queries | 2 | November 16th 06 09:00 PM |
Using bcc | Faye | Outlook Express | 3 | November 14th 06 05:05 PM |
BCC | BaffledBob | Outlook Express | 4 | August 31st 06 03:43 AM |
Use of BCC | Larry B | Outlook Express | 3 | June 25th 06 10:50 PM |
Bcc | rosea2000 | Outlook - General Queries | 3 | March 30th 06 02:05 PM |