Universitas Bina Darma, Universitas Bina Darma UNIVERSITAS BINA DARMA-FAKULTAS VOKASI-MANAJEMENT INFORMATIKA-APLIKASI TERDISTRIBUSI-GENAP. UNIVERSITAS BINA DARMA PALEMBANG.
Text
6. Login sederhana - FAKULTAS VOKASI 2019-2020 GENAP UNIVERSITAS BINA DARMA.docx Download (14kB) |
Abstract
Form Login Sedehana tanpa Database dengan Visual C# Komponen yang dibutuhkan dalam membuat login pada visual C# 1. 2 Form (Form untuk tampilan Login dan Form untuk tampilan setelah Login) 2. ToolBox - 3 Label - 2 Textbox - 2 Button Untuk hasilnya dapat dilihat pada link youtube berikut: https://youtu.be/PkSfbXCtFGc Double klik pada button login untuk memasukan koding perintah login: 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 klik pada button Exit untuk memasukan koding perintah Exit: Masukan kode sebagai berikut private void buttonExit_Click(object sender, EventArgs e) { Application.Exit(); }
Item Type: | Other |
---|---|
Subjects: | L Education > L Education (General) |
Divisions: | Faculty of Law, Arts and Social Sciences > School of Management |
Depositing User: | Mr Edi Surya Negara |
Date Deposited: | 15 Feb 2022 07:38 |
Last Modified: | 15 Feb 2022 07:38 |
URI: | http://eprints.binadarma.ac.id/id/eprint/9144 |
Actions (login required)
View Item |