Guest User

Untitled

a guest
Dec 11th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.31 KB | None | 0 0
  1. Dim UList = From userlist In OurDataset.tbl_Users Select userlist.username, userlist.password Where username = txt_User.Text And password = txt_PWord.Text
  2.         If UList.Count >= 1 Then
  3.             Home.Show()
  4.             Me.Close()
  5.         Else
  6.             MessageBox.Show("Login info incorrect.")
  7.         End If
Add Comment
Please, Sign In to add comment