Re: 100 Labels
- From: Jon Skeet [C# MVP] <skeet@xxxxxxxxx>
- Date: Tue, 31 May 2005 11:13:46 +0100
David de Passos <passos@xxxxxxxxx> wrote:
> I have 100 Labels and I need to put in text property a value but I don't
> want to write 100 lines of code, like something like that:
>
> for i=1 to 100
> xrLabel(i).Text= i
> next
>
> How can do that?
Create an array of labels instead. You won't be able to do it in the
designer, but it's trivial to do in code.
--
Jon Skeet - <skeet@xxxxxxxxx>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
.
Relevant Pages
- Re: Raise event inside a thread
... using monitors or a ManualResetEvent. ... Jon Skeet - ... If replying to the group, please do not mail me too ... Prev by Date: ... (microsoft.public.dotnet.languages.csharp) - Re: get the actual size of a file
... saying for certain either way:) ... Jon Skeet - ... If replying to the group, please do not mail me too ... Prev by Date: ... (microsoft.public.dotnet.languages.csharp) - Re: Threading/Locking
... Then you stash the data in an ordered list which is then processed by ... Jon Skeet - ... If replying to the group, please do not mail me too ... Prev by Date: ... (microsoft.public.dotnet.languages.csharp) - Re: How to trigger other thread
... updates are "seen" or not. ... Jon Skeet - ... If replying to the group, please do not mail me too ... Prev by Date: ... (microsoft.public.dotnet.framework.windowsforms) - Re: MemoryStream.Write() Offset cannot be zero
... a file - it's just like that, except it all stays in memory. ... Jon Skeet - ... If replying to the group, please do not mail me too ... Prev by Date: ... (microsoft.public.dotnet.framework) |
|