Dear All,
{
if (textBox1.Text == "")
{
MessageBox.Show("Employee ID Cannot Be Empty");
}
else if (textBox2.Text == "")
{
MessageBox.Show("Password Cannot Be Empty");
}
else
{
if (textBox1.Text != "iqbal" && textBox2.Text != "12345")
{
MessageBox.Show("Your Login Failed");
}
else
{
MessageBox.Show("Succes Login");
MenuUtama menu = new MenuUtama();
menu.Show();
this.Visible = false;
}
}
}
Double Click pada Button Exit
Masukan kode sebagai berikut
private void buttonExit_Click(object sender, EventArgs e)
{
Application.Exit();
}
It’s time to Run (F5)
Asumsi Logika pada Button Login
kali ini saya kan berbagi cerita tentang membuat form login sedehana tanpa database dengan visual C#, project sederhana namun cukup bermanfaat pembelajaran awal
Saya asumsikan bahwa anda telah mengetahui toolbox dari Microsoft Visual Studio itu sendiri
Komponen yang Diperlukan…
- 2 Form –> Form Login
Form Utama
Form Login terdiri dari ToolBox,
- 2 Label
- 2 Textbox
- 2 Button
Buat Form Login minimal sepert tampilan dibawah ini,
It’s Time to Coding
Double Click pada Button Login
Masukan kode sebagai berikut
private void buttonLogin_Click(object sender, EventArgs e) {
if (textBox1.Text == "")
{
MessageBox.Show("Employee ID Cannot Be Empty");
}
else if (textBox2.Text == "")
{
MessageBox.Show("Password Cannot Be Empty");
}
else
{
if (textBox1.Text != "iqbal" && textBox2.Text != "12345")
{
MessageBox.Show("Your Login Failed");
}
else
{
MessageBox.Show("Succes Login");
MenuUtama menu = new MenuUtama();
menu.Show();
this.Visible = false;
}
}
}
Double Click pada Button Exit
Masukan kode sebagai berikut
private void buttonExit_Click(object sender, EventArgs e)
{
Application.Exit();
}
It’s time to Run (F5)
Asumsi Logika pada Button Login
- Jika Click Button Login tapi UserName kosong maka muncul MessageBox "UserName Cannot Be Empty".
- Jika Click Button Login tapi Password kosong maka muncul MessageBox "Password Cannot Be Empty"
- Jika Click Button Login UserName dan passwordnya nya tidak seperti yang telah ditetapkan maka muncul MessageBox "Your Login Failed"
- Jika Click Button Login UserName dan passwordnya nya sesuai dengan apa yang telah ditetapkan maka muncul MessageBox "Login Success" dan mucul Form Menu Utama.
Silahkan Dicoba, Kreasikan dengan logika sendiri,
Semoga Bermanfaat,
Regards,
Iqbal
menu.show() itu bikin method sendiri atau udh bawaan visual studio?
ReplyDeleteCuma bantu jawab sepengetahuan saya
DeleteBikin sendiri bro itu sebagai stringnya menu
ketika di debug emang pasti ada error 1 ya bos
ReplyDeleteError 1 Could not find 'percobaan.Program' specified for Main method percobaan
Deletegan gimana kalo form menuutama nya mau kita izi program juga ?
ReplyDeleteThis comment has been removed by the author.
Delete