Help!

user-defined properties in printed emails?

 
  

Post new topic   General Reply to Topic (not reply to a specific post)    Forums Home -> Program Add-Ins RSS
Next:  Recurring meeting conflict  
Author Message
Mark McGinty
External


Since: Jul 21, 2009
Posts: 3



PostPosted: Tue Jul 21, 2009 12:44 pm    Post subject: user-defined properties in printed emails?
Archived from groups: microsoft>public>outlook>program_addins (more info?)

We've just found that, when printing an email that has user-defined
properties added to it, the names and values of those user-defined
properties are dumped-out as additions to the header. Ugly! Is there any
way to make it not do that?

This 'feature' makes no sense to me, the only way to view those properties
in the inspector is to open the form designer (or add code to make the all
fields tab visible.) But whatever defines the way it's formatted for
printing, dumps those properties onto the page as a matter of course?

If it only happened if/when the all fields tab was visible, it would make
some sense, but unfortunately that is not the case.

Any insight would be appreciated!


-Mark McGinty
Back to top
Ken Slovak - [MVP - Outlo
External


Since: Oct 17, 2003
Posts: 3355



PostPosted: Tue Jul 21, 2009 4:17 pm    Post subject: Re: user-defined properties in printed emails? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In design mode on a custom form select the control that binds the user
property, and in the Validation tab set the checkbox for Include this field
for Printing and Save As as you want it.

In general if you want properties not to be visible at all in any way in the
UI you'd use MAPI named properties rather than Outlook UserProperties.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Mark McGinty" <mmcginty.RemoveThis@spamfromyou.com> wrote in message
news:ejs0gujCKHA.1252@TK2MSFTNGP04.phx.gbl...
> We've just found that, when printing an email that has user-defined
> properties added to it, the names and values of those user-defined
> properties are dumped-out as additions to the header. Ugly! Is there any
> way to make it not do that?
>
> This 'feature' makes no sense to me, the only way to view those properties
> in the inspector is to open the form designer (or add code to make the all
> fields tab visible.) But whatever defines the way it's formatted for
> printing, dumps those properties onto the page as a matter of course?
>
> If it only happened if/when the all fields tab was visible, it would make
> some sense, but unfortunately that is not the case.
>
> Any insight would be appreciated!
>
>
> -Mark McGinty
>
Back to top
Mark McGinty
External


Since: Jul 21, 2009
Posts: 3



PostPosted: Tue Jul 21, 2009 4:25 pm    Post subject: Re: user-defined properties in printed emails? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"Ken Slovak - [MVP - Outlook]" <kenslovak DeleteThis @mvps.org> wrote in message
news:umfQeBkCKHA.4792@TK2MSFTNGP05.phx.gbl...
> In design mode on a custom form select the control that binds the user
> property, and in the Validation tab set the checkbox for Include this
> field for Printing and Save As as you want it.
>
> In general if you want properties not to be visible at all in any way in
> the UI you'd use MAPI named properties rather than Outlook UserProperties.

Thanks for the reply. None of the user properties are bound to any form
controls; a decision was made early on to not incorporate any custom forms
into this app. They are used internally by the AddIn. The only way for a
user to display the properties is to add them to a table view in the
explorer. None are particuarly useful to the user on a paper copy of the
item.

I see that task, contact and appointment print-outs are the same way...

Hard for me to imagine a user that would ever want this behavior. (No need
to imagine users that don't want it though, I have already seen some that
occurred naturally.)

I will look into MAPI named properties... I thought UserProperties were MAPI
named properties?


Thanks,
Mark


> --
> Ken Slovak
> [MVP - Outlook]
> http://www.slovaktech.com
> Author: Professional Programming Outlook 2007.
> Reminder Manager, Extended Reminders, Attachment Options.
> http://www.slovaktech.com/products.htm
>
>
> "Mark McGinty" <mmcginty DeleteThis @spamfromyou.com> wrote in message
> news:ejs0gujCKHA.1252@TK2MSFTNGP04.phx.gbl...
>> We've just found that, when printing an email that has user-defined
>> properties added to it, the names and values of those user-defined
>> properties are dumped-out as additions to the header. Ugly! Is there
>> any way to make it not do that?
>>
>> This 'feature' makes no sense to me, the only way to view those
>> properties in the inspector is to open the form designer (or add code to
>> make the all fields tab visible.) But whatever defines the way it's
>> formatted for printing, dumps those properties onto the page as a matter
>> of course?
>>
>> If it only happened if/when the all fields tab was visible, it would make
>> some sense, but unfortunately that is not the case.
>>
>> Any insight would be appreciated!
>>
>>
>> -Mark McGinty
>>
>
Back to top
Ken Slovak - [MVP - Outlo
External


Since: Oct 17, 2003
Posts: 3355



PostPosted: Wed Jul 22, 2009 9:59 am    Post subject: Re: user-defined properties in printed emails? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

UserProperties are MAPI named properties that are in the PS_PUBLIC_STRINGS
namespace and are also stored in the hidden message in the folder with a
MessageClass of "IPC.MS.REN.USERFIELDS".

MAPI named properties usually are in the PS_PUBLIC_STRINGS namespace
although you can use your own GUID for a namespace instead of using the
PS_PUBLIC_STRINGS namespace, and they aren't added to the hidden message for
UserProperties. They aren't visible to the user at all.

Unless you are using Outlook 2007 only the ways to create MAPI named
properties would rely on Extended MAPI, Redemption
(www.dimastr.com/redemption) or CDO 1.21.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Mark McGinty" <mmcginty.RemoveThis@spamfromyou.com> wrote in message
news:%234wTIqlCKHA.3708@TK2MSFTNGP02.phx.gbl...
<snip>
> Thanks for the reply. None of the user properties are bound to any form
> controls; a decision was made early on to not incorporate any custom forms
> into this app. They are used internally by the AddIn. The only way for a
> user to display the properties is to add them to a table view in the
> explorer. None are particuarly useful to the user on a paper copy of the
> item.
>
> I see that task, contact and appointment print-outs are the same way...
>
> Hard for me to imagine a user that would ever want this behavior. (No
> need to imagine users that don't want it though, I have already seen some
> that occurred naturally.)
>
> I will look into MAPI named properties... I thought UserProperties were
> MAPI named properties?
>
>
> Thanks,
> Mark
Back to top
Dmitry Streblechenko
External


Since: Nov 23, 2003
Posts: 1401



PostPosted: Thu Jul 23, 2009 10:37 am    Post subject: Re: user-defined properties in printed emails? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Actually only properties that are defined on teh folder level are stored in
the IPC.MS.REN.USERFIELDS hidden message.
If you do not specify AddToFolderFields parameter (optional) as true when
calling UserProperties.Add, the property will nto be added to the folder
fields.
UserProperties definitions are stored in yet another named MAPI property,
while the values are stored as as regular MAPI properties.
You can edit the user properries blob to turn the "print" flag off, but the
blob is as binary as it gets.
<plug> Redemption (url below) exposes that as RDOUserProperty.Printable
property - http://www.dimastr.com/redemption/rdo/rdouserproperty.htm
</plug>

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Ken Slovak - [MVP - Outlook]" <kenslovak DeleteThis @mvps.org> wrote in message
news:%23ks7ZXtCKHA.3708@TK2MSFTNGP02.phx.gbl...
> UserProperties are MAPI named properties that are in the PS_PUBLIC_STRINGS
> namespace and are also stored in the hidden message in the folder with a
> MessageClass of "IPC.MS.REN.USERFIELDS".
>
> MAPI named properties usually are in the PS_PUBLIC_STRINGS namespace
> although you can use your own GUID for a namespace instead of using the
> PS_PUBLIC_STRINGS namespace, and they aren't added to the hidden message
> for UserProperties. They aren't visible to the user at all.
>
> Unless you are using Outlook 2007 only the ways to create MAPI named
> properties would rely on Extended MAPI, Redemption
> (www.dimastr.com/redemption) or CDO 1.21.
>
> --
> Ken Slovak
> [MVP - Outlook]
> http://www.slovaktech.com
> Author: Professional Programming Outlook 2007.
> Reminder Manager, Extended Reminders, Attachment Options.
> http://www.slovaktech.com/products.htm
>
>
> "Mark McGinty" <mmcginty DeleteThis @spamfromyou.com> wrote in message
> news:%234wTIqlCKHA.3708@TK2MSFTNGP02.phx.gbl...
> <snip>
>> Thanks for the reply. None of the user properties are bound to any form
>> controls; a decision was made early on to not incorporate any custom
>> forms into this app. They are used internally by the AddIn. The only
>> way for a user to display the properties is to add them to a table view
>> in the explorer. None are particuarly useful to the user on a paper copy
>> of the item.
>>
>> I see that task, contact and appointment print-outs are the same way...
>>
>> Hard for me to imagine a user that would ever want this behavior. (No
>> need to imagine users that don't want it though, I have already seen some
>> that occurred naturally.)
>>
>> I will look into MAPI named properties... I thought UserProperties were
>> MAPI named properties?
>>
>>
>> Thanks,
>> Mark
>
Back to top
Sushil Dania
External


Since: Jul 27, 2009
Posts: 1



PostPosted: Mon Jul 27, 2009 6:45 am    Post subject: Re: user-defined properties in printed emails? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Is there any way to access this blob and change the Print flag using Outlook
Object Model?

"Dmitry Streblechenko" wrote:

> Actually only properties that are defined on teh folder level are stored in
> the IPC.MS.REN.USERFIELDS hidden message.
> If you do not specify AddToFolderFields parameter (optional) as true when
> calling UserProperties.Add, the property will nto be added to the folder
> fields.
> UserProperties definitions are stored in yet another named MAPI property,
> while the values are stored as as regular MAPI properties.
> You can edit the user properries blob to turn the "print" flag off, but the
> blob is as binary as it gets.
> <plug> Redemption (url below) exposes that as RDOUserProperty.Printable
> property - http://www.dimastr.com/redemption/rdo/rdouserproperty.htm
> </plug>
>
> --
> Dmitry Streblechenko (MVP)
> http://www.dimastr.com/
> OutlookSpy - Outlook, CDO
> and MAPI Developer Tool
> -
> "Ken Slovak - [MVP - Outlook]" <kenslovak RemoveThis @mvps.org> wrote in message
> news:%23ks7ZXtCKHA.3708@TK2MSFTNGP02.phx.gbl...
> > UserProperties are MAPI named properties that are in the PS_PUBLIC_STRINGS
> > namespace and are also stored in the hidden message in the folder with a
> > MessageClass of "IPC.MS.REN.USERFIELDS".
> >
> > MAPI named properties usually are in the PS_PUBLIC_STRINGS namespace
> > although you can use your own GUID for a namespace instead of using the
> > PS_PUBLIC_STRINGS namespace, and they aren't added to the hidden message
> > for UserProperties. They aren't visible to the user at all.
> >
> > Unless you are using Outlook 2007 only the ways to create MAPI named
> > properties would rely on Extended MAPI, Redemption
> > (www.dimastr.com/redemption) or CDO 1.21.
> >
> > --
> > Ken Slovak
> > [MVP - Outlook]
> > http://www.slovaktech.com
> > Author: Professional Programming Outlook 2007.
> > Reminder Manager, Extended Reminders, Attachment Options.
> > http://www.slovaktech.com/products.htm
> >
> >
> > "Mark McGinty" <mmcginty RemoveThis @spamfromyou.com> wrote in message
> > news:%234wTIqlCKHA.3708@TK2MSFTNGP02.phx.gbl...
> > <snip>
> >> Thanks for the reply. None of the user properties are bound to any form
> >> controls; a decision was made early on to not incorporate any custom
> >> forms into this app. They are used internally by the AddIn. The only
> >> way for a user to display the properties is to add them to a table view
> >> in the explorer. None are particuarly useful to the user on a paper copy
> >> of the item.
> >>
> >> I see that task, contact and appointment print-outs are the same way...
> >>
> >> Hard for me to imagine a user that would ever want this behavior. (No
> >> need to imagine users that don't want it though, I have already seen some
> >> that occurred naturally.)
> >>
> >> I will look into MAPI named properties... I thought UserProperties were
> >> MAPI named properties?
> >>
> >>
> >> Thanks,
> >> Mark
> >
>
>
>
Back to top
Dmitry Streblechenko
External


Since: Nov 23, 2003
Posts: 1401



PostPosted: Wed Jul 29, 2009 12:48 am    Post subject: Re: user-defined properties in printed emails? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Sure, you can use PropertyAccessor for that (new for Outlook 2007)

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Sushil Dania" <Sushil Dania.TakeThisOut@discussions.microsoft.com> wrote in message
news:B3A7249A-7721-47C4-95E2-E59E28B8A83E@microsoft.com...
> Is there any way to access this blob and change the Print flag using
> Outlook
> Object Model?
>
> "Dmitry Streblechenko" wrote:
>
>> Actually only properties that are defined on teh folder level are stored
>> in
>> the IPC.MS.REN.USERFIELDS hidden message.
>> If you do not specify AddToFolderFields parameter (optional) as true when
>> calling UserProperties.Add, the property will nto be added to the folder
>> fields.
>> UserProperties definitions are stored in yet another named MAPI property,
>> while the values are stored as as regular MAPI properties.
>> You can edit the user properries blob to turn the "print" flag off, but
>> the
>> blob is as binary as it gets.
>> <plug> Redemption (url below) exposes that as RDOUserProperty.Printable
>> property - http://www.dimastr.com/redemption/rdo/rdouserproperty.htm
>> </plug>
>>
>> --
>> Dmitry Streblechenko (MVP)
>> http://www.dimastr.com/
>> OutlookSpy - Outlook, CDO
>> and MAPI Developer Tool
>> -
>> "Ken Slovak - [MVP - Outlook]" <kenslovak.TakeThisOut@mvps.org> wrote in message
>> news:%23ks7ZXtCKHA.3708@TK2MSFTNGP02.phx.gbl...
>> > UserProperties are MAPI named properties that are in the
>> > PS_PUBLIC_STRINGS
>> > namespace and are also stored in the hidden message in the folder with
>> > a
>> > MessageClass of "IPC.MS.REN.USERFIELDS".
>> >
>> > MAPI named properties usually are in the PS_PUBLIC_STRINGS namespace
>> > although you can use your own GUID for a namespace instead of using the
>> > PS_PUBLIC_STRINGS namespace, and they aren't added to the hidden
>> > message
>> > for UserProperties. They aren't visible to the user at all.
>> >
>> > Unless you are using Outlook 2007 only the ways to create MAPI named
>> > properties would rely on Extended MAPI, Redemption
>> > (www.dimastr.com/redemption) or CDO 1.21.
>> >
>> > --
>> > Ken Slovak
>> > [MVP - Outlook]
>> > http://www.slovaktech.com
>> > Author: Professional Programming Outlook 2007.
>> > Reminder Manager, Extended Reminders, Attachment Options.
>> > http://www.slovaktech.com/products.htm
>> >
>> >
>> > "Mark McGinty" <mmcginty.TakeThisOut@spamfromyou.com> wrote in message
>> > news:%234wTIqlCKHA.3708@TK2MSFTNGP02.phx.gbl...
>> > <snip>
>> >> Thanks for the reply. None of the user properties are bound to any
>> >> form
>> >> controls; a decision was made early on to not incorporate any custom
>> >> forms into this app. They are used internally by the AddIn. The only
>> >> way for a user to display the properties is to add them to a table
>> >> view
>> >> in the explorer. None are particuarly useful to the user on a paper
>> >> copy
>> >> of the item.
>> >>
>> >> I see that task, contact and appointment print-outs are the same
>> >> way...
>> >>
>> >> Hard for me to imagine a user that would ever want this behavior. (No
>> >> need to imagine users that don't want it though, I have already seen
>> >> some
>> >> that occurred naturally.)
>> >>
>> >> I will look into MAPI named properties... I thought UserProperties
>> >> were
>> >> MAPI named properties?
>> >>
>> >>
>> >> Thanks,
>> >> Mark
>> >
>>
>>
>>
Back to top
Mark McGinty
External


Since: Jul 21, 2009
Posts: 3



PostPosted: Sun Aug 30, 2009 4:32 am    Post subject: Re: user-defined properties in printed emails? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thanks Dmitry (and sorry for the delayed response.)

What is the minimum version of RDO with this capability? (We are currently
shipping Redemption 4.2.0.562 with our product.)

Thanks,
Mark McGinty



"Dmitry Streblechenko" <dmitry DeleteThis @dimastr.com> wrote in message
news:OJVDtx7CKHA.4316@TK2MSFTNGP04.phx.gbl...
> Actually only properties that are defined on teh folder level are stored
> in the IPC.MS.REN.USERFIELDS hidden message.
> If you do not specify AddToFolderFields parameter (optional) as true when
> calling UserProperties.Add, the property will nto be added to the folder
> fields.
> UserProperties definitions are stored in yet another named MAPI property,
> while the values are stored as as regular MAPI properties.
> You can edit the user properries blob to turn the "print" flag off, but
> the blob is as binary as it gets.
> <plug> Redemption (url below) exposes that as RDOUserProperty.Printable
> property - http://www.dimastr.com/redemption/rdo/rdouserproperty.htm
> </plug>
>
> --
> Dmitry Streblechenko (MVP)
> http://www.dimastr.com/
> OutlookSpy - Outlook, CDO
> and MAPI Developer Tool
> -
> "Ken Slovak - [MVP - Outlook]" <kenslovak DeleteThis @mvps.org> wrote in message
> news:%23ks7ZXtCKHA.3708@TK2MSFTNGP02.phx.gbl...
>> UserProperties are MAPI named properties that are in the
>> PS_PUBLIC_STRINGS namespace and are also stored in the hidden message in
>> the folder with a MessageClass of "IPC.MS.REN.USERFIELDS".
>>
>> MAPI named properties usually are in the PS_PUBLIC_STRINGS namespace
>> although you can use your own GUID for a namespace instead of using the
>> PS_PUBLIC_STRINGS namespace, and they aren't added to the hidden message
>> for UserProperties. They aren't visible to the user at all.
>>
>> Unless you are using Outlook 2007 only the ways to create MAPI named
>> properties would rely on Extended MAPI, Redemption
>> (www.dimastr.com/redemption) or CDO 1.21.
>>
>> --
>> Ken Slovak
>> [MVP - Outlook]
>> http://www.slovaktech.com
>> Author: Professional Programming Outlook 2007.
>> Reminder Manager, Extended Reminders, Attachment Options.
>> http://www.slovaktech.com/products.htm
>>
>>
>> "Mark McGinty" <mmcginty DeleteThis @spamfromyou.com> wrote in message
>> news:%234wTIqlCKHA.3708@TK2MSFTNGP02.phx.gbl...
>> <snip>
>>> Thanks for the reply. None of the user properties are bound to any form
>>> controls; a decision was made early on to not incorporate any custom
>>> forms into this app. They are used internally by the AddIn. The only
>>> way for a user to display the properties is to add them to a table view
>>> in the explorer. None are particuarly useful to the user on a paper
>>> copy of the item.
>>>
>>> I see that task, contact and appointment print-outs are the same way...
>>>
>>> Hard for me to imagine a user that would ever want this behavior. (No
>>> need to imagine users that don't want it though, I have already seen
>>> some that occurred naturally.)
>>>
>>> I will look into MAPI named properties... I thought UserProperties were
>>> MAPI named properties?
>>>
>>>
>>> Thanks,
>>> Mark
>>
>
>
Back to top
Dmitry Streblechenko
External


Since: Nov 23, 2003
Posts: 1401



PostPosted: Mon Aug 31, 2009 11:26 am    Post subject: Re: user-defined properties in printed emails? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Printable and Required properties were added in version 4.6:
http://www.dimastr.com/redemption/history.htm

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Mark McGinty" <mmcginty DeleteThis @spamfromyou.com> wrote in message
news:ez8TaWWKKHA.3632@TK2MSFTNGP05.phx.gbl...
> Thanks Dmitry (and sorry for the delayed response.)
>
> What is the minimum version of RDO with this capability? (We are
> currently shipping Redemption 4.2.0.562 with our product.)
>
> Thanks,
> Mark McGinty
>
>
>
> "Dmitry Streblechenko" <dmitry DeleteThis @dimastr.com> wrote in message
> news:OJVDtx7CKHA.4316@TK2MSFTNGP04.phx.gbl...
>> Actually only properties that are defined on teh folder level are stored
>> in the IPC.MS.REN.USERFIELDS hidden message.
>> If you do not specify AddToFolderFields parameter (optional) as true when
>> calling UserProperties.Add, the property will nto be added to the folder
>> fields.
>> UserProperties definitions are stored in yet another named MAPI property,
>> while the values are stored as as regular MAPI properties.
>> You can edit the user properries blob to turn the "print" flag off, but
>> the blob is as binary as it gets.
>> <plug> Redemption (url below) exposes that as RDOUserProperty.Printable
>> property - http://www.dimastr.com/redemption/rdo/rdouserproperty.htm
>> </plug>
>>
>> --
>> Dmitry Streblechenko (MVP)
>> http://www.dimastr.com/
>> OutlookSpy - Outlook, CDO
>> and MAPI Developer Tool
>> -
>> "Ken Slovak - [MVP - Outlook]" <kenslovak DeleteThis @mvps.org> wrote in message
>> news:%23ks7ZXtCKHA.3708@TK2MSFTNGP02.phx.gbl...
>>> UserProperties are MAPI named properties that are in the
>>> PS_PUBLIC_STRINGS namespace and are also stored in the hidden message in
>>> the folder with a MessageClass of "IPC.MS.REN.USERFIELDS".
>>>
>>> MAPI named properties usually are in the PS_PUBLIC_STRINGS namespace
>>> although you can use your own GUID for a namespace instead of using the
>>> PS_PUBLIC_STRINGS namespace, and they aren't added to the hidden message
>>> for UserProperties. They aren't visible to the user at all.
>>>
>>> Unless you are using Outlook 2007 only the ways to create MAPI named
>>> properties would rely on Extended MAPI, Redemption
>>> (www.dimastr.com/redemption) or CDO 1.21.
>>>
>>> --
>>> Ken Slovak
>>> [MVP - Outlook]
>>> http://www.slovaktech.com
>>> Author: Professional Programming Outlook 2007.
>>> Reminder Manager, Extended Reminders, Attachment Options.
>>> http://www.slovaktech.com/products.htm
>>>
>>>
>>> "Mark McGinty" <mmcginty DeleteThis @spamfromyou.com> wrote in message
>>> news:%234wTIqlCKHA.3708@TK2MSFTNGP02.phx.gbl...
>>> <snip>
>>>> Thanks for the reply. None of the user properties are bound to any
>>>> form controls; a decision was made early on to not incorporate any
>>>> custom forms into this app. They are used internally by the AddIn.
>>>> The only way for a user to display the properties is to add them to a
>>>> table view in the explorer. None are particuarly useful to the user on
>>>> a paper copy of the item.
>>>>
>>>> I see that task, contact and appointment print-outs are the same way...
>>>>
>>>> Hard for me to imagine a user that would ever want this behavior. (No
>>>> need to imagine users that don't want it though, I have already seen
>>>> some that occurred naturally.)
>>>>
>>>> I will look into MAPI named properties... I thought UserProperties were
>>>> MAPI named properties?
>>>>
>>>>
>>>> Thanks,
>>>> Mark
>>>
>>
>>
>
>
Back to top
Display posts from previous:   
Post new topic   General Reply to Topic (not reply to a specific post)    Forums Home -> Program Add-Ins All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum