Dear Forummembers,
After Todd, helped me great with im/exporting Attributes to Access I'm in the next step of my little program.
I have a button in Access. When I click it, it opens Autocad and opens the primary key, what is a pathname.
Now I want Access to print. /p is usually by office programs but doesn't work in autocad.
I have also a field in the table containing the number of printing files. I want Autocad use this number to his printnumber.
Who can give me a kick in the good way?
Thanks!
After Todd, helped me great with im/exporting Attributes to Access I'm in the next step of my little program.
I have a button in Access. When I click it, it opens Autocad and opens the primary key, what is a pathname.
Code:
Dim X, Y
Y = "C:\Program Files\AutoCAD 2004\acad.exe " & [Forms]![Formulier1]![Tekst31]
X = Shell(Y, 1)
End Sub
Now I want Access to print. /p is usually by office programs but doesn't work in autocad.
I have also a field in the table containing the number of printing files. I want Autocad use this number to his printnumber.
Who can give me a kick in the good way?
Thanks!