Dim rFound As Range, Str As String
Dim wsss As Worksheet
Set wsss = Worksheets("Inventario de Anillos-Cilindros")
Application.ScreenUpdating = False
With wsss
Str = Me.cboElCodCilindro.Value
Do
Set rFound = Cells.Find(Str, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows)
If Not rFound Is Nothing Then Rows(rFound.Row).EntireRow.Delete xlShiftUp
Loop Until rFound Is Nothing
End With
Application.ScreenUpdating = True