using System.Data.OleDb;
using System.IO;
namespace WindowsFormsApplication7
{
public partial class Form1 : Form
{
private OleDbConnection connection = new OleDbConnection();
OleDbDataAdapter dAdapter;
OleDbCommandBuilder cBuilder;
DataTable dTable = new DataTable();
BindingSource bSource;
private string ID;
public Form1()
{
InitializeComponent();
connection = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\student\Desktop\WindowsFormsApplication7\WindowsFormsApplication7\bin\Debug\test1.mdb");
}
private void Form1_Load(object sender, EventArgs e)
{
dAdapter = new OleDbDataAdapter("select * from person where 識別碼 ", connection);
cBuilder = new OleDbCommandBuilder(dAdapter);
dAdapter.Fill(dTable);
bSource = new BindingSource();
bSource.DataSource = dTable;
dataGridView1.DataSource = bSource;
}
private void button1_Click(object sender, EventArgs e)
{
connection.Open();
OleDbCommand command2 = new OleDbCommand();
command2.Connection = connection;
command2.CommandText = "insert into person (name,stu_no,tel,sex) values('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','" + textBox4.Text + "')";
command2.ExecuteNonQuery();
dAdapter.Fill(dTable);
connection.Close();
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex == 0)
{
try
{
var Value = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value;
Value = dataGridView1.Rows[e.RowIndex].Cells["name"].Value;
connection.Open();
OleDbCommand command = new OleDbCommand();
command.Connection = connection;
string query = "select* from person where name='" + Value.ToString() + "'";
command.CommandText = query;
OleDbDataReader reader = command.ExecuteReader();
while (reader.Read())
{
ID = reader["識別碼"].ToString();
textBox1.Text = reader["name"].ToString();
textBox2.Text = reader["stu_no"].ToString();
textBox3.Text = reader["tel"].ToString();
textBox4.Text = reader["sex"].ToString();
}
connection.Close();
}
catch (Exception ex)
{
MessageBox.Show("ERROR" + ex);
}
}
else if (e.ColumnIndex == 1)
{
if (MessageBox.Show("確定刪除此筆資料?", "刪除資料", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
try
{
var Value = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value;
Value = dataGridView1.Rows[e.RowIndex].Cells["name"].Value;
connection.Open();
OleDbCommand command = new OleDbCommand();
command.Connection = connection;
command.CommandText = "delete from person WHERE name = '" + Value.ToString() + "'";
command.ExecuteNonQuery();
dTable.Clear();
dAdapter.Fill(dTable);
connection.Close();
MessageBox.Show("刪除成功");
}
catch (Exception ex)
{
MessageBox.Show("ERROR" + ex);
}
}
}
}
private void button2_Click(object sender, EventArgs e)
{
dTable.Clear();
connection.Open();
OleDbCommand command = new OleDbCommand();
command.Connection = connection;
command.CommandText = "UPDATE person SET name = '" + textBox1.Text + "'WHERE 識別碼 = " + ID ;
command.ExecuteNonQuery();
dAdapter.Fill(dTable);
}
}
}
物件導向 C Sharp
2015年12月25日 星期五
2015年12月11日 星期五
基本資料 成績 關聯 文字方塊
public partial class Form1 : Form
{
int[] array = new int[4];
public Form1()
{
InitializeComponent();
textBox1.DataBindings.Add("Text", bindingSource3, "name", true);
textBox2.DataBindings.Add("Text", bindingSource3, "math", true);
array[0] = 0;
array[1] = 0;
array[2] = 0;
array[3] = 0;
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: 這行程式碼會將資料載入 'db1DataSet.DataTable1' 資料表。您可以視需要進行移動或移除。
this.dataTable1TableAdapter.Fill(this.db1DataSet.DataTable1);
// TODO: 這行程式碼會將資料載入 'db1DataSet.record' 資料表。您可以視需要進行移動或移除。
this.recordTableAdapter.Fill(this.db1DataSet.record);
// TODO: 這行程式碼會將資料載入 'db1DataSet.person' 資料表。您可以視需要進行移動或移除。
this.personTableAdapter.Fill(this.db1DataSet.person);
}
private void button1_Click(object sender, EventArgs e)
{
bindingSource3.MovePrevious();
}
private void button2_Click(object sender, EventArgs e)
{
bindingSource3.MoveNext();
}
private void button3_Click(object sender, EventArgs e)
{
float sum1 = 0;
float bn;
float a;
for (int i = 0; i < 3; i++)
{
array[i] = Int32.Parse(textBox2.Text);
bindingSource3.MoveNext();
}
for (int i = 0; i < 3; i++)
{
sum1 = sum1+array[i];
}
bn = bindingSource3.Count;
a = sum1 / bn;
textBox3.Text = a.ToString();
}
}
}
{
int[] array = new int[4];
public Form1()
{
InitializeComponent();
textBox1.DataBindings.Add("Text", bindingSource3, "name", true);
textBox2.DataBindings.Add("Text", bindingSource3, "math", true);
array[0] = 0;
array[1] = 0;
array[2] = 0;
array[3] = 0;
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: 這行程式碼會將資料載入 'db1DataSet.DataTable1' 資料表。您可以視需要進行移動或移除。
this.dataTable1TableAdapter.Fill(this.db1DataSet.DataTable1);
// TODO: 這行程式碼會將資料載入 'db1DataSet.record' 資料表。您可以視需要進行移動或移除。
this.recordTableAdapter.Fill(this.db1DataSet.record);
// TODO: 這行程式碼會將資料載入 'db1DataSet.person' 資料表。您可以視需要進行移動或移除。
this.personTableAdapter.Fill(this.db1DataSet.person);
}
private void button1_Click(object sender, EventArgs e)
{
bindingSource3.MovePrevious();
}
private void button2_Click(object sender, EventArgs e)
{
bindingSource3.MoveNext();
}
private void button3_Click(object sender, EventArgs e)
{
float sum1 = 0;
float bn;
float a;
for (int i = 0; i < 3; i++)
{
array[i] = Int32.Parse(textBox2.Text);
bindingSource3.MoveNext();
}
for (int i = 0; i < 3; i++)
{
sum1 = sum1+array[i];
}
bn = bindingSource3.Count;
a = sum1 / bn;
textBox3.Text = a.ToString();
}
}
}
2015年11月19日 星期四
2015年11月5日 星期四
簡易計算機
public partial class Form1 : Form
{
int a, b,c;
float x, y, z;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
a = Convert.ToInt32(textBox1.Text);
a = int.Parse(textBox1.Text);
b = Convert.ToInt32(textBox2.Text);
b = int.Parse(textBox2.Text);
c = a + b;
label2.Text = c.ToString();
}
private void button2_Click(object sender, EventArgs e)
{
a = Convert.ToInt32(textBox1.Text);
a = int.Parse(textBox1.Text);
b = Convert.ToInt32(textBox2.Text);
b = int.Parse(textBox2.Text);
c = a - b;
label2.Text = c.ToString();
}
private void button3_Click(object sender, EventArgs e)
{
a = Convert.ToInt32(textBox1.Text);
a = int.Parse(textBox1.Text);
b = Convert.ToInt32(textBox2.Text);
b = int.Parse(textBox2.Text);
c = a * b;
label2.Text = c.ToString();
}
private void button4_Click(object sender, EventArgs e)
{
x = Convert.ToInt32(textBox1.Text);
x = float.Parse(textBox1.Text);
y = Convert.ToInt32(textBox2.Text);
y = float.Parse(textBox2.Text);
z = x / y;
label2.Text = z.ToString();
if (b == 0)
{
label2.Text=("除術不可為0");
}
}
}
}
2015年10月30日 星期五
產生隨機亂數不重複
public partial class Form1 : Form
{
Random rand = new Random();
Button[,] Buttons = new System.Windows.Forms.Button[5, 5];
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
for (int i = 1; i < 5; i++)
{
for (int j = 1; j < 5; j++)
{
Buttons[i, j] = new Button();
Buttons[i, j].Size = new Size(50, 50);
Buttons[i, j].Location = new Point(i * 50, j * 50);
this.Controls.Add(Buttons[i, j]);//出現在畫面中
}
}
}
private void button1_Click(object sender, EventArgs e)
{
int x, y, a;
int[] myarray = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
for (int i = 15; i > 1; i--)
{
x = rand.Next(0, i);
y = myarray[x];
myarray[x] = myarray[i];
myarray[i] = y;
}
for (int j = 1; j < 5; j++)
{
for (int i = 1; i < 5; i++)
{
a = myarray[(j - 1) * 4 + (i - 1)];
Buttons[i, j].Text = Convert.ToString(a);
this.Controls.Add(Buttons[i, j]);
}
}
}
}
}
產生排序數列
public partial class Form1 : Form
{
Button[,] Buttons = new System.Windows.Forms.Button[5, 5];
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
for (int i = 1; i < 5; i++)
{
for (int j = 1; j < 5; j++)
{
Buttons[i, j] = new Button();
Buttons[i, j].Size = new Size(50, 50);
Buttons[i, j].Location = new Point(i * 50, j * 50);
this.Controls.Add(Buttons[i, j]);//出現在畫面中
}
}
}
private void button1_Click(object sender, EventArgs e)
{
int pro=1;
for (int i = 1; i < 5; i++)
{
for (int j = 1; j < 5; j++)
{
pro = (i - 1) + (j - 1)*4;
Buttons[i, j].Text = pro.ToString();
}
}
}
}
}
2015年10月23日 星期五
推數字遊戲
public partial class Form1 : Form
{
int rndmoney1 = 100, rndmoney2 = 100, rndmoney3 = 100, rndmoney4 = 100, rndmoney5 = 100;
int rndmoney6 = 100, rndmoney7 = 100, rndmoney8 = 100, rndmoney9 = 100;
public Form1()
{
InitializeComponent();
button1.Enabled = false;
button2.Enabled = false;
button3.Enabled = false;
button4.Enabled = false;
button5.Enabled = false;
button6.Enabled = false;
button7.Enabled = false;
button8.Enabled = false;
button9.Enabled = false;
}
private void button10_Click(object sender, EventArgs e)
{
Random rnd = new Random();
rndmoney1 = rnd.Next(0, 9);
rndmoney2 = rnd.Next(0, 9);
rndmoney3 = rnd.Next(0, 9);
rndmoney4 = rnd.Next(0, 9);
rndmoney5 = rnd.Next(0, 9);
rndmoney6 = rnd.Next(0, 9);
rndmoney7 = rnd.Next(0, 9);
rndmoney8 = rnd.Next(0, 9);
rndmoney9 = rnd.Next(0, 9);
button1.Text = rndmoney1.ToString();
button2.Text = rndmoney2.ToString();
button3.Text = rndmoney3.ToString();
while(rndmoney1 == rndmoney2)
{
rndmoney2 = rnd.Next(0, 9);
button2.Text = rndmoney2.ToString();
}
while (rndmoney3 == rndmoney2 || rndmoney3==rndmoney1)
{
rndmoney3 = rnd.Next(0, 9);
button3.Text = rndmoney3.ToString();
}
while (rndmoney4 == rndmoney1 || rndmoney4==rndmoney2 || rndmoney4==rndmoney3)
{
rndmoney4 = rnd.Next(0, 9);
button4.Text = rndmoney4.ToString();
}
while (rndmoney5 == rndmoney1 || rndmoney5 == rndmoney2 || rndmoney5 == rndmoney3 || rndmoney5==rndmoney4)
{
rndmoney5 = rnd.Next(0, 9);
button5.Text = rndmoney5.ToString();
}
while (rndmoney6 == rndmoney1 || rndmoney6 == rndmoney2 || rndmoney6 == rndmoney3 || rndmoney6 == rndmoney4 || rndmoney6==rndmoney5)
{
rndmoney6 = rnd.Next(0, 9);
button6.Text = rndmoney6.ToString();
}
while (rndmoney7 == rndmoney1 || rndmoney7 == rndmoney2 || rndmoney7 == rndmoney3 || rndmoney7 == rndmoney4 || rndmoney7 == rndmoney5 || rndmoney7==rndmoney6)
{
rndmoney7 = rnd.Next(0, 9);
button7.Text = rndmoney7.ToString();
}
while (rndmoney8 == rndmoney1 || rndmoney8 == rndmoney2 || rndmoney8 == rndmoney3 || rndmoney8 == rndmoney4 || rndmoney8 == rndmoney5 || rndmoney8 == rndmoney6 || rndmoney8==rndmoney7)
{
rndmoney8 = rnd.Next(0, 9);
button8.Text = rndmoney8.ToString();
}
while (rndmoney9 == rndmoney1 || rndmoney9 == rndmoney2 || rndmoney9 == rndmoney3 || rndmoney9 == rndmoney4 || rndmoney9 == rndmoney5 || rndmoney9 == rndmoney6 || rndmoney9 == rndmoney7 || rndmoney9==rndmoney8)
{
rndmoney9 = rnd.Next(0, 9);
button9.Text = rndmoney9.ToString();
}
button4.Text = rndmoney4.ToString();
button5.Text = rndmoney5.ToString();
button6.Text = rndmoney6.ToString();
button7.Text = rndmoney7.ToString();
button8.Text = rndmoney8.ToString();
button9.Text = rndmoney9.ToString();
//button10.Enabled = false;
}
}
}
訂閱:
文章 (Atom)