コード例 #1
0
ファイル: MainForm.cs プロジェクト: Borrowyou/Carshop
        private void MainForm_Load(object sender, EventArgs e)
        {
            // TODO: This line of code loads data into the 'carShopDataSet.Models' table. You can move, or remove it, as needed.
               this.carsTableAdapter.Fill(this.carShopDataSet.Cars);
               this.modelsTableAdapter.Fill(this.carShopDataSet.Models);

            DSCars = new CarShopDataSet();
        }
コード例 #2
0
ファイル: CategorySearcher.cs プロジェクト: Borrowyou/Carshop
 public CategorySearcher()
 {
     this.wbTest = new WebBrowser();
     this.DSCarShop = new CarShopDataSet();
     this.DSCarShop.InitAdapters();
 }
コード例 #3
0
ファイル: ModelSearcher.cs プロジェクト: Borrowyou/Carshop
  public ModelSearcher()
 {
     this.wbTest = new WebBrowser();
     this.DSCarShop = new CarShopDataSet();
 }