1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
| private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.licenceDataSet = new test_datasource.licenceDataSet();
this.companyBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.companyTableAdapter = new test_datasource.licenceDataSetTableAdapters.companyTableAdapter();
this.licenceDataSet1 = new test_datasource.licenceDataSet1();
this.companyBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.companyTableAdapter1 = new test_datasource.licenceDataSet1TableAdapters.companyTableAdapter();
((System.ComponentModel.ISupportInitialize)(this.licenceDataSet)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.companyBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.licenceDataSet1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.companyBindingSource1)).BeginInit();
this.SuspendLayout();
//
// comboBox1
//
this.comboBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.companyBindingSource, "nom", true));
this.comboBox1.DataSource = this.companyBindingSource1;
this.comboBox1.DisplayMember = "nom";
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Location = new System.Drawing.Point(28, 24);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(121, 21);
this.comboBox1.TabIndex = 0;
this.comboBox1.ValueMember = "cid";
//
// licenceDataSet
//
this.licenceDataSet.DataSetName = "licenceDataSet";
this.licenceDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// companyBindingSource
//
this.companyBindingSource.DataMember = "company";
this.companyBindingSource.DataSource = this.licenceDataSet;
//
// companyTableAdapter
//
this.companyTableAdapter.ClearBeforeFill = true;
//
// licenceDataSet1
//
this.licenceDataSet1.DataSetName = "licenceDataSet1";
this.licenceDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// companyBindingSource1
//
this.companyBindingSource1.DataMember = "company";
this.companyBindingSource1.DataSource = this.licenceDataSet1;
//
// companyTableAdapter1
//
this.companyTableAdapter1.ClearBeforeFill = true;
//
// combo
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.comboBox1);
this.DataBindings.Add(new System.Windows.Forms.Binding("Tag", this.companyBindingSource, "nom", true, System.Windows.Forms.DataSourceUpdateMode.Never));
this.Name = "combo";
((System.ComponentModel.ISupportInitialize)(this.licenceDataSet)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.companyBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.licenceDataSet1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.companyBindingSource1)).EndInit();
this.ResumeLayout(false); |
Partager