Yoav said:
Does background processing work is standard version of MSP?
example:
For Each t In ActiveProject.Tasks
.......
Next t
Yoav,
Let me expand a bit on background versus foreground processing. The type
of processing used when VBA code executes has nothing to do with the
version of Project or whether it is Standard, Pro or even Server.
Background processing occurs when the code can be executed directly on
objects in the Project database irrespective of what view is currently
active. On the other hand, foreground processing is solely dependent on
the specific objects selected in the current view. Most VBA code can be
structured for background processing but there are a few cases where
foreground processing is the only option available (e.g. setting font
characteristics), and background and foreground processing can be
combined when necessary in any given macro.
Recorded macros are generally created and executed in foreground
processing because to create the macro, the user must perform a series
of steps on objects in the current view or by physically selecting
certain menu items.
John
Project MVP