• Giriş

Gorsel Programlama

  • AnaSayfa
  • Hakkımızda
  • TOP-10 Proje
  • Download
  • Özel Ders
  • Reklam Verin
  • Destek
  • İletişim
RSS feed
  • Youdao
  • Xian Guo
  • Zhua Xia
  • Google
  • My Yahoo!
  • newsgator
  • Bloglines
  • iNezha
© 2009-2024 Gorsel Programlama

Mini BİLSA C#

Mini BİLSA C#

bilsa-kopya


public partial class Form1 : Form

{

int  y1, y2, y3, s1, s2, s3, not,a,y;

long ort;

string[] b, c, d, n, f, g, p, r, s, t;

public Form1()

{

InitializeComponent();

}

private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)

{

switch (comboBox1.Text)

{

case "Endüstri":

button1.Text = "12/A";

button2.Text = "12/B";

button3.Text = "11/A";

button4.Text = "11/B";

button5.Text = "10/A";

button6.Text = "10/B";

button5.Visible = true ;

button6.Visible = true;

break;

case "Anadolu":

button1.Text = "12/AB";

button2.Text = "11/AB";

button3.Text = "10/AB";

button4.Text = "9/AB";

button5.Visible = false;

button6.Visible = false;

break;

case "Teknikler":

button1.Text = "12/TB";

button2.Text = "12/TE";

button3.Text = "11/TB";

button4.Text = "11/TE";

button5.Text = "10/TB";

button6.Text = "10/TE";

button5.Visible = true;

button6.Visible = true;

break;

}

}

private void Form1_Load(object sender, EventArgs e)

{

timer1.Interval = 1000;

label12.Text = "100";

timer1.Enabled = true;

y = 100;

}

private void textBox11_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox11.Text);

y2 = int.Parse(textBox30.Text);

y3 = int.Parse(textBox40.Text);

s1 = int.Parse(textBox50.Text);

s2 = int.Parse(textBox60.Text);

s3 = int.Parse(textBox70.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox80.Text = ort.ToString();

if (y1 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if(checkBox1.Checked==true )

ort = ((y1 + y2+ y3 + s1 + s2) / 5);

textBox80.Text = ort.ToString();

if (checkBox2.Checked==true)

ort = ((y1 + y2 + s1 + s2+ s3 ) / 5);

textBox80.Text = ort.ToString();

if (checkBox1.Checked==true && checkBox2.Checked ==true)

ort = ((y1 + y2 +y3 + s1 + s2+s3 ) / 6);

textBox80.Text = ort.ToString();

}

private void textBox30_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox11.Text);

y2 = int.Parse(textBox30.Text);

y3 = int.Parse(textBox40.Text);

s1 = int.Parse(textBox50.Text);

s2 = int.Parse(textBox60.Text);

s3 = int.Parse(textBox70.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox80.Text = ort.ToString();

if (y2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox80.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox80.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox80.Text = ort.ToString();

}

private void textBox40_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox11.Text);

y2 = int.Parse(textBox30.Text);

y3 = int.Parse(textBox40.Text);

s1 = int.Parse(textBox50.Text);

s2 = int.Parse(textBox60.Text);

s3 = int.Parse(textBox70.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox80.Text = ort.ToString();

if (y3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox80.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox80.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox80.Text = ort.ToString();

}

private void textBox50_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox11.Text);

y2 = int.Parse(textBox30.Text);

y3 = int.Parse(textBox40.Text);

s1 = int.Parse(textBox50.Text);

s2 = int.Parse(textBox60.Text);

s3 = int.Parse(textBox70.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox80.Text = ort.ToString();

if (s1  > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox80.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox80.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox80.Text = ort.ToString();

}

private void textBox60_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox11.Text);

y2 = int.Parse(textBox30.Text);

y3 = int.Parse(textBox40.Text);

s1 = int.Parse(textBox50.Text);

s2 = int.Parse(textBox60.Text);

s3 = int.Parse(textBox70.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox80.Text = ort.ToString();

if (s2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox80.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox80.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox80.Text = ort.ToString();

}

private void textBox70_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox11.Text);

y2 = int.Parse(textBox30.Text);

y3 = int.Parse(textBox40.Text);

s1 = int.Parse(textBox50.Text);

s2 = int.Parse(textBox60.Text);

s3 = int.Parse(textBox70.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox80.Text = ort.ToString();

if (s3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox80.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox80.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox80.Text = ort.ToString();

}

private void textBox12_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox12.Text);

y2 = int.Parse(textBox29.Text);

y3 = int.Parse(textBox39.Text);

s1 = int.Parse(textBox49.Text);

s2 = int.Parse(textBox59.Text);

s3 = int.Parse(textBox69.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox79.Text = ort.ToString();

if (y1> 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox79.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox79.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox79.Text = ort.ToString();

}

private void textBox29_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox12.Text);

y2 = int.Parse(textBox29.Text);

y3 = int.Parse(textBox39.Text);

s1 = int.Parse(textBox49.Text);

