PDA

View Full Version : How to Tell when PUBLISH completes



mary_west_pdx
2008-10-30, 07:19 PM
I have a .Net app that runs the PUBLISH command to create DWFs.

When if finishes creating the DWFs, I want to grab the files and do other things with them.

I know that something tells AutoCAD to pop up that "Publish is Complete" balloon. How do I receive that trigger in my application so I can grab the files and go? Or is there some other way to tell?

dmarcotte4
2008-10-30, 07:35 PM
I have a .Net app that runs the PUBLISH command to create DWFs.

When if finishes creating the DWFs, I want to grab the files and do other things with them.

I know that something tells AutoCAD to pop up that "Publish is Complete" balloon. How do I receive that trigger in my application so I can grab the files and go? Or is there some other way to tell?


Have a look at Autodesk.AutoCAD.Publishing.Publisher.Events EndPublish

mary_west_pdx
2008-10-30, 08:25 PM
Perfect! thanks!