I have an arc and a circle and I need to fillet it and create a polyline for this object. I m trying to use send command from VBA but couldnt do that. Can anybody help me on this one? My code is similar to dim alwpline as acadlwpolyline dim aArc as acadarc dim acir as acadcircle set aArc = thisdrawing.objecttoHandle("10F20") ' for Arc ' I am selecting an arc using its handle as this is known to me Set acir = thisdrawing.objecttohandle("20f20") ' for circle ' I am selecting a circle using its handle as this is known to me thisdrawing.sendcommand "_fillet" & vbCr & aArc & vbCr & aCir & vbCr but this code is not working for me. Can anybody please fix this one. Is there any way I can fillet this circle and arc without using send command.