s2 = int.Parse(textBox59.Text);

s3 = int.Parse(textBox69.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox79.Text = ort.ToString();

if (y2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox79.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox79.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox79.Text = ort.ToString();

}

private void textBox39_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox12.Text);

y2 = int.Parse(textBox29.Text);

y3 = int.Parse(textBox39.Text);

s1 = int.Parse(textBox49.Text);

s2 = int.Parse(textBox59.Text);

s3 = int.Parse(textBox69.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox79.Text = ort.ToString();

if (y3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox79.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox79.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox79.Text = ort.ToString();

}

private void textBox49_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox12.Text);

y2 = int.Parse(textBox29.Text);

y3 = int.Parse(textBox39.Text);

s1 = int.Parse(textBox49.Text);

s2 = int.Parse(textBox59.Text);

s3 = int.Parse(textBox69.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox79.Text = ort.ToString();

if (s1 > 100)

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox79.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox79.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox79.Text = ort.ToString();

}

private void textBox59_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox12.Text);

y2 = int.Parse(textBox29.Text);

y3 = int.Parse(textBox39.Text);

s1 = int.Parse(textBox49.Text);

s2 = int.Parse(textBox59.Text);

s3 = int.Parse(textBox69.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox79.Text = ort.ToString();

if (s2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox79.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox79.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox79.Text = ort.ToString();

}

private void textBox69_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox12.Text);

y2 = int.Parse(textBox29.Text);

y3 = int.Parse(textBox39.Text);

s1 = int.Parse(textBox49.Text);

s2 = int.Parse(textBox59.Text);

s3 = int.Parse(textBox69.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox79.Text = ort.ToString();

if (s3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox79.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox79.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox79.Text = ort.ToString();

}

private void checkBox1_CheckedChanged(object sender, EventArgs e)

{

if (checkBox1.Checked == true)

{

textBox40.Enabled = true;

textBox39.Enabled = true;

textBox38.Enabled = true;

textBox37.Enabled = true;

textBox36.Enabled = true;

textBox35.Enabled = true;

textBox34.Enabled = true;

textBox33.Enabled = true;

textBox32.Enabled = true;

textBox31.Enabled = true;

}

else

{

textBox40.Enabled = false;

textBox39.Enabled = false;

textBox38.Enabled = false;

textBox37.Enabled = false;

textBox36.Enabled = false;

textBox35.Enabled = false;

textBox34.Enabled = false;

textBox33.Enabled = false;

textBox32.Enabled = false;

textBox31.Enabled = false;

}

}

private void checkBox2_CheckedChanged(object sender, EventArgs e)

{

if (checkBox2.Checked == true)

{

textBox70.Enabled = true;

textBox69.Enabled = true;

textBox68.Enabled = true;

textBox67.Enabled = true;

textBox66.Enabled = true;

textBox65.Enabled = true;

textBox64.Enabled = true;

textBox63.Enabled = true;

textBox62.Enabled = true;

textBox61.Enabled = true;

}

else

{

textBox70.Enabled = false;

textBox69.Enabled = false;

textBox68.Enabled = false;

textBox67.Enabled = false;

textBox66.Enabled = false;

textBox65.Enabled = false;

textBox64.Enabled = false;

textBox63.Enabled = false;

textBox62.Enabled = false;

textBox61.Enabled = false;

}

}

private void textBox13_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox13.Text);

y2 = int.Parse(textBox28.Text);

y3 = int.Parse(textBox38.Text);

s1 = int.Parse(textBox48.Text);

s2 = int.Parse(textBox58.Text);

s3 = int.Parse(textBox68.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox78.Text = ort.ToString();

if (y1> 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox78.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox78.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox78.Text = ort.ToString();

}

private void textBox28_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox13.Text);

y2 = int.Parse(textBox28.Text);

y3 = int.Parse(textBox38.Text);

s1 = int.Parse(textBox48.Text);

s2 = int.Parse(textBox58.Text);

s3 = int.Parse(textBox68.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox78.Text = ort.ToString();

if (y2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox78.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox78.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox78.Text = ort.ToString();

}

private void textBox38_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox13.Text);

y2 = int.Parse(textBox28.Text);

y3 = int.Parse(textBox38.Text);

s1 = int.Parse(textBox48.Text);

s2 = int.Parse(textBox58.Text);

s3 = int.Parse(textBox68.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox78.Text = ort.ToString();

if (y3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox78.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox78.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox78.Text = ort.ToString();

}

private void textBox48_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox13.Text);

y2 = int.Parse(textBox28.Text);

y3 = int.Parse(textBox38.Text);

s1 = int.Parse(textBox48.Text);

s2 = int.Parse(textBox58.Text);

s3 = int.Parse(textBox68.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox78.Text = ort.ToString();

if (s1 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox78.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox78.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox78.Text = ort.ToString();

}

private void textBox58_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox13.Text);

y2 = int.Parse(textBox28.Text);

y3 = int.Parse(textBox38.Text);

s1 = int.Parse(textBox48.Text);

