Merhaba Arkadaşlar Bugün Anket Programını paylaşacağım.İster kodları düzenleyip başka bir anket yapın isterseniz bu şekilde kullanın.Anket cinsiyet ile bir ankettir.Alttaki Linkten indirebilirsiniz veya kodları ile yapabilirsiniz.
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;
////////////////////////////////////////////
///////////////////////////////////////////
///////////////DBA SOFTWARE///////////////
////////wwww.dbasoft.blogspot.com////////
////////////////////////////////////////
///////////////////////////////////////
namespace anket_programı_dbasoft
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
int kiz, erkek, toplam;
double kiz2, erkek2;
private void btnOy_Click(object sender, EventArgs e)
{
if (rbKiz.Checked == true)
{
kiz++;
kiz2++;
toplam++;
}
if (rbErkek.Checked == true)
{
erkek++;
erkek2++;
toplam++;
}
lblKizOy.Text = kiz.ToString() + " Oy almıştır.";
lblKizYuzde.Text="% "+Math.Round(((100*kiz2)/toplam),1);
lblErkekOy.Text = erkek.ToString() + " Oy almıştır.";
lblErkekYuzde.Text = "% " + Math.Round(((100 * erkek2) / toplam), 1);
prgKiz.Value = ((100 * kiz) / toplam);
prgErkek.Value = ((100 * erkek) / toplam);
}
private void btnSonuc_Click(object sender, EventArgs e)
{
gbSonuc.Visible = true;
}
private void Form1_Load(object sender, EventArgs e)
{
gbSonuc.Visible = false;
}
}
}
Rar Şifresi:www.dbasoft.blogspot.com
Hiç yorum yok :
Yorum Gönder