cscの作法 その65
1383 ワード
概要
cscの作法、調べてみた。
データグリッドビューやってみた。
写真
コンパイル手順
>csc dgv.cs /platform:x86
サンプルコード
using System;
using System.Windows.Forms;
using System.Drawing;
using System.Data.OleDb;
using System.Data;
class form1: Form {
form1() {
Text = "DataGridView";
ClientSize = new Size(400, 300);
DataGridView gd0 = new DataGridView();
gd0.Location = new Point(50, 20);
Controls.AddRange(new Control[] {
gd0
});
OleDbConnection con = new OleDbConnection();
con.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=mydb.mdb;";
con.Open();
OleDbDataAdapter oda = new OleDbDataAdapter("SELECT * FROM blog_data;", con);
DataTable dt = new DataTable();
oda.Fill(dt);
gd0.DataSource = dt;
con.Close();
}
[STAThread]
public static void Main() {
Application.Run(new form1());
}
}
>csc dgv.cs /platform:x86
using System;
using System.Windows.Forms;
using System.Drawing;
using System.Data.OleDb;
using System.Data;
class form1: Form {
form1() {
Text = "DataGridView";
ClientSize = new Size(400, 300);
DataGridView gd0 = new DataGridView();
gd0.Location = new Point(50, 20);
Controls.AddRange(new Control[] {
gd0
});
OleDbConnection con = new OleDbConnection();
con.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=mydb.mdb;";
con.Open();
OleDbDataAdapter oda = new OleDbDataAdapter("SELECT * FROM blog_data;", con);
DataTable dt = new DataTable();
oda.Fill(dt);
gd0.DataSource = dt;
con.Close();
}
[STAThread]
public static void Main() {
Application.Run(new form1());
}
}
以上。
Author And Source
この問題について(cscの作法 その65), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/d859792f19207cfa9c7e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .