Autocad 2002, has a Today Windwow and Drawing Content Explorer that show a drawing Thumbnail. I think it is the activeX control AC.Preview.OCX. I was able to insert it into a form in MS Access. But I cant pass the drawing number to it. I tried the Custom Properties and get some mesaage...
I found the missing link in another Tips, and its supported by the code writer automation. DAO requires a declaration prefix, else the type mismatch
Dim tbl as DAO.TableDef
Dim fld as DAO.Field
Dim rs as DAO.Recordset
I found I had to use Tool/Refs to add DAO 3.6 but for some reason all the field def statements I try end in a runtime error 13 - type mismatch. This includeds the For Each FLD line below and the alternate Set FLD at the bottom
Option Explicit
Sub TEST()
Dim db As Database
Dim tbl As TableDef...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.