Advertisement
Guest User

lesxi pane aigaiou

a guest
Jan 27th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. private void button1_Click(object sender, EventArgs e)
  2. {
  3. this.Close();
  4. }
  5.  
  6. private void button2_Click(object sender, EventArgs e)
  7. {
  8. string user, pass;
  9. user = txtUser.Text;
  10. pass = txtPass.Text;
  11. if (user == "dpsd14002" && pass == "1234")
  12. {
  13. MessageBox.Show("Δικαιούσαι Δωρεάν Σίτιση. Δεν Χρειάζεται να πληρώσεις.");
  14. // εδω θα μπορουσε να υλοποιηθει ενας τροπος να μπαινουν ποντοι ...
  15. }
  16.  
  17. else if (user == "dpsd14003" && pass == "5678")
  18. {
  19. MessageBox.Show("Δεν Δικαιούσαι Δωρεάν Σίτιση. Πλήρωσε 2,50€");
  20. // και εδω παλι θα μπορουσε να υλοποιηθει ενας τροπος να μπαινουν οι ποντοι...
  21. }
  22.  
  23. else
  24. {
  25. MessageBox.Show("Error");
  26.  
  27. }
  28.  
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement