Öncelikle Selamun Aleyküm.
Sizlere ErrorProvider Kullanmayı Öğretecegim.
İhtiyacımız Olanlar;
Bir Adet ErrorProvider
Bir Adet Button
Bir Adet TextBox
Yapacagımız Şey ;
Textboxa Eğer Doğru Şifre Girerse Mesaj Verecek
Eğer Yanlış Girerse ErrorProvider Çıkaracak.
Buttonun Click Olayına Gidiyoruz
Kod:
Kod:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox1.Text = "FLZM" Then
MsgBox("Başarılı", MsgBoxStyle.Information, "FlorWhanHack #For'Rock◄S► & ZoomHackS")
Else
ErrorProvider1.SetError(TextBox1, "UYARI BURADA")
End If
End Sub
End Class