- Katılım
- 18 Mart 2022
- Mesajlar
- 34
- Excel Vers. ve Dili
- 2019 TÜRKÇE
Temizle butonuna tıkladığımda sadece txtboxları temizliyor ben hem textboxları hemde comboboxları komple temizlemek istiyorum. Combobox lar için nasıl kod eklemeliyim? Teşekkürler.
Kod:
Private Sub CommandButton2_Click()
Dim ctl
cevap = MsgBox("Form temizlenecek. Emin misiniz?", vbYesNo, "TEMİZLE")
If cevap = vbYes Then
For Each ctl In Me.Controls
If TypeOf ctl Is MSForms.TextBox Then
ctl.Text = ""
End If
Next
End If
End Sub