Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.88 KB | None | 0 0
  1.         private void MainProgram_Load(object sender, EventArgs e)
  2.         {
  3.             // TODO: This line of code loads data into the 'farmingDataSet.Field' table. You can move, or remove it, as needed.
  4.             this.fieldTableAdapter.Fill(this.farmingDataSet.Field);
  5.             // TODO: This line of code loads data into the 'farmingDataSet.Staff' table. You can move, or remove it, as needed.
  6.             this.staffTableAdapter.Fill(this.farmingDataSet.Staff);
  7.             // TODO: This line of code loads data into the 'farmingDataSet.Fertilizer' table. You can move, or remove it, as needed.
  8.             this.fertilizerTableAdapter.Fill(this.farmingDataSet.Fertilizer);
  9.             // TODO: This line of code loads data into the 'farmingDataSet.Crop' table. You can move, or remove it, as needed.
  10.             this.cropTableAdapter.Fill(this.farmingDataSet.Crop);
  11.            
  12.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement