J
JJ
I created a code which will reset a particular Flag field to "No" or
False. Currently, it steps through each task individually. Usually
this is pretty fast. However, for large files, it could take several
minutes. Below is a sample of what the code looks like:
Dim allt as tasks
Dim t as task
Set allt = Activeproject. Tasks
For each t in allt
t.Flag1 = False
Next t
Is there a guaranteed faster way?
Thanks in advance!
JJ
False. Currently, it steps through each task individually. Usually
this is pretty fast. However, for large files, it could take several
minutes. Below is a sample of what the code looks like:
Dim allt as tasks
Dim t as task
Set allt = Activeproject. Tasks
For each t in allt
t.Flag1 = False
Next t
Is there a guaranteed faster way?
Thanks in advance!
JJ