- Katılım
- 14 Şubat 2006
- Mesajlar
- 3,426
- Excel Vers. ve Dili
- (Excel 2016 - İngilizce)
- Altın Üyelik Bitiş Tarihi
- 30-11-2022
Aşağıdaki kodlar ile Userform üzerindeki Textboxların boş olup olmadığını kontrol ettirmeye çalışıyorum.Biliyorum basittir ama,
bir türlü boş olanları Msgbox ile gösteremedim.
[vb:1:800ebe9e18]
Private Sub CommandButton1_Click()
Dim mesaj As Variant
For i = 0 To Controls.Count - 1
If TypeName(Controls(i)) = "TextBox" Then
If Controls(i).Value = "" Then
mesaj = Controls(i).Name
End If
End If
mesaj = mesaj & Chr(13)
Next i
MsgBox mesaj & " alanları boş olamaz"
TextBox1.SetFocus
End Sub
[/vb:1:800ebe9e18]
bir türlü boş olanları Msgbox ile gösteremedim.
[vb:1:800ebe9e18]
Private Sub CommandButton1_Click()
Dim mesaj As Variant
For i = 0 To Controls.Count - 1
If TypeName(Controls(i)) = "TextBox" Then
If Controls(i).Value = "" Then
mesaj = Controls(i).Name
End If
End If
mesaj = mesaj & Chr(13)
Next i
MsgBox mesaj & " alanları boş olamaz"
TextBox1.SetFocus
End Sub
[/vb:1:800ebe9e18]