Re: Add ComboBoxes in runtime based on user input, how?
- From: svein.erik.storkas@xxxxxxxxx
- Date: 27 Oct 2006 07:52:04 -0700
When I use this code, no comboboxes appear..I have now decleared the
cboTeam variable as a public variable
for (int i = 0; i < numberOfTeams; i++)
{
cboTeam = new ComboBox();
this.tabNewCup.Controls.Add(cboTeam);
cboTeam.FormattingEnabled = true;
cboTeam.Location = new System.Drawing.Point(220, 424);
cboTeam.Name = "cboTeam" + i.ToString();
cboTeam.Size = new System.Drawing.Size(121, 21);
cboTeam.TabIndex = 0;
cboTeam.Visible = true;
}
.
- References:
- Add ComboBoxes in runtime based on user input, how?
- From: svein . erik . storkas
- Re: Add ComboBoxes in runtime based on user input, how?
- From: Marc Gravell
- Re: Add ComboBoxes in runtime based on user input, how?
- From: svein . erik . storkas
- Add ComboBoxes in runtime based on user input, how?
- Prev by Date: Re: Efficiency about hashtable, arraylist, string and synchronization
- Next by Date: deserialize and utf8 encoding
- Previous by thread: Re: Add ComboBoxes in runtime based on user input, how?
- Next by thread: Re: Add ComboBoxes in runtime based on user input, how?
- Index(es):