filmov
tv
Visual Basic Form 1den Form2ye login ile geçiş
Показать описание
visual basicte login sistemi yapmak
gerekenler: 2adet textbox biri kullanıcı adı diğeri şifre
1adet comman button giriş için
1tanede form2 açın
command buttona 2kez tıklayıp
bunları yazın
Private Sub Command1_Click()
If Text1.Text = "test" And Text2.Text = "test" Then
Form2.Show
Unload Me
Else
MsgBox ("şifre hatalı")
End If
End Sub
gerekenler: 2adet textbox biri kullanıcı adı diğeri şifre
1adet comman button giriş için
1tanede form2 açın
command buttona 2kez tıklayıp
bunları yazın
Private Sub Command1_Click()
If Text1.Text = "test" And Text2.Text = "test" Then
Form2.Show
Unload Me
Else
MsgBox ("şifre hatalı")
End If
End Sub