J
Joel
In my Task form, I run this sub:
Sub Item_CustomPropertyChange(ByVal strName)
Set prps = Item.UserProperties
If prps("HeatBarrier") = "True" Then
.......
I have many if prps statements. It's really slow. Takes about 10 seconds
to go from field to field within my form.
Can you suggest an alternative to make it go faster.
Thanks - Joel
Sub Item_CustomPropertyChange(ByVal strName)
Set prps = Item.UserProperties
If prps("HeatBarrier") = "True" Then
.......
I have many if prps statements. It's really slow. Takes about 10 seconds
to go from field to field within my form.
Can you suggest an alternative to make it go faster.
Thanks - Joel