In ACAD, typing "dimedit" --> "Home" returns the Dim Position to Home. How can I do it from VBA? Thanks
This is a work-around. Using SendCommand is never the best way, but if you don't use it you'd have to re-program all of the logic that is contained hidden in the HOME command, which is not practical. ThisDrawing.SendCommand "DimEdit Home (handent """ & quota.Handle & """) " 'keep the spaces in the string to make the command execute HTH, James