Click here to Skip to main content
15,895,142 members
Home / Discussions / C#
   

C#

 
QuestionHow to get stream from a IP Camera. Pin
Dinker Batra19-Jun-09 5:15
Dinker Batra19-Jun-09 5:15 
AnswerRe: How to get stream from a IP Camera. Pin
EliottA19-Jun-09 7:15
EliottA19-Jun-09 7:15 
QuestionRotating Ellipse in bounded Rectangle Pin
nryk19-Jun-09 4:26
nryk19-Jun-09 4:26 
QuestionProblem with usercontrol and datasource Pin
dreamkill19-Jun-09 4:10
dreamkill19-Jun-09 4:10 
AnswerRe: Problem with usercontrol and datasource Pin
EliottA19-Jun-09 4:30
EliottA19-Jun-09 4:30 
GeneralRe: Problem with usercontrol and datasource Pin
dreamkill19-Jun-09 4:43
dreamkill19-Jun-09 4:43 
GeneralRe: Problem with usercontrol and datasource Pin
EliottA19-Jun-09 4:46
EliottA19-Jun-09 4:46 
GeneralRe: Problem with usercontrol and datasource [modified] Pin
dreamkill19-Jun-09 5:30
dreamkill19-Jun-09 5:30 
this code can help you ?

It's in the designer of my combobox

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);

Generaldrag and drop Pin
Rahul10619-Jun-09 4:01
Rahul10619-Jun-09 4:01 
GeneralRe: drag and drop Pin
benjymous19-Jun-09 4:37
benjymous19-Jun-09 4:37 
GeneralRe: drag and drop Pin
molesworth19-Jun-09 4:44
molesworth19-Jun-09 4:44 
QuestionList to xml Pin
zeeShan anSari19-Jun-09 3:44
zeeShan anSari19-Jun-09 3:44 
AnswerRe: List to xml Pin
harold aptroot19-Jun-09 3:52
harold aptroot19-Jun-09 3:52 
GeneralRe: List to xml Pin
zeeShan anSari19-Jun-09 4:08
zeeShan anSari19-Jun-09 4:08 
GeneralRe: List to xml Pin
harold aptroot19-Jun-09 4:13
harold aptroot19-Jun-09 4:13 
GeneralRe: List to xml Pin
zeeShan anSari19-Jun-09 4:25
zeeShan anSari19-Jun-09 4:25 
GeneralRe: List to xml Pin
harold aptroot19-Jun-09 4:33
harold aptroot19-Jun-09 4:33 
QuestionFile Byte[] Conversion to String for MD5 Hash Generation Pin
JimmyHeaddon19-Jun-09 3:39
JimmyHeaddon19-Jun-09 3:39 
AnswerRe: File Byte[] Conversion to String for MD5 Hash Generation Pin
harold aptroot19-Jun-09 3:45
harold aptroot19-Jun-09 3:45 
AnswerRe: File Byte[] Conversion to String for MD5 Hash Generation [modified] Pin
Mirko198019-Jun-09 4:02
Mirko198019-Jun-09 4:02 
AnswerRe: File Byte[] Conversion to String for MD5 Hash Generation Pin
JimmyHeaddon19-Jun-09 4:27
JimmyHeaddon19-Jun-09 4:27 
AnswerRe: File Byte[] Conversion to String for MD5 Hash Generation Pin
Luc Pattyn19-Jun-09 4:02
sitebuilderLuc Pattyn19-Jun-09 4:02 
Questionconnection string in a file Pin
Adekolurejo19-Jun-09 3:38
Adekolurejo19-Jun-09 3:38 
AnswerRe: connection string in a file Pin
SeMartens19-Jun-09 3:44
SeMartens19-Jun-09 3:44 
AnswerRe: connection string in a file Pin
stancrm19-Jun-09 3:47
stancrm19-Jun-09 3:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.