ŞARTLAR
* Kullanıcı Adı Şifre
* Doğrulama
* Takıma Göre Listeleme
Formun Tamamı İçin Tıklayınız.
# FORM 1 Kodları #
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Collections;
namespace WindowsFormsApplication43
{
public partial class Form1 : Form
{
public static string a;
int s=0;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
progressBar1.Minimum = 0;
progressBar1.Maximum = 3;
string ad = textBox1.Text;
if (textBox2.Text != "123")
{
MessageBox.Show("Yanlış Şifre");
progressBar1.Value += 1;
s = s + 1;
}
else
{
progressBar1.Value = 0;
int k = Convert.ToInt32(textBox2.Text);
Form form2 = new Form2();
form2.Show();
a = textBox1.Text;
}
if (s > 2)
{
MessageBox.Show("3 Kere Yanlış Girdiniz Bye..");
panel1.Enabled = false;
button2.Visible = true;
}
}
private void button2_Click(object sender, EventArgs e)
{
s = 0;
panel1.Enabled = true;
progressBar1.Value = 0;
button2.Visible = false;
}
}
}
# FORM 2 Kodları #
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Collections;
namespace WindowsFormsApplication43
{
public partial class Form2 : Form
{
ArrayList ad = new ArrayList();
ArrayList no = new ArrayList();
ArrayList tkm = new ArrayList();
public Form2()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int g = no.IndexOf(textBox1.Text);
int m = 0;
int n = 1;
if (g != -1)
{
MessageBox.Show("aynı No olamaz");
textBox1.Text = null;
textBox1.Focus();
n = 0;
}
if (textBox2.Text == "")
{
string a = (MessageBox.Show("Devam etmek İstermisin", "Uyarı", MessageBoxButtons.YesNo)).ToString();
if (a == "Yes")
{
m = 1;
}
}
else
{
m = 1;
}
if (m == 1 && n == 1)
{
no.Add(textBox1.Text);
ad.Add(textBox2.Text);
textBox1.Text = null;
textBox2.Text = null;
tkm.Add(comboBox1.SelectedItem.ToString());
}
}
private void button2_Click(object sender, EventArgs e)
{
int d = 0;
listBox1.Items.Clear();
if (radioButton1.Checked)
{
for (int k = 0; k < no.Count; k++)
{
if (tkm[k].ToString() == "GS")
{
listBox1.Items.Add(++d + ")" + no[k] + " " + ad[k] + " " + tkm[k]);
}
}
}
if (radioButton2.Checked)
{
for (int k = 0; k < no.Count; k++)
{
if (tkm[k].ToString() == "FB")
{
listBox1.Items.Add(++d + ")" + no[k] + " " + ad[k] + " " + tkm[k]);
}
}
}
if (radioButton3.Checked)
{
for (int k = 0; k < no.Count; k++)
{
listBox1.Items.Add(++d + ")" + no[k] + " " + ad[k] + " " + tkm[k]);
}
}
}
private void Form2_Load(object sender, EventArgs e)
{
label1.Text = Form1.a;
}
}
}
Hiç yorum yok:
Yorum Gönder