値を保存/渡したいときは、常に .Tag プロパティを使用します。たとえば、値を保存する場合:
Form prosesEdit = new FormProsesChemicalRawWbEdit();
prosesEdit.Tag = (int)this.proses_chemicalDataGridView.Rows[e.RowIndex].Cells[1].Value;
prosesEdit.ShowDialog();
次に、次のように値を EDIT フォームに渡します。
proses_chemical_id = (int) this.Tag;
this.proses_chemicalTableAdapter.FillByChemId(this.mcd_softwareDataSet.proses_chemical, proses_chemical_id);
this.proses_chemical_listTableAdapter.FillByChemId(this.mcd_softwareDataSet.proses_chemical_list, proses_chemical_id);
しかし最近、2つの異なる値を保存して渡すことになっていました。言ってみましょう(int)this.proses_chemicalDataGridView1.Rows[e.RowIndex].Cells[1].Value;
、(int)this.proses_chemicalDataGridView2.Rows[e.RowIndex].Cells[1].Value;
どうすれば正確にそれを行うことができますか?ありがとう