Hello,
I can open an autocad file with an access macro, the code :
Dim mycad As Object
Dim mycdoc As Object
Set mycad = CreateObject("AutoCAD.application"
Set mycdoc = mycad.ActiveDocument
mycad.Application.Visible = True
mycdoc.Open ("\test.dwg"
But anyone know what is the command line to print (plot) the dwg file with this macro. I tested 'printOut' but Autocad want a expression as : PLOT D 0
PLOT : Command to print
D : Display Mode
0 : Paramater
Thanks.
Email : caco@fr.st
I can open an autocad file with an access macro, the code :
Dim mycad As Object
Dim mycdoc As Object
Set mycad = CreateObject("AutoCAD.application"
Set mycdoc = mycad.ActiveDocument
mycad.Application.Visible = True
mycdoc.Open ("\test.dwg"
But anyone know what is the command line to print (plot) the dwg file with this macro. I tested 'printOut' but Autocad want a expression as : PLOT D 0
PLOT : Command to print
D : Display Mode
0 : Paramater
Thanks.
Email : caco@fr.st