s2 = int.Parse(textBox58.Text);

s3 = int.Parse(textBox68.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox78.Text = ort.ToString();

if (s2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox78.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox78.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox78.Text = ort.ToString();

}

private void textBox68_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox13.Text);

y2 = int.Parse(textBox28.Text);

y3 = int.Parse(textBox38.Text);

s1 = int.Parse(textBox48.Text);

s2 = int.Parse(textBox58.Text);

s3 = int.Parse(textBox68.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox78.Text = ort.ToString();

if (s3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox78.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox78.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox78.Text = ort.ToString();

}

private void textBox14_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox14.Text);

y2 = int.Parse(textBox27.Text);

y3 = int.Parse(textBox37.Text);

s1 = int.Parse(textBox47.Text);

s2 = int.Parse(textBox57.Text);

s3 = int.Parse(textBox67.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox77.Text = ort.ToString();

if (y1 > 100)

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox77.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox77.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox77.Text = ort.ToString();

}

private void textBox27_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox14.Text);

y2 = int.Parse(textBox27.Text);

y3 = int.Parse(textBox37.Text);

s1 = int.Parse(textBox47.Text);

s2 = int.Parse(textBox57.Text);

s3 = int.Parse(textBox67.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox77.Text = ort.ToString();

if (y2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox77.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox77.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox77.Text = ort.ToString();

}

private void textBox37_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox14.Text);

y2 = int.Parse(textBox27.Text);

y3 = int.Parse(textBox37.Text);

s1 = int.Parse(textBox47.Text);

s2 = int.Parse(textBox57.Text);

s3 = int.Parse(textBox67.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox77.Text = ort.ToString();

if (y3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox77.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox77.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox77.Text = ort.ToString();

}

private void textBox47_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox14.Text);

y2 = int.Parse(textBox27.Text);

y3 = int.Parse(textBox37.Text);

s1 = int.Parse(textBox47.Text);

s2 = int.Parse(textBox57.Text);

s3 = int.Parse(textBox67.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox77.Text = ort.ToString();

if (s1 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox77.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox77.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox77.Text = ort.ToString();

}

private void textBox57_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox14.Text);

y2 = int.Parse(textBox27.Text);

y3 = int.Parse(textBox37.Text);

s1 = int.Parse(textBox47.Text);

s2 = int.Parse(textBox57.Text);

s3 = int.Parse(textBox67.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox77.Text = ort.ToString();

if (s2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox77.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox77.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox77.Text = ort.ToString();

}

private void textBox67_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox14.Text);

y2 = int.Parse(textBox27.Text);

y3 = int.Parse(textBox37.Text);

s1 = int.Parse(textBox47.Text);

s2 = int.Parse(textBox57.Text);

s3 = int.Parse(textBox67.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox77.Text = ort.ToString();

if (s3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox77.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox77.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox77.Text = ort.ToString();

}

private void textBox15_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox15.Text);

y2 = int.Parse(textBox26.Text);

y3 = int.Parse(textBox36.Text);

s1 = int.Parse(textBox46.Text);

s2 = int.Parse(textBox56.Text);

s3 = int.Parse(textBox66.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox76.Text = ort.ToString();

if (y1 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox76.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox76.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox76.Text = ort.ToString();

}

private void textBox26_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox15.Text);

y2 = int.Parse(textBox26.Text);

y3 = int.Parse(textBox36.Text);

s1 = int.Parse(textBox46.Text);

s2 = int.Parse(textBox56.Text);

s3 = int.Parse(textBox66.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox76.Text = ort.ToString();

if (y2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox76.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox76.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox76.Text = ort.ToString();

}

private void textBox36_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox15.Text);

y2 = int.Parse(textBox26.Text);

y3 = int.Parse(textBox36.Text);

s1 = int.Parse(textBox46.Text);

s2 = int.Parse(textBox56.Text);

s3 = int.Parse(textBox66.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox76.Text = ort.ToString();

if (y3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox76.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox76.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox76.Text = ort.ToString();

}

private void textBox46_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox15.Text);

y2 = int.Parse(textBox26.Text);

y3 = int.Parse(textBox36.Text);

s1 = int.Parse(textBox46.Text);

s2 = int.Parse(textBox56.Text);

s3 = int.Parse(textBox66.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox76.Text = ort.ToString();

if (s1 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox76.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox76.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox76.Text = ort.ToString();

}

private void textBox56_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox15.Text);

y2 = int.Parse(textBox26.Text);

y3 = int.Parse(textBox36.Text);

s1 = int.Parse(textBox46.Text);

s2 = int.Parse(textBox56.Text);

s3 = int.Parse(textBox66.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox76.Text = ort.ToString();

if (s2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox76.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox76.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox76.Text = ort.ToString();

}

private void textBox66_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox15.Text);

y2 = int.Parse(textBox26.Text);

y3 = int.Parse(textBox36.Text);

s1 = int.Parse(textBox46.Text);

