01.
namespace
WindowsFormsApplication1
02.
{
03.
public
partial
class
Form1 : Form
04.
{
05.
private
TextBox[] _txtRuntime ;
06.
public
Form1()
07.
{
08.
InitializeComponent();
09.
_txtRuntime =
new
TextBox[10];
10.
for
(
int
i = 0; i <= 9; ++i)
11.
{
12.
_txtRuntime[i] =
new
TextBox();
13.
_txtRuntime[i].Text =
" Hello ThaiCreate.Com : "
+ i.ToString();
14.
_txtRuntime[i].Tag = i;
15.
_txtRuntime[i].Top = ((_txtRuntime[i].Height + 5) * i);
16.
_txtRuntime[i].Width = 200;
17.
this
.Controls.Add(_txtRuntime[i]);
18.
}
19.
}
20.
}
21.
}