C
Chesterton
I understand that, in a macro, I am not able to create a new rule tha
specifies a date range condition for a rule. Only with the rules wizar
can I do that. What's not clear to me is if it is possible to MODIFY th
date range, in a macro, of an existing rule that I did create with th
rules wizard. With the following code I can zero in on the dat
structure that contains date range of an existing rule:
For x = 1 To currentRule.Conditions.count
If currentRule.Conditions.Item(x).ConditionType = olConditionDateRang
Then
'Do something
End If
Next
If I set a breakpoint and look at the data structure in the macr
editor, I see these items:
+ Application
- Class (olRuleCondition)
- ConditionType (olCondtionDateRange)
- Enabled (True)
+ Parent
+ Session
Is there a way to manipulate one of these to change this existing Dat
Range? Is is buried down in one of these structures
specifies a date range condition for a rule. Only with the rules wizar
can I do that. What's not clear to me is if it is possible to MODIFY th
date range, in a macro, of an existing rule that I did create with th
rules wizard. With the following code I can zero in on the dat
structure that contains date range of an existing rule:
For x = 1 To currentRule.Conditions.count
If currentRule.Conditions.Item(x).ConditionType = olConditionDateRang
Then
'Do something
End If
Next
If I set a breakpoint and look at the data structure in the macr
editor, I see these items:
+ Application
- Class (olRuleCondition)
- ConditionType (olCondtionDateRange)
- Enabled (True)
+ Parent
+ Session
Is there a way to manipulate one of these to change this existing Dat
Range? Is is buried down in one of these structures