s2 = int.Parse(textBox56.Text);

s3 = int.Parse(textBox66.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox76.Text = ort.ToString();

if (s3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox76.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox76.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox76.Text = ort.ToString();

}

private void textBox16_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox16.Text);

y2 = int.Parse(textBox25.Text);

y3 = int.Parse(textBox35.Text);

s1 = int.Parse(textBox45.Text);

s2 = int.Parse(textBox55.Text);

s3 = int.Parse(textBox65.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox75.Text = ort.ToString();

if (y1 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox75.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox75.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox75.Text = ort.ToString();

}

private void textBox25_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox16.Text);

y2 = int.Parse(textBox25.Text);

y3 = int.Parse(textBox35.Text);

s1 = int.Parse(textBox45.Text);

s2 = int.Parse(textBox55.Text);

s3 = int.Parse(textBox65.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox75.Text = ort.ToString();

if (y2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox75.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox75.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox75.Text = ort.ToString();

}

private void textBox35_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox16.Text);

y2 = int.Parse(textBox25.Text);

y3 = int.Parse(textBox35.Text);

s1 = int.Parse(textBox45.Text);

s2 = int.Parse(textBox55.Text);

s3 = int.Parse(textBox65.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox75.Text = ort.ToString();

if (y2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox75.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox75.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox75.Text = ort.ToString();

}

private void textBox45_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox16.Text);

y2 = int.Parse(textBox25.Text);

y3 = int.Parse(textBox35.Text);

s1 = int.Parse(textBox45.Text);

s2 = int.Parse(textBox55.Text);

s3 = int.Parse(textBox65.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox75.Text = ort.ToString();

if (s1 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox75.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox75.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox75.Text = ort.ToString();

}

private void textBox55_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox16.Text);

y2 = int.Parse(textBox25.Text);

y3 = int.Parse(textBox35.Text);

s1 = int.Parse(textBox45.Text);

s2 = int.Parse(textBox55.Text);

s3 = int.Parse(textBox65.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox75.Text = ort.ToString();

if (s2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox75.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox75.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox75.Text = ort.ToString();

}

private void textBox65_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox16.Text);

y2 = int.Parse(textBox25.Text);

y3 = int.Parse(textBox35.Text);

s1 = int.Parse(textBox45.Text);

s2 = int.Parse(textBox55.Text);

s3 = int.Parse(textBox65.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox75.Text = ort.ToString();

if (s3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox75.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox75.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox75.Text = ort.ToString();

}

private void textBox17_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox17.Text);

y2 = int.Parse(textBox24.Text);

y3 = int.Parse(textBox34.Text);

s1 = int.Parse(textBox44.Text);

s2 = int.Parse(textBox54.Text);

s3 = int.Parse(textBox64.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox74.Text = ort.ToString();

if (y1 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox74.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox74.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox74.Text = ort.ToString();

}

private void textBox24_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox17.Text);

y2 = int.Parse(textBox24.Text);

y3 = int.Parse(textBox34.Text);

s1 = int.Parse(textBox44.Text);

s2 = int.Parse(textBox54.Text);

s3 = int.Parse(textBox64.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox74.Text = ort.ToString();

if (y2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox74.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox74.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox74.Text = ort.ToString();

}

private void textBox34_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox17.Text);

y2 = int.Parse(textBox24.Text);

y3 = int.Parse(textBox34.Text);

s1 = int.Parse(textBox44.Text);

s2 = int.Parse(textBox54.Text);

s3 = int.Parse(textBox64.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox74.Text = ort.ToString();

if (y3 > 100)

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox74.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox74.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox74.Text = ort.ToString();

}

private void textBox44_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox17.Text);

y2 = int.Parse(textBox24.Text);

y3 = int.Parse(textBox34.Text);

s1 = int.Parse(textBox44.Text);

s2 = int.Parse(textBox54.Text);

s3 = int.Parse(textBox64.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox74.Text = ort.ToString();

if (s1 > 100)

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox74.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox74.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox74.Text = ort.ToString();

}

private void textBox54_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox17.Text);

y2 = int.Parse(textBox24.Text);

y3 = int.Parse(textBox34.Text);

s1 = int.Parse(textBox44.Text);

s2 = int.Parse(textBox54.Text);

s3 = int.Parse(textBox64.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox74.Text = ort.ToString();

if (s2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox74.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox74.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox74.Text = ort.ToString();

}

private void textBox64_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox17.Text);

y2 = int.Parse(textBox24.Text);

y3 = int.Parse(textBox34.Text);

s1 = int.Parse(textBox44.Text);

s2 = int.Parse(textBox54.Text);

s3 = int.Parse(textBox64.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox74.Text = ort.ToString();

if (s3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox74.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox74.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox74.Text = ort.ToString();

}

private void textBox18_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox18.Text);

y2 = int.Parse(textBox23.Text);

y3 = int.Parse(textBox33.Text);

