DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub CommandButton1_Click()
Range("c5:c250").ClearContents
End Sub
Private Sub CommandButton1_Click()
If TextBox1 = "" Then
MsgBox "Önce silmek istediğiniz veriyi bulunuz", , "Stok Sil"
Exit Sub
End If
Dim cevap As String
Dim i
cevap = MsgBox("Seçili Kaydı Silmek istediğinizden Emin misiniz ?", vbYesNo + vbQuestion, "Kayıt Silme")
If cevap = vbYes Then
'seçili hücrenin bulunduğu satırı siler
Selection.EntireRow.Delete
TextBox1.Text = ""
TextBox1.Text = ""
'ActiveWorkbook.Save
MsgBox "Seçili kaydınız silinmiştir.", , "Kayıt Sil"
Else
End If
For i = 1 To ActiveSheet.Cells(5000, 1).End(xlUp).Row
If TextBox1.Text = Left(ActiveSheet.Cells(i, 1), Len(TextBox1.Text)) Then
End If
Next i
If ListBox1.ListCount > 0 Then
ListBox1.ListIndex = 0
End If
End Sub
Private Sub CommandButton_Click()
Rows(7:7).Select
Selection.EntrieRow.Delete
End Sub