Question

Here is a full video explanation of the problem.

It begins by throwing up the Autocad Help for some reason.

Then Shows a message that says "Could not load an object because it is not available on this machine"

Then I get a message like this:

enter image description here

The first thing called by Autocad button is showWallTypeManagementForm() Here is the Code that accompanies that Error Message in the Debugger:

Public Sub showWallTypeManagementForm()
    frmWallTypeManager.Show
End Sub

or as a screenshot.

enter image description here

here is the form (frmWallTypeManager) that it is attempting to show:

enter image description here

Was it helpful?

Solution

As per your video, you are attempting to use a 32bit DAO.DLL with a 64bit OS. It is unfortunate but that is one of the DLL's that just cannot be used with 64bit Autocad. From the looks of your form, you are probably getting some information from a database with DAO. This will cause your errors.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top