s1 = int.Parse(textBox43.Text);

s2 = int.Parse(textBox53.Text);

s3 = int.Parse(textBox63.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox73.Text = ort.ToString();

if (y1 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox73.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox73.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox73.Text = ort.ToString();

}

private void textBox23_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox18.Text);

y2 = int.Parse(textBox23.Text);

y3 = int.Parse(textBox33.Text);

s1 = int.Parse(textBox43.Text);

s2 = int.Parse(textBox53.Text);

s3 = int.Parse(textBox63.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox73.Text = ort.ToString();

if (y2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox73.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox73.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox73.Text = ort.ToString();

}

private void textBox33_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox18.Text);

y2 = int.Parse(textBox23.Text);

y3 = int.Parse(textBox33.Text);

s1 = int.Parse(textBox43.Text);

s2 = int.Parse(textBox53.Text);

s3 = int.Parse(textBox63.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox73.Text = ort.ToString();

if (y3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox73.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox73.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox73.Text = ort.ToString();

}

private void textBox43_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox18.Text);

y2 = int.Parse(textBox23.Text);

y3 = int.Parse(textBox33.Text);

s1 = int.Parse(textBox43.Text);

s2 = int.Parse(textBox53.Text);

s3 = int.Parse(textBox63.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox73.Text = ort.ToString();

if (s1 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox73.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox73.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox73.Text = ort.ToString();

}

private void textBox53_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox18.Text);

y2 = int.Parse(textBox23.Text);

y3 = int.Parse(textBox33.Text);

s1 = int.Parse(textBox43.Text);

s2 = int.Parse(textBox53.Text);

s3 = int.Parse(textBox63.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox73.Text = ort.ToString();

if (s2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox73.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox73.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox73.Text = ort.ToString();

}

private void textBox63_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox18.Text);

y2 = int.Parse(textBox23.Text);

y3 = int.Parse(textBox33.Text);

s1 = int.Parse(textBox43.Text);

s2 = int.Parse(textBox53.Text);

s3 = int.Parse(textBox63.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox73.Text = ort.ToString();

if (s3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox73.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox73.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox73.Text = ort.ToString();

}

private void textBox19_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox19.Text);

y2 = int.Parse(textBox22.Text);

y3 = int.Parse(textBox32.Text);

s1 = int.Parse(textBox42.Text);

s2 = int.Parse(textBox52.Text);

s3 = int.Parse(textBox62.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox72.Text = ort.ToString();

if (y1  > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox72.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox72.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox72.Text = ort.ToString();

}

private void textBox22_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox19.Text);

y2 = int.Parse(textBox22.Text);

y3 = int.Parse(textBox32.Text);

s1 = int.Parse(textBox42.Text);

s2 = int.Parse(textBox52.Text);

s3 = int.Parse(textBox62.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox72.Text = ort.ToString();

if (y2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox72.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox72.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox72.Text = ort.ToString();

}

private void textBox32_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox19.Text);

y2 = int.Parse(textBox22.Text);

y3 = int.Parse(textBox32.Text);

s1 = int.Parse(textBox42.Text);

s2 = int.Parse(textBox52.Text);

s3 = int.Parse(textBox62.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox72.Text = ort.ToString();

if (y3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox72.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox72.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox72.Text = ort.ToString();

}

private void textBox42_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox19.Text);

y2 = int.Parse(textBox22.Text);

y3 = int.Parse(textBox32.Text);

s1 = int.Parse(textBox42.Text);

s2 = int.Parse(textBox52.Text);

s3 = int.Parse(textBox62.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox72.Text = ort.ToString();

if (s1  > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox72.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox72.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox72.Text = ort.ToString();

}

private void textBox52_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox19.Text);

y2 = int.Parse(textBox22.Text);

y3 = int.Parse(textBox32.Text);

s1 = int.Parse(textBox42.Text);

s2 = int.Parse(textBox52.Text);

s3 = int.Parse(textBox62.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox72.Text = ort.ToString();

if (s2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox72.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox72.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox72.Text = ort.ToString();

}

private void textBox62_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox19.Text);

y2 = int.Parse(textBox22.Text);

y3 = int.Parse(textBox32.Text);

s1 = int.Parse(textBox42.Text);

s2 = int.Parse(textBox52.Text);

s3 = int.Parse(textBox62.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox72.Text = ort.ToString();

if (s3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox72.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox72.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox72.Text = ort.ToString();

}

private void textBox20_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox20.Text);

y2 = int.Parse(textBox21.Text);

y3 = int.Parse(textBox31.Text);

s1 = int.Parse(textBox41.Text);

s2 = int.Parse(textBox51.Text);

s3 = int.Parse(textBox61.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox71.Text = ort.ToString();

if (y1 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox71.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox71.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox71.Text = ort.ToString();

}

private void textBox21_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox20.Text);

y2 = int.Parse(textBox21.Text);

y3 = int.Parse(textBox31.Text);

