473,386 Members | 1,886 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Object reference not set with Array of ImageButtons

ImageButton[] ship;
ship = new ImageButton[5];

for (int i=0; i<5; i++)
{
ship[i].ImageUrl = pathofImage;
ship[i].ID = "ShipNo" + i.ToString();
ship[i].Click += new ImageClickEventHandler(this.ImageBtn_Click);
this.Form1.Controls.Add(ship[i]);
}
I have this peace of code on the start page... and is giving me an
error "Object reference not set to an instance of an object"... I
cannot see what I'm doing wrong. the Array seems good

Any Help?
Thanks

Dec 18 '05 #1
5 6434
"Varangian" <of****@gmail.com> a écrit dans le message de news:
11**********************@o13g2000cwo.googlegroups. com...

| ImageButton[] ship;
| ship = new ImageButton[5];
|
| for (int i=0; i<5; i++)
| {
| ship[i].ImageUrl = pathofImage;
| ship[i].ID = "ShipNo" + i.ToString();
| ship[i].Click += new ImageClickEventHandler(this.ImageBtn_Click);
| this.Form1.Controls.Add(ship[i]);
| }
|
|
| I have this peace of code on the start page... and is giving me an
| error "Object reference not set to an instance of an object"... I
| cannot see what I'm doing wrong. the Array seems good

ship = new ImageButton[5];

This code only allocates an array of references to five ImageButtons, it
doesn't create any ImageButtons.

You have to create a new object for each item in the array.

for (int i=0; i<5; i++)
{
ship[i] = new ImageButton();
ship[i].ImageUrl = pathofImage;
ship[i].ID = "ShipNo" + i.ToString();
ship[i].Click += new ImageClickEventHandler(this.ImageBtn_Click);
this.Form1.Controls.Add(ship[i]);
}

Joanna

--
Joanna Carter [TeamB]
Consultant Software Engineer
Dec 18 '05 #2
Hi Varangian,
the problem is that you initialzed the memory space for objects in the
array by saying:

ship = new ImageButton[5];

but that does not create 5 instances of an ImageButton in the array for you
automatically, it just initializes the memory needed so after you create the
array you still need to create the objects you want to put in the aray
seperately. Inside your for loop add a constructor call like:

for (int i=0; i<5; i++)
{
//create the new item
ship[i] = new ImageButton();

...do rest of stuff
}

Hope that helps
Mark Dawson
http://www.markdawson.org
"Varangian" wrote:
ImageButton[] ship;
ship = new ImageButton[5];

for (int i=0; i<5; i++)
{
ship[i].ImageUrl = pathofImage;
ship[i].ID = "ShipNo" + i.ToString();
ship[i].Click += new ImageClickEventHandler(this.ImageBtn_Click);
this.Form1.Controls.Add(ship[i]);
}
I have this peace of code on the start page... and is giving me an
error "Object reference not set to an instance of an object"... I
cannot see what I'm doing wrong. the Array seems good

Any Help?
Thanks

Dec 18 '05 #3
"Varangian" <of****@gmail.com> wrote in
news:11**********************@o13g2000cwo.googlegr oups.com:
ImageButton[] ship;
ship = new ImageButton[5];

for (int i=0; i<5; i++)
{
ship[i].ImageUrl = pathofImage;
ship[i].ID = "ShipNo" + i.ToString();
ship[i].Click += new
ImageClickEventHandler(this.ImageBtn_Click);
this.Form1.Controls.Add(ship[i]);
}
I have this peace of code on the start page... and is giving me
an error "Object reference not set to an instance of an
object"... I cannot see what I'm doing wrong. the Array seems
good


Array elements are zero-based.

The ship array has five elements (0 thru 4), but your "for" loop
iterates over six elements (0 thru 5). The last element (5) does not
exist, so the error occurs.

To prevent problems like this, use the array's length as the limit
for the "for" loop:

for (int i = 0; i < ship.Length; i++)

--
Hope this helps.

Chris.
-------------
C.R. Timmons Consulting, Inc.
http://www.crtimmonsinc.com/
Dec 18 '05 #4
Thanks to everyone for the help :) .... always learning. I thought that
I was just filling the array at the same time creating 5 imagebutton
objects.

