ですから、関連する列を介してDataTablesを関連付けていることを認識しています...少し問題がありますが。
例:
親テーブル-Customers ->{customerName、customerCode(PK)、telphoneCell、...など}
子テーブル-注文->{customerCode、orderCode(PK)dateStart、dateEnd、...など}
今...
孫テーブル-ManufacturingSheet ->{panelNumber、panelWidth、panelHeight、...など}
また、ユーザー入力から計算したボルトやナットなどの部品の量を表示するテキストボックスもいくつかあります。
では、このフォーム全体を1人の顧客による注文に保存するにはどうすればよいですか?顧客名、コード、日付の詳細などもこのフォームに表示されます。
texboxをOrdersテーブルにリンクできる場合でも、フォームの残りの部分にどのようにリンクしますか?
データベースに保存したいすべてのグリッドとテキストボックスを表示するコードは次のとおりです。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace PalisadeWorld
{
public partial class ManufacturingSheet : Form
{
public ManufacturingSheet()
{
InitializeComponent();
}
//all the calculated sizes, and parts
public string[] dis_Width { get; set; }
public string[] dis_Height { get; set; }
public string[] dis_Comments { get; set; }
public int[] dis_PaleQty { get; set; }
public int[] dis_Blocks { get; set; }
public int dis_num { get; set; }
//Method to Convert a string array to int array
private int[] ConvertArray(string[] s, int rows)
{
int[] intArray = new int[rows];
for (int x = 0; x < rows; x++)
{
intArray[x] = Convert.ToInt32(s[x]);
}
return intArray;
}
//Methods returning other parts calculated with sizes above
private int GetTotalBearers(string[] bearers, int rows)
{
int i;
int totalBearers = 0;
int[] temp = ConvertArray(bearers, rows);
for (i = 0; i < rows; i++)
{
if (temp[i] >= 2200)
{
totalBearers += 6;
}
else totalBearers += 4;
}
return totalBearers;
}
private int GetTotalPales(int[] pales, int rows)
{
int i;
int totalPales = 0;
for (i = 0; i < rows; i++)
{
totalPales += pales[i];
}
return totalPales;
}
private int GetTotalBoltsNutsBrackest(int[] pales, int rows)
{
int totalBolts = GetTotalPales(pales, rows) + (rows * 4);
return totalBolts;
}
private void ManufacturingSheet_Load(object sender, EventArgs e)
{
//displaying number of respective parts
numBearers.Text = string.Format("{0}", GetTotalBearers(dis_Height, dis_num));
numPales.Text = string.Format("{0}", GetTotalPales(dis_PaleQty, dis_num));
numBrackets.Text = numBearers.Text;
numBoltsNutsWashers.Text = string.Format("{0}", GetTotalBoltsNutsBrackest(dis_PaleQty, dis_num));
int i;
int no = 0;
//displaying sizes etc in DataGrid
for(i = 0; i < dis_num; i++)
{
// Create a new row.
PalisadeWorldDatabaseDataSet.ManufacturingSheetRow newOutputRow;
newOutputRow = palisadeWorldDatabaseDataSet1.ManufacturingSheet.NewManufacturingSheetRow();
newOutputRow.no = ++no ;
newOutputRow.cutSize = string.Format("{0}", dis_Width[i]);
newOutputRow.block = string.Format("{0}", dis_Blocks[i]);
newOutputRow.height = string.Format("{0}", dis_Height[i]);
newOutputRow.palesQty = string.Format("{0}", dis_PaleQty[i]);
newOutputRow.comments = string.Format("{0}", dis_Comments[i]);
// Add the row to the Region table
this.palisadeWorldDatabaseDataSet1.ManufacturingSheet.Rows.Add(newOutputRow);
// Save the new row to the database
this.manufacturingSheetTableAdapter.Update(this.palisadeWorldDatabaseDataSet1.ManufacturingSheet);
this.manufacturingSheetTableAdapter.Fill(this.palisadeWorldDatabaseDataSet1.ManufacturingSheet);
}
}
}
}