Project purge

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Project purge

Luke Gorrie-4
Howdy!

Next question :-)

How can I remove a project from an image? I've tried to follow how
ProjectViewMorph does it but I haven't figured it out.

What I really want to do is write a method that will purge all
child projects of the current project.

Thanks!
-Luke


Reply | Threaded
Open this post in threaded view
|

Re: Project purge

Yoshiki Ohshima-2
  Luke

> How can I remove a project from an image? I've tried to follow how
> ProjectViewMorph does it but I haven't figured it out.
>
> What I really want to do is write a method that will purge all
> child projects of the current project.

  What part of project that doesn't go away?  Project>>okToChange or
Project>>okToChangeSilently usually do the job.

  (There can be some obscure references to the project sometime.  The
design around Project is pretty badly messed up so prepare for some
headache...)

-- Yoshiki


Reply | Threaded
Open this post in threaded view
|

Re: Project purge

Luke Gorrie-4
Howdy Yoshiki,

>   What part of project that doesn't go away?  Project>>okToChange or
> Project>>okToChangeSilently usually do the job.

Thanks! Project>>okToChangeSilently is exactly what I was looking for.

-Luke