だから、データベースに入力した市外局番を検索したいのです。コードを入力すると、その市外局番の下の電話番号と期間が複数行のテキスト ボックスに出力されると想定されます。これは私がこれまでに持っているものです。はい、私は初心者で下手です:D.
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'phonecallsDataSet1.Calls_with_Region' table. You can move, or remove it, as needed.
this.calls_with_RegionTableAdapter.Fill(this.phonecallsDataSet1.Calls_with_Region);
tbAreaCode.Text = String.Format("Phone Number" + "\t" + "\t" + "Duration" + "\r\n"
+ "============" + "\t" + "\t" + "=======");
}
private void btnSearchAC_Click(object sender, EventArgs e)
{
foreach (DataColumn number in phoneCallbindingSource.List)
{
if (txtAC.Text == ((int)number["Area Code"]))
{
tbAreaCode.Text += ((int)number["Phone Number"]);
}
}
}
}
}
エラー
[] を使用したインデックス付けを System.Data.DataColumn 型の式に適用することはできません