VBA code please
Forum Sponsor
Top Posters
Rohan Dashputre
0 posts
AMECHI ANAKWENZE
2 posts
Jayaprakash Sekar
1 posts
arash.karmand
0 posts
James Williams
74 posts
Vahidazimi01
0 posts
David Smith
4 posts
Peter Holroyd
51 posts
fridau
0 posts
Rahmat Hidayat
32 posts
My pleasure Hemanth,
If you always want to apply this for the entire project you should replace "ActiveSelection.Tasks" by "ActiveProject.Tasks" in the code Ive sent you earlier.
H.T.H.
Niek.
Thank You Niek
Dear James
My Project if not opened without enabling macros will be shown as a dis organised crap without any bars
So The viewer has to enable macro to view it. which will trigger a series of other macros which prevent edit,,print,, save,, show copy right informations etc etc
i dont want somebody even my client copy my plan and reuse it
There is no need to write a macro. Just highlight all the activities, click on the Task Information icon,General tab and then tick the "Hide Task Bar" box.
HTH.
James.
Hemanth,
This module removes all the bars for selected tasks:
*****************************************
Sub Hide_bars()
Dim t As Task
For Each t In ActiveSelection.Tasks
t.HideBar = YES
Next t
End Sub
******************************************
This is a very simple example. Youll need to write error handling around it to make it robust.
H.T.H.
Niek.