I'm using ADT 2007
It appears that there is an error in the help file. It should be
"AcadPreferncesOutput"
You are correct. That is just for the .csv file. I have went to options and
turned on and off the "Plot and publish log file" and I end up with a
plot.log file no matter what the setting is. Guess I have some more
researching to do. Do you know how to stop getting the plot.log file without
VBA?
I'm with you, I don't want all these plot.log files.
"SDren" wrote in message
news:6141338@discussion.autodesk.com...
Thanks, Larry
It was pointing to the right direction, but it was for
PlotandPublishLog.CSV, not for plot.log.
Besides, what is IAcadPreferencesOutput2? i dont have it on my computer with
Acad 2009.
"Larry" <-> wrote in message news:6140396@discussion.autodesk.com...
Taken from the VBA help file
Sub Example_AutomaticPlotLog()
' This example sets the AutoCAD Options dialog box
' setting Automatically Save Plot and Publish Log to True.
Dim MyPreference As IAcadPreferencesOutput2
Set MyPreference = AcadApplication.Preferences.Output
MyPreference.AutomaticPlotLog = True
End Sub
"SDren" wrote in message
news:6140121@discussion.autodesk.com...
i would like to have acad not to litter around in my network with tons of
files of "plot.log."
can i turn the plot log off using vba? thanks