VB6 & Autocad 2013

VB6 & Autocad 2013

Steven.Williams79
Explorer Explorer
1,635 Views
4 Replies
Message 1 of 5

VB6 & Autocad 2013

Steven.Williams79
Explorer
Explorer

Hi guys we have a program written in VB6.  We have used it since autocad 2004 and just updated the references with each new autocad version.  Until 2013.  We use this to connect to autocad.

 

Set acApp = GetObject(, "AutoCAD.Application.19")

 

Currently we have a win xp 32bit with VB6 installed on it.  And the program runs fine.  But if we run the same program on our WIN 7 x64 computers it cannot find the autocad session.  Keep in mind in ran fine on both computers with 2012 so I cant see it being a X32/X64 issue.  But something it missing.  Any ideas?

0 Likes
1,636 Views
4 Replies
Replies (4)
Message 2 of 5

arcticad
Advisor
Advisor

2013 breaks binary compatability. You will need to update any references and recompile it.

---------------------------



(defun botsbuildbots() (botsbuildbots))
0 Likes
Message 3 of 5

Anonymous
Not applicable

Hi ,

I have the same problem
I updated all the references and recompiled, but does not work on windows 7 64bit.
(I updated AutoCAD 2013 Type Library)

 

What is wrong?

Thanks!

0 Likes
Message 4 of 5

fxcastil
Advocate
Advocate

I would try your line of code directly in VBA of AutoCAD 2103,. and see if it complies and runs in VBA.

 

Also check the object browser while in VBA "getobject", I have seen a few commands dropped or changed in different version of VBA.

 

Dim acapp As AcadApplication

Set acapp = GetObject(, "AutoCAD.Application.19")

MsgBox acapp.Name

 

 

 

0 Likes
Message 5 of 5

fxcastil
Advocate
Advocate

You can also try it without including the version of AutoCAD

 

Set acApp = GetObject(, "AutoCAD.Application")

0 Likes