Background process in standard version?

Y

Yoav

Does background processing work is standard version of MSP?

example:
For Each t In ActiveProject.Tasks
.......
Next t
 
J

JackD

Yes.
There are only a couple small differences in the object model between
standard and pro.

-Jack Dahlgren
 
J

John

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top