I use this simple code to launch autocad with a vb6 program. We are going to be upgrading to AutoCAD 2005 next week and i was wondering if i needed to change anything? On Error Resume Next Set acdApp = GetObject(, "autocad.application") If Err.Number <> 0 Then Set acdApp = CreateObject("autocad.application") Err.Clear End If