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:
01170630
Views:
13
Hi Paul.. thanks for your reply.

Thats exactly what I want.
One more question...
If I wanted to cycle through each of these text boxes and say assign a caption to each of them,is that possible ?

regards

Gerard

>>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;
>}
>
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform