Train Schedule Log in Screen With Codes
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text.Contains("admin") && textBox2.Text.Contains("train"))
{
new Form3().Show();
this.Hide();
}
else
{
label4.Visible = true;
}
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
Comments
Post a Comment