Dec 18 '05 #5
"Object reference not set to an instance of an object" means that your code
is referencing an object that does not exist. You have 5 lines of code, and
the loop initializer is fine. Therefore, all you have to do is look through
4 lines of code to identify object references in the code that might refer
to objects that are null, or do not exist. This is about as easy as
debugging gets.

Since you are apparently new to debugging, I will walk you through it:
ship[i].ImageUrl = pathofImage;
Object references:
ship (Array)
ship[i] (Array member)
ImageUrl (Property of Array Member)
pathofImage (variable)
ship[i].ID = "ShipNo" + i.ToString();
ship (Array)
ship[i] (Array member)
ID (Property of Array Member)
ship[i].Click += new ImageClickEventHandler(this.ImageBtn_Click);
ship (Array)
ship[i] (Array member)
Click (Event of Array Member)
ImageBtn_Click (Event Handler delegate)
this.Form1.Controls.Add(ship[i]);
Form1 (Form)
Controls (Controls Collection)
ship (Array)
ship[i] (Array member)

In the case of "ship" - Make sure there is an array called "ship".
In the case of "ship[i]" - Make sure the array has 6 members (0 - 5)
In the case of "ImageUrl," "ID," and "Click," - make sure that whatever type
of object the Array holds has these members.
In the case of "Form1" - Make sure there is a form, and that it is named
"Form1".
In the case of "Controls" - Make sure that whatever object "Form1" refers to
has a Controls Collection.
In the case of "ImageBtn_Click" - Make sure that an Event Handler delegate
named "ImageBtn_Click" has been defined in the class.

Looks like an ASP.Net app. Assuming you don't have Visual Studio.Net, or
some other software that has debugging capabilities, you can always use
Trace, or use Response.Write to write data out to the Page, where you can
see it.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Varangian" <of****@gmail.com> wrote in message
news:11**********************@o13g2000cwo.googlegr oups.com... ImageButton[] ship;
ship = new ImageButton[5];

for (int i=0; i<5; i++)
{
ship[i].ImageUrl = pathofImage;
ship[i].ID = "ShipNo" + i.ToString();
ship[i].Click += new ImageClickEventHandler(this.ImageBtn_Click);
this.Form1.Controls.Add(ship[i]);
}
I have this peace of code on the start page... and is giving me an
error "Object reference not set to an instance of an object"... I
cannot see what I'm doing wrong. the Array seems good

Any Help?
Thanks

Dec 18 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: lawrence | last post by:
How dangerous or stupid is it for an object to have a reference to the object which contains it? If I have a class called $controllerForAll which has an arrray of all the objects that exist, what...
28
by: Daniel | last post by:
Hello =) I have an object which contains a method that should execute every x ms. I can use setInterval inside the object construct like this - self.setInterval('ObjectName.methodName()',...
16
by: sneill | last post by:
How is it possible to take the value of a variable (in this case, MODE_CREATE, MODE_UPDATE, etc) and use that as an object property name? In the following example I want 'oIcon' object to have...
3
by: David P. Donahue | last post by:
This is a 2-part question: 1) I have a web form with multiple ImageButtons on it. I'd like them all to do the same thing. Basically, in english-code, the function would be as follows: Set...
2
by: flyAway | last post by:
HI In my first asp.Net Homepage I have the following problem: There are some ImageButtons, witch ImageURL constantly changes. Now I would like to create an array, so that I can assign the...
1
by: Jim McGivney | last post by:
On an aspx page with C# code behind I am trying to programmatically change the ImageUrl of various ImageButtons in response to the text contained in corresponding label controls. The...
5
by: Michael Moreno | last post by:
Hello, In a class I have this code: public object Obj; If Obj is a COM object I would like to call in the Dispose() method the following code: ...
1
by: BiraRai | last post by:
is it possible to add new variable to a array object at run time? the following code does not work. $iterator->current()-> = 1234; how can this be done? function...
275
by: Astley Le Jasper | last post by:
Sorry for the numpty question ... How do you find the reference name of an object? So if i have this bob = modulename.objectname() how do i find that the name is 'bob'
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.