Freezing/making read only a column

B

BIG Chris

Hi,

If anyone knows how to do this via the normal Project 2002 interface then
all the better, but if not does anyone know how to do it in code ?

Basically we have a column of dates that we don't want the user to be able
to change, so was wondering if there is any way of making that column
read-only ?

Cheers,

Chris.
 
J

JackD

You can't do it in the interface. The best you can do is trap the
task_change event and go from there.
You can find an example of how it works here:

http://masamiki.com/project/project_open.htm

But it is not truly reliable as some things can change dates without
triggering the task change event.
Best is just to save a baseline and compare it with future versions.
 
Top