C Board  

Go Back   C Board > General Programming Boards > C# Programming

Reply
 
LinkBack Thread Tools Display Modes
Old 05-13-2005, 08:51 PM   #1
pug
Registered User
 
Join Date: May 2005
Posts: 3
Control array

hello every1

i seem to be having problems adding Control arrays to a Panel. this is how i am doing it,

Code:
Label[] la = new Label[5];
la[0].Text = "label text";
Panel1.Controls.Add(la[0]);
now this compiles fine, but i get an error on runtime. any1 know what im doing wrong?

thanks for your help.
pug is offline   Reply With Quote
Old 05-13-2005, 11:36 PM   #2
Banned
 
nickname_changed's Avatar
 
Join Date: Feb 2003
Location: Australia
Posts: 986
You've allocated space for a new array, but you haven't actually allocated space for each item in the array. Try this:

Code:
Label[] labels = new Label[5];
labels[0] = new Label();
labels[0].Text = "Label 1!";
labels[1] = new Label();
labels[1].Text = "Label 2!";
labels[2] = new Label();
labels[2].Text = "Label 3!";

Panel1.Controls.AddRange(labels);
nickname_changed is offline   Reply With Quote
Old 05-13-2005, 11:39 PM   #3
pug
Registered User
 
Join Date: May 2005
Posts: 3
thanks for your reply, got it to work perfect
pug is offline   Reply With Quote
Old 05-13-2005, 11:41 PM   #4
Banned
 
nickname_changed's Avatar
 
Join Date: Feb 2003
Location: Australia
Posts: 986
You're welcome

















My bill will be in the post.
nickname_changed is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
from 2D array to 1D array cfdprogrammer C Programming 17 03-24-2009 10:33 AM
Personal Program that is making me go wtf? Submeg C Programming 20 06-27-2006 12:13 AM
Unknown Memory Leak in Init() Function CodeHacker Windows Programming 3 07-09-2004 09:54 AM
Quick question about SIGSEGV Cikotic C Programming 30 07-01-2004 07:48 PM
Array Program emmx C Programming 3 08-31-2003 12:44 AM


All times are GMT -6. The time now is 10:40 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22