private void ButtonReviewPointLoads_Click(object sender, EventArgs e) { FormAddPointLoads review = new FormAddPointLoads(); review.pDataTable = PointsDataTable; review.RefreshDataSource(); review.Show(); }
private void ButtonPointLoads_Click(object sender, EventArgs e) { FormAddPointLoads points = new FormAddPointLoads(); points.pLoadCaseTable = LoadCasesDataTable; if (points.ShowDialog() == DialogResult.OK) { this.PointsDataTable = points.pDataTable; this.CheckBoxPointsLoaded.Checked = true; } else { } }