Hi. I'm trying to grab a dimension via GetEntity so I can pull some info off of it, for use in my program. Here's the code: Dim p As Object Dim olddim As Autodesk.AutoCAD.Interop.Common.AcadDimension Try Dim utils As AcadUtility = CType(CType(Autodesk.AutoCAD.ApplicationServices.Application.AcadApplication, AcadApplication).ActiveDocument.Utility, AcadUtility) utils.GetEntity(olddim, p, "Pick the Dimension") Catch End Try It just doesn't seem to be able to catch errors that occur when you click somewhere and don't select an object. Any ideas?