I'm running AutoCad Architecture 2013 on Win7 64bit. Installed VBA enabler for Acad2013 64bit version. When start the simple code below:
Sub Example_GetPoint()
Dim retPnt As Variant
retPnt = ThisDrawing.Utility.GetPoint(, "Enter a point: ")
... ... ... ...
End Sub
It hangs up at "GetPoint". I can't switch to the AutoCAD window to select anything. The only way to get control back is to go to taskbar, right-click the AutoCAD icon and try to close it, then click cancel, I will get control back in VBA Editor. The same thing happens with "SelectOnScreen". But if I run this macro from Autocad directly, everything is fine.
Does anyone have same experience or any advice? Thanks a lot.