Mega Code Archive

 
Categories / C# / ADO Database
 

Bind String array to a TextBox

using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data;     public class Form1 : System.Windows.Forms.Form {       private System.Windows.Forms.TextBox textBox1;       private System.ComponentModel.Container components = null;       public Form1() {         InitializeComponent();       }       private void InitializeComponent(){          this.textBox1 = new System.Windows.Forms.TextBox();          this.SuspendLayout();          this.textBox1.Location = new System.Drawing.Point(16, 8);          this.textBox1.Name = "textBox1";          this.textBox1.Size = new System.Drawing.Size(144, 20);          this.textBox1.TabIndex = 0;          this.textBox1.Text = "textBox1";          this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);          this.ClientSize = new System.Drawing.Size(176, 36);          this.Controls.Add(this.textBox1);          this.Name = "Form1";          this.Text = "Form1";          this.Load += new System.EventHandler(this.Form1_Load);          this.ResumeLayout(false);       }         static void Main() {             Application.Run(new Form1());       }       private void Form1_Load(object sender, System.EventArgs e) {          String[] names = new String[] {"A", "B", "C", "D", "E"};          textBox1.DataBindings.Add("text", names, null);       }     }