Membuat program windows dekstop sederhana.
SS :
Download program --- > Klik di sini (link google drive)
Source code :
namespace Uji_Kegantengan
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void label1_Click(object sender, EventArgs e)
{
}
private void btnMulaiUji_Click(object sender, EventArgs e)
{
string isi = txtInputNama.Text;
if (isi.Trim() == string.Empty)
{
MessageBox.Show("Anda belum memasukkan nama, silahkan isi dengan benar!");
}
else if (isi.Length % 17 == 0) {
MessageBox.Show("Selamat, Anda ganteng sekali !!!");
}
else if (isi.Length % 2 == 0)
{
MessageBox.Show("Wow, Anda cukup ganteng.");
}
else if (isi.Length % 2 == 1)
{
MessageBox.Show("Ppffffftttttt.. maaf, Anda lumayan je*le*k");
}
}
private void txtInputNama_TextChanged(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void label1_Click(object sender, EventArgs e)
{
}
private void btnMulaiUji_Click(object sender, EventArgs e)
{
string isi = txtInputNama.Text;
if (isi.Trim() == string.Empty)
{
MessageBox.Show("Anda belum memasukkan nama, silahkan isi dengan benar!");
}
else if (isi.Length % 17 == 0) {
MessageBox.Show("Selamat, Anda ganteng sekali !!!");
}
else if (isi.Length % 2 == 0)
{
MessageBox.Show("Wow, Anda cukup ganteng.");
}
else if (isi.Length % 2 == 1)
{
MessageBox.Show("Ppffffftttttt.. maaf, Anda lumayan je*le*k");
}
}
private void txtInputNama_TextChanged(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
No comments:
Kami mengharapkan komentar dan kritikan yang membangun, ..