s1 = int.Parse(textBox41.Text);

s2 = int.Parse(textBox51.Text);

s3 = int.Parse(textBox61.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox71.Text = ort.ToString();

if (y2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox71.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox71.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox71.Text = ort.ToString();

}

private void textBox31_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox20.Text);

y2 = int.Parse(textBox21.Text);

y3 = int.Parse(textBox31.Text);

s1 = int.Parse(textBox41.Text);

s2 = int.Parse(textBox51.Text);

s3 = int.Parse(textBox61.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox71.Text = ort.ToString();

if (y3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox71.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox71.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox71.Text = ort.ToString();

}

private void textBox41_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox20.Text);

y2 = int.Parse(textBox21.Text);

y3 = int.Parse(textBox31.Text);

s1 = int.Parse(textBox41.Text);

s2 = int.Parse(textBox51.Text);

s3 = int.Parse(textBox61.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox71.Text = ort.ToString();

if (s1 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox71.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox71.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox71.Text = ort.ToString();

}

private void textBox51_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox20.Text);

y2 = int.Parse(textBox21.Text);

y3 = int.Parse(textBox31.Text);

s1 = int.Parse(textBox41.Text);

s2 = int.Parse(textBox51.Text);

s3 = int.Parse(textBox61.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox71.Text = ort.ToString();

if (s2 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox71.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox71.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox71.Text = ort.ToString();

}

private void textBox61_TextChanged(object sender, EventArgs e)

{

y1 = int.Parse(textBox20.Text);

y2 = int.Parse(textBox21.Text);

y3 = int.Parse(textBox31.Text);

s1 = int.Parse(textBox41.Text);

s2 = int.Parse(textBox51.Text);

s3 = int.Parse(textBox61.Text);

ort = ((y1 + y2 + s1 + s2) / 4);

textBox71.Text = ort.ToString();

if (s3 > 100 )

MessageBox.Show("Notlar 0-100 arasında Girilmelidir");

if (checkBox1.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2) / 5);

textBox71.Text = ort.ToString();

if (checkBox2.Checked == true)

ort = ((y1 + y2 + s1 + s2 + s3) / 5);

textBox71.Text = ort.ToString();

if (checkBox1.Checked == true && checkBox2.Checked == true)

ort = ((y1 + y2 + y3 + s1 + s2 + s3) / 6);

textBox71.Text = ort.ToString();

}

private void textBox80_TextChanged(object sender, EventArgs e)

{

not = 0;

a = 0;

a = int.Parse(textBox80.Text);

if (a <= 24 && a > 0)

not = 0;

if (a <= 44 && a > 24)

not = 1;

if (a <= 54 && a > 44)

not = 2;

if (a <= 69 && a > 54)

not = 3;

if (a <= 84 && a > 69)

not = 4;

if (a <= 100 && a > 84)

not = 5;

switch (not)

{

case 0:

textBox90.Text = "0";

break;

case 1:

textBox90.Text = "1";

break;

case 2:

textBox90.Text = "2";

break;

case 3:

textBox90.Text = "3";

break;

case 4:

textBox90.Text = "4";

break;

case 5:

textBox90.Text = "5";

break;

}

}

private void textBox79_TextChanged(object sender, EventArgs e)

{

not = 0;

a = 0;

a = int.Parse(textBox79.Text);

if (a <= 24 && a > 0)

not = 0;

if (a <= 44 && a > 24)

not = 1;

if (a <= 54 && a > 44)

not = 2;

if (a <= 69 && a > 54)

not = 3;

if (a <= 84 && a > 69)

not = 4;

if (a <= 100 && a > 84)

not = 5;

switch (not)

{

case 0:

textBox89.Text = "0";

break;

case 1:

textBox89.Text = "1";

break;

case 2:

textBox89.Text = "2";

break;

case 3:

textBox89.Text = "3";

break;

case 4:

textBox89.Text = "4";

break;

case 5:

textBox89.Text = "5";

break;

}

}

private void textBox78_TextChanged(object sender, EventArgs e)

{

not = 0;

a = 0;

a = int.Parse(textBox78.Text);

if (a <= 24 && a > 0)

not = 0;

if (a <= 44 && a > 24)

not = 1;

if (a <= 54 && a > 44)

not = 2;

if (a <= 69 && a > 54)

not = 3;

if (a <= 84 && a > 69)

not = 4;

if (a <= 100 && a > 84)

not = 5;

switch (not)

{

case 0:

textBox88.Text = "0";

break;

case 1:

textBox88.Text = "1";

break;

case 2:

textBox88.Text = "2";

break;

case 3:

textBox88.Text = "3";

break;

case 4:

textBox88.Text = "4";

break;

case 5:

textBox88.Text = "5";

break;

}

}

private void textBox77_TextChanged(object sender, EventArgs e)

