I am trying to use the HandleToObject method to change the width of a selected Pline. When I use the code below I get the following error: Method 'HandleToObject' of object 'IAcadDocument' failed Any suggestions? This is a VBA Macro in Map2000i <<Code Snipit Starts Here>>>> Public Sub LineWeight(sHandle As String) Dim tempPLine As AcadObject Dim tempMapOpt As AutocadMAP.ProjectOptions Set tempPLine = ThisDrawing.HandleToObject(sHandle) 'error happens here tempMapOpt.DontAddObjectsToSaveSet = True tempPLine.ConstantWidth = 7 tempMapOpt.DontAddObjectsToSaveSet = False End Sub <<Code Snipt Ends Here>>> Thanks in advance Bart