Проектирование и реализация баз данных и клиентских приложений в среде MS Visual Studio.NET. Макурин Ю.Д - 194 стр.

UptoLike

Составители: 

194
#endregion
private System.Windows.Forms.DataGridView AuthorDataGridView;
private MakurinDatabaseDataSet makurinDatabaseDataSet;
private System.Windows.Forms.BindingSource авторыBindingSource;
private MakurinClientApplication.MakurinDatabaseDataSetTableAdapters.АвторыTableAdapter
авторыTableAdapter;
private System.Windows.Forms.DataGridViewTextBoxColumn
кодАвтораDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn
фамилияАвтораDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn
имяАвтораDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn
отчествоАвтораDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn
датаРожденияDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn
датаСмертиDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn
кодСтраныDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn
местоПроживанияDataGridViewTextBoxColumn;
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace MakurinClientApplication
{
public partial class ProductionForm : Form
{
public ProductionForm()
{
InitializeComponent();
}
private void Form4_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'makurinDatabaseDataSet2.Произведения'
table. You can move, or remove it, as needed.
this.произведенияTableAdapter.Fill(this.makurinDatabaseDataSet2.Произведения);
}
}
      #endregion

    private System.Windows.Forms.DataGridView AuthorDataGridView;
    private MakurinDatabaseDataSet makurinDatabaseDataSet;
    private System.Windows.Forms.BindingSource авторыBindingSource;
    private MakurinClientApplication.MakurinDatabaseDataSetTableAdapters.АвторыTableAdapter
авторыTableAdapter;
    private System.Windows.Forms.DataGridViewTextBoxColumn
кодАвтораDataGridViewTextBoxColumn;
    private System.Windows.Forms.DataGridViewTextBoxColumn
фамилияАвтораDataGridViewTextBoxColumn;
    private System.Windows.Forms.DataGridViewTextBoxColumn
имяАвтораDataGridViewTextBoxColumn;
    private System.Windows.Forms.DataGridViewTextBoxColumn
отчествоАвтораDataGridViewTextBoxColumn;
    private System.Windows.Forms.DataGridViewTextBoxColumn
датаРожденияDataGridViewTextBoxColumn;
    private System.Windows.Forms.DataGridViewTextBoxColumn
датаСмертиDataGridViewTextBoxColumn;
    private System.Windows.Forms.DataGridViewTextBoxColumn
кодСтраныDataGridViewTextBoxColumn;
    private System.Windows.Forms.DataGridViewTextBoxColumn
местоПроживанияDataGridViewTextBoxColumn;
  }
}

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace MakurinClientApplication
{
  public partial class ProductionForm : Form
  {
    public ProductionForm()
    {
       InitializeComponent();
    }

     private void Form4_Load(object sender, EventArgs e)
     {
        // TODO: This line of code loads data into the 'makurinDatabaseDataSet2.Произведения'
table. You can move, or remove it, as needed.
        this.произведенияTableAdapter.Fill(this.makurinDatabaseDataSet2.Произведения);

      }
  }
                                               194