{

not = 0;

a = 0;

a = int.Parse(textBox77.Text);

if (a <= 24 && a > 0)

not = 0;

if (a <= 44 && a > 24)

not = 1;

if (a <= 54 && a > 44)

not = 2;

if (a <= 69 && a > 54)

not = 3;

if (a <= 84 && a > 69)

not = 4;

if (a <= 100 && a > 84)

not = 5;

switch (not)

{

case 0:

textBox87.Text = "0";

break;

case 1:

textBox87.Text = "1";

break;

case 2:

textBox87.Text = "2";

break;

case 3:

textBox87.Text = "3";

break;

case 4:

textBox87.Text = "4";

break;

case 5:

textBox87.Text = "5";

break;

}

}

private void textBox76_TextChanged(object sender, EventArgs e)

{

not = 0;

a = 0;

a = int.Parse(textBox76.Text);

if (a <= 24 && a > 0)

not = 0;

if (a <= 44 && a > 24)

not = 1;

if (a <= 54 && a > 44)

not = 2;

if (a <= 69 && a > 54)

not = 3;

if (a <= 84 && a > 69)

not = 4;

if (a <= 100 && a > 84)

not = 5;

switch (not)

{

case 0:

textBox86.Text = "0";

break;

case 1:

textBox86.Text = "1";

break;

case 2:

textBox86.Text = "2";

break;

case 3:

textBox86.Text = "3";

break;

case 4:

textBox86.Text = "4";

break;

case 5:

textBox86.Text = "5";

break;

}

}

private void textBox75_TextChanged(object sender, EventArgs e)

{

not = 0;

a = 0;

a = int.Parse(textBox75.Text);

if (a <= 24 && a > 0)

not = 0;

if (a <= 44 && a > 24)

not = 1;

if (a <= 54 && a > 44)

not = 2;

if (a <= 69 && a > 54)

not = 3;

if (a <= 84 && a > 69)

not = 4;

if (a <= 100 && a > 84)

not = 5;

switch (not)

{

case 0:

textBox85.Text = "0";

break;

case 1:

textBox85.Text = "1";

break;

case 2:

textBox85.Text = "2";

break;

case 3:

textBox85.Text = "3";

break;

case 4:

textBox85.Text = "4";

break;

case 5:

textBox85.Text = "5";

break;

}

}

private void textBox74_TextChanged(object sender, EventArgs e)

{

not = 0;

a = 0;

a = int.Parse(textBox74.Text);

if (a <= 24 && a > 0)

not = 0;

if (a <= 44 && a > 24)

not = 1;

if (a <= 54 && a > 44)

not = 2;

if (a <= 69 && a > 54)

not = 3;

if (a <= 84 && a > 69)

not = 4;

if (a <= 100 && a > 84)

not = 5;

switch (not)

{

case 0:

textBox84.Text = "0";

break;

case 1:

textBox84.Text = "1";

break;

case 2:

textBox84.Text = "2";

break;

case 3:

textBox84.Text = "3";

break;

case 4:

textBox84.Text = "4";

break;

case 5:

textBox84.Text = "5";

break;

}

}

private void textBox73_TextChanged(object sender, EventArgs e)

{

not = 0;

a = 0;

a = int.Parse(textBox73.Text);

if (a <= 24 && a > 0)

not = 0;

if (a <= 44 && a > 24)

not = 1;

if (a <= 54 && a > 44)

not = 2;

if (a <= 69 && a > 54)

not = 3;

if (a <= 84 && a > 69)

not = 4;

if (a <= 100 && a > 84)

not = 5;

switch (not)

{

case 0:

textBox83.Text = "0";

break;

case 1:

textBox83.Text = "1";

break;

case 2:

textBox83.Text = "2";

break;

case 3:

textBox83.Text = "3";

break;

case 4:

textBox83.Text = "4";

break;

case 5:

textBox83.Text = "5";

break;

}

}

private void textBox72_TextChanged(object sender, EventArgs e)

{

not = 0;

a = 0;

a = int.Parse(textBox72.Text);

if (a <= 24 && a > 0)

not = 0;

if (a <= 44 && a > 24)

not = 1;

if (a <= 54 && a > 44)

not = 2;

if (a <= 69 && a > 54)

not = 3;

if (a <= 84 && a > 69)

not = 4;

if (a <= 100 && a > 84)

not = 5;

switch (not)

{

case 0:

textBox82.Text = "0";

break;

case 1:

textBox82.Text = "1";

break;

case 2:

textBox82.Text = "2";

break;

case 3:

textBox82.Text = "3";

break;

case 4:

textBox82.Text = "4";

break;

case 5:

textBox82.Text = "5";

break;

}

}

private void textBox71_TextChanged(object sender, EventArgs e)

{

not = 0;

a = 0;

a = int.Parse(textBox71.Text);

if (a <= 24 && a > 0)

not = 0;

if (a <= 44 && a > 24)

not = 1;

if (a <= 54 && a > 44)

not = 2;

if (a <= 69 && a > 54)

not = 3;

if (a <= 84 && a > 69)

not = 4;

if (a <= 100 && a > 84)

not = 5;

switch (not)

{

case 0:

textBox81.Text = "0";

break;

case 1:

textBox81.Text = "1";

break;

case 2:

textBox81.Text = "2";

break;

case 3:

textBox81.Text = "3";

break;

case 4:

textBox81.Text = "4";

break;

case 5:

textBox81.Text = "5";

break;

}

}

private void button1_Click(object sender, EventArgs e)

{

b = "Ümit ünlü".Split(' ');

textBox1.Text = b[0] + b[1].ToUpper();

c  = "Hakan GÜRSOY".Split(' ');

textBox2.Text = c[0] + c[1].ToUpper();

d = "Sergen keleş".Split(' ');

textBox3.Text =d[0] +d[1].ToUpper();

n = "Burak aksu".Split(' ');

textBox4.Text = n[0] + n[1].ToUpper();

f = "Songül yılmaz".Split(' ');

textBox5.Text = f[0] + f[1].ToUpper();

g = "Emrah yeşilırmak".Split(' ');

textBox6.Text = g[0] + g[1].ToUpper();

p = "Elif bekçi".Split(' ');

textBox7.Text = p[0] + p[1].ToUpper();

r= "Yeşim kılıç".Split(' ');

textBox8.Text = r[0] +r[1].ToUpper();

t = "A.Ali kızıldağ".Split(' ');

textBox9.Text = t[0] + t[1].ToUpper();

s = "M.Mesut erdem".Split(' ');

textBox10.Text = s[0] + s[1].ToUpper();

}

private void timer1_Tick(object sender, EventArgs e)

{

if (y == 0)

{

timer1.Enabled = false;

MessageBox.Show("İşlem Süreniz Sona Ermiştir Program Kapatılıyor.");

this.Close();

}

else

y--;

label12.Text = y.ToString()+" Saniye Kaldı" ;

}

}

Projeyi İNDİR

Paylaş :
Tweet
Yorum Yazın | Geri
5 Ocak Salı,2010 Tarihinde Yayınlanmıştır. Bulunduğu Kategori : C#, Görsel Programlama
Etiket: .NET, C#, C#.NET application, C#.NET code, C#.NET codes, C#.NET examples, C#.net kodları, C#.NET lessons, C#.NET practice, csharp net, Mini BİLSA C#.NET (C.NET), nesne tabanlı programlama
« Dijital Saat ile Alarm C# Mini Test C# »
Henüz Yorum Yok.

Yorum Yazın ...

Cevabı İptal
XHTML: Bu Etiketleri Kullanabilirsiniz : <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>
RSS Bu Yazıya Yapılan Yorumlar


Site içi Arama

Takip et: @GorselProgram







Böyle bir web sayfam olsun diyorsanız iletişim bölümünden veya gorselprogram@gmail.com mail adresinden bize ulaşabilirsiniz.

Son Yazılar

  • 2023-2024 öğretim yılı nesne tabanlı programlama dersi 2.dönem 2. yazılı ve uygulama sınav soruları ve cevap anahtarı
  • 2023-2024 öğretim yılı nesne tabanlı programlama dersi 2.dönem 1. yazılı ve uygulama sınav soruları ve cevap anahtarı
  • 2023-2024 öğretim yılı nesne tabanlı programlama dersi 1.dönem 2. yazılı ve uygulama sınav soruları ve cevap anahtarı
  • 2023-2024 öğretim yılı nesne tabanlı programlama dersi 1.dönem 1. yazılı ve uygulama sınav soruları ve cevap anahtarı
  • 2023-2024 öğretim yılı bilgisayar tasarım uygulamaları dersi 1.dönem 1.sınav soruları ve cevap anahtarı

Etiket Bulutu

.NET Application basit C# C#.NET application C#.NET codes C#.NET examples C#.NET lessons C#.NET practice C#.net örnekleri c# console dersleri c# console örnekleri C# ders c# dersleri c# örnek c# örnekleri C.net dersleri c dersleri code console console örnekleri Csharp csharp dersleri csharp net csharp örnekleri c örnekleri download Flash örnekleri forms Forms örnekleri full indir kod kodlar nesne tabanlı programlama OleDbConnection OleDbDataAdapter tam sürüm uygulama vb net win windows windows forms application örnek ücretsiz

Kategoriler

  • Access (59)
  • Akış Diyagramı Flowchart (69)
  • Android Eğitimleri (2)
  • Asp Net (47)
  • C# (834)
  • C# Console (222)
  • Css (19)
  • Dersler (191)
  • Dökümanlar (21)
  • Dreamweaver (12)
  • Excel (8)
  • Fireworks (28)
  • Flash (77)
  • Görsel Programlama (421)
  • GorselProgramlama.Com (8)
  • Html (35)
  • Pascal (2)
  • Photoshop (5)
  • PHP (2)
  • Planlar (114)
  • Programlama Tanım (4)
  • Sınavlar (147)
  • Sql (10)
  • VB 6.0 (45)
  • VB.NET (219)
  • Videolar (65)
  • Word (7)

Arşiv

Bağlantılar

  • Html Dersleri
  • Muslu.NET
  • Programlama Dersleri

Kimler Sitede ?


    Computers Blogs Top programming blogs

   sayaç Powered by WordPress | Theme by NeoEase | Valid XHTML 1.1 and CSS 3 Yukarı