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

BCC



 
 
Thread Tools Search this Thread Display Modes
  #11  
Old March 23rd 07, 09:25 PM posted to microsoft.public.outlook.program_forms
teenzbutler
external usenet poster
 
Posts: 43
Default BCC

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  
Old March 23rd 07, 09:44 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default BCC

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  
Old March 23rd 07, 10:25 PM posted to microsoft.public.outlook.program_forms
teenzbutler
external usenet poster
 
Posts: 43
Default BCC

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 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?





  #14  
Old March 23rd 07, 10:38 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default BCC

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 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?





  #15  
Old March 23rd 07, 11:02 PM posted to microsoft.public.outlook.program_forms
teenzbutler
external usenet poster
 
Posts: 43
Default BCC

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 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?






  #16  
Old March 24th 07, 01:34 AM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default BCC

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 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?






  #17  
Old March 28th 07, 02:12 AM posted to microsoft.public.outlook.program_forms
teenzbutler
external usenet poster
 
Posts: 43
Default BCC

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 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?







  #18  
Old March 28th 07, 02:49 AM posted to microsoft.public.outlook.program_forms
teenzbutler
external usenet poster
 
Posts: 43
Default BCC

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 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?







  #19  
Old March 28th 07, 02:24 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default BCC

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 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?







  #20  
Old March 29th 07, 12:12 AM posted to microsoft.public.outlook.program_forms
teenzbutler
external usenet poster
 
Posts: 43
Default BCC

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 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?








 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
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


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