472,342 Members | 1,419 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,342 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 6372
"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...
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 - ...
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...
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...
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...
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...
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...
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...
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...
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...

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.