Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Anybody on for translating VFP to C#
Message
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
01170530
Message ID:
01170556
Views:
11
>Hi
>I have a piece of code which programatically makes a few controls
>I want to replicate this in C#
>
>FOR i= 1 TO 20
> lcTxt = 'txt' + STRTRAN(STR(i,2),' ','0')
> WAIT WINDOW lcTxt
> x= lctxt + " = CREATEOBJECT('textbox')"
> &x
>ENDFOR
>
>(This just makes 20 texbox controls txt01, txt02,txt03.....txt20
>
>Thanks in advance
>Gerard
int x = 20;
int y = 50;

for (int i = 0; i < 20; i++)
{
   TextBox txtbox = new System.Windows.Forms.TextBox();
   txtbox.Name = "txt" + i.ToString();
   txtbox.Text = txtbox.Name;
   txtbox.Location = new Point(x, y);

   this.Controls.Add(txtbox);

   y += txtbox.Height + 2;
}
-Paul

RCS Solutions, Inc.
Blog
Twitter
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform