Customizing Columns

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have three columns and am using the check box icon, I need if you have one
column checkbox selected and select one of the other the check boxes the
other is removed from the previous column checked. I am using Outlook 2003.
Is this possible?
 
This is tricky but possible.

You'd need to monitor the SelectionChange event for the ActiveExplorer
object to retrieve the currently selected item via the Explorer.Selection
property. Then you'd have to initiate an Inspector object defined WithEvents
to monitor the Item_PropertyChange event (or CustomProperty if you are using
User Defined Fields). If your checkbox field has been modified, you can
insert code there to change the value of other fields/properties in that item.

If the items in this folder are based on a custom form, you can simply
monitor the Item_PropertyChange event in the code behind the form.
Otherwise, you'd have to code this in the VBA Editor or with a COM Add-In.
 
Sorry, you have to do it with code. This is a programming forum, so I
thought your question was development related.
 
Back
Top