最後の質問で助けてくれたすべての人に感謝します。しかし今、私はMSアクセスへのsaveimageである別のステートメントに問題があります。まずお聞きしたいのですが、ms access データベースの場合、データ型は添付ファイルを入れるべきですか?
私のコード:
private void button2_Click(object sender, EventArgs e)
{
OleDbCommand cmd = new OleDbCommand();
cmd.CommandType = CommandType.Text;
cmd.CommandText = "insert into Table1 (id,picture) values ('" + textBox1.Text + "')";
cmd.Connection = con;
con.Open();
cmd.ExecuteNonQuery();
System.Windows.Forms.MessageBox.Show("Created", "Caption", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);
con.Close();
}
openFIledialog を使用して、自分の写真をピクチャ ボックスに挿入します。