473,662 Members | 2,547 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Object reference not set to an instance of an object.

Why doesn't the following code work?
I get an error at the following line...
CardGroup[0].PropertyCardTy pe = (CardType)0;
The error is "Object reference not set to an instance of an object.", which
means the object in question have not been initiated.
But I have init the object above n this line...
public Card [] CardGroup = new Card[53];

Anybody knows how to resolve this??

Thanks :-)

namespace CardLibrary
{
public class CardFactory
{
//Create and init CardGroup
public Card [] CardGroup = new Card[53];

//Construktor
public CardFactory()
{
CardGroup[0].PropertyCardTy pe = (CardType)0;

Console.WriteLi ne("Konstruktor : public CardFactory()") ;
}
} //Slut public class CardFactory
} //Slut namespace CardLibrary
Nov 15 '05 #1
5 6824
You're trying to convert an integer to a CardType object, I would have thought it would give some sort of type mismatch error. Maybe
CardGroup[0] is null.

--
Michael Culley
"Tommy Lang" <mu*****@yahoo. se> wrote in message news:78******** *************** **@posting.goog le.com...
Why doesn't the following code work?
I get an error at the following line...
CardGroup[0].PropertyCardTy pe = (CardType)0;
The error is "Object reference not set to an instance of an object.", which
means the object in question have not been initiated.
But I have init the object above n this line...
public Card [] CardGroup = new Card[53];

Anybody knows how to resolve this??

Thanks :-)

namespace CardLibrary
{
public class CardFactory
{
//Create and init CardGroup
public Card [] CardGroup = new Card[53];

//Construktor
public CardFactory()
{
CardGroup[0].PropertyCardTy pe = (CardType)0;

Console.WriteLi ne("Konstruktor : public CardFactory()") ;
}
} //Slut public class CardFactory
} //Slut namespace CardLibrary

Nov 15 '05 #2
I'm inferring this but it looks like Card is a reference type i.e. a class

So public Card [] CardGroup = new Card[53];
will create an array that holds Card instances, but not create those
instances.

You have to loop through that array and create them:
for(int c=0;c<CardGroup .Length;c++)
CardGroup[c]=new Card();

Then CardGroup[0].PropertyCardTy pe = (CardType)0; should work.

Richard

--
C#, .NET and Complex Adaptive Systems:
http://blogs.geekdojo.net/Richard
"Tommy Lang" <mu*****@yahoo. se> wrote in message
news:78******** *************** **@posting.goog le.com...
Why doesn't the following code work?
I get an error at the following line...
CardGroup[0].PropertyCardTy pe = (CardType)0;
The error is "Object reference not set to an instance of an object.", which means the object in question have not been initiated.
But I have init the object above n this line...
public Card [] CardGroup = new Card[53];

Anybody knows how to resolve this??

Thanks :-)

namespace CardLibrary
{
public class CardFactory
{
//Create and init CardGroup
public Card [] CardGroup = new Card[53];

//Construktor
public CardFactory()
{
CardGroup[0].PropertyCardTy pe = (CardType)0;

Console.WriteLi ne("Konstruktor : public CardFactory()") ;
}
} //Slut public class CardFactory
} //Slut namespace CardLibrary

Nov 15 '05 #3
> You're trying to convert an integer to a CardType object, I would have thought it would give some sort of type mismatch error.

My mistake, I presume CardType is an enum.

--
Michael Culley
"Michael Culley" <mc*****@NOSPAM optushome.com.a u> wrote in message news:Ot******** ******@tk2msftn gp13.phx.gbl...
You're trying to convert an integer to a CardType object, I would have thought it would give some sort of type mismatch error. Maybe CardGroup[0] is null.

--
Michael Culley
"Tommy Lang" <mu*****@yahoo. se> wrote in message news:78******** *************** **@posting.goog le.com...
Why doesn't the following code work?
I get an error at the following line...
CardGroup[0].PropertyCardTy pe = (CardType)0;
The error is "Object reference not set to an instance of an object.", which
means the object in question have not been initiated.
But I have init the object above n this line...
public Card [] CardGroup = new Card[53];

Anybody knows how to resolve this??

Thanks :-)

namespace CardLibrary
{
public class CardFactory
{
//Create and init CardGroup
public Card [] CardGroup = new Card[53];

//Construktor
public CardFactory()
{
CardGroup[0].PropertyCardTy pe = (CardType)0;

Console.WriteLi ne("Konstruktor : public CardFactory()") ;
}
} //Slut public class CardFactory
} //Slut namespace CardLibrary


Nov 15 '05 #4
This solved my problem. I had created an array that holds Card
instances, but not created the instances themself. Card is a class and
CardType is an Enum.

Thanks,
Tommy


"Richard A. Lowe" <ch*****@yumspa myumYahoo.com> wrote in message news:<eK******* *******@TK2MSFT NGP09.phx.gbl>. ..
I'm inferring this but it looks like Card is a reference type i.e. a class

So public Card [] CardGroup = new Card[53];
will create an array that holds Card instances, but not create those
instances.

You have to loop through that array and create them:
for(int c=0;c<CardGroup .Length;c++)
CardGroup[c]=new Card();

Then CardGroup[0].PropertyCardTy pe = (CardType)0; should work.

Richard

--
C#, .NET and Complex Adaptive Systems:
http://blogs.geekdojo.net/Richard
"Tommy Lang" <mu*****@yahoo. se> wrote in message
news:78******** *************** **@posting.goog le.com...
Why doesn't the following code work?
I get an error at the following line...
CardGroup[0].PropertyCardTy pe = (CardType)0;
The error is "Object reference not set to an instance of an object.",

which
means the object in question have not been initiated.
But I have init the object above n this line...
public Card [] CardGroup = new Card[53];

Anybody knows how to resolve this??

Thanks :-)

namespace CardLibrary
{
public class CardFactory
{
//Create and init CardGroup
public Card [] CardGroup = new Card[53];

//Construktor
public CardFactory()
{
CardGroup[0].PropertyCardTy pe = (CardType)0;

Console.WriteLi ne("Konstruktor : public CardFactory()") ;
}
} //Slut public class CardFactory
} //Slut namespace CardLibrary

Nov 15 '05 #5
You, sir, are a gentleman! Always a pleasure to help.

Richard

--
C#, .NET and Complex Adaptive Systems:
http://blogs.geekdojo.net/Richard
"Tommy Lang" <mu*****@yahoo. se> wrote in message
news:78******** *************** ***@posting.goo gle.com...
This solved my problem. I had created an array that holds Card
instances, but not created the instances themself. Card is a class and
CardType is an Enum.

Thanks,
Tommy


"Richard A. Lowe" <ch*****@yumspa myumYahoo.com> wrote in message

news:<eK******* *******@TK2MSFT NGP09.phx.gbl>. ..
I'm inferring this but it looks like Card is a reference type i.e. a class
So public Card [] CardGroup = new Card[53];
will create an array that holds Card instances, but not create those
instances.

You have to loop through that array and create them:
for(int c=0;c<CardGroup .Length;c++)
CardGroup[c]=new Card();

Then CardGroup[0].PropertyCardTy pe = (CardType)0; should work.

Richard

--
C#, .NET and Complex Adaptive Systems:
http://blogs.geekdojo.net/Richard
"Tommy Lang" <mu*****@yahoo. se> wrote in message
news:78******** *************** **@posting.goog le.com...
Why doesn't the following code work?
I get an error at the following line...
CardGroup[0].PropertyCardTy pe = (CardType)0;
The error is "Object reference not set to an instance of an object.",

which
means the object in question have not been initiated.
But I have init the object above n this line...
public Card [] CardGroup = new Card[53];

Anybody knows how to resolve this??

Thanks :-)

namespace CardLibrary
{
public class CardFactory
{
//Create and init CardGroup
public Card [] CardGroup = new Card[53];

//Construktor
public CardFactory()
{
CardGroup[0].PropertyCardTy pe = (CardType)0;

Console.WriteLi ne("Konstruktor : public CardFactory()") ;
}
} //Slut public class CardFactory
} //Slut namespace CardLibrary

Nov 15 '05 #6

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

Similar topics

28
20309
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()', this.pinginterval); - but is there no way to do this without using the literal ObjectName? If I write 'this.methodName()' I get "Line 1 Char 1: Object doesn't support this property or method." in IE, and nothing happens in Firebird.
6
22514
by: Martin | last post by:
I'd like to be able to get the name of an object instance from within a call to a method of that same object. Is this at all possible? The example below works by passing in the name of the object instance (in this case 'myDog'). Of course it would be better if I could somehow know from within write() that the name of the object instance was 'myDog' without having to pass it as a parameter. //////////////////////////////// function...
15
6743
by: Carlos Lozano | last post by:
Hi, What is the right way to create an OCX COM component. The component is already registerred, but can't create an instance. I am using the reference to the interop module created. If I use javascript or vbscript it works. I will appreciate any help. I do the following (C#):
3
4212
by: Adam | last post by:
We have a web site that uses .vb for the web pages and .cs for a class module. We are getting the error in .NET 2.0 and VS 2005 beta 2. It does work with .NET 1.1. When trying to access a page that needs the class module I get an error on web site: Object reference not set to an instance of an object Here is where the error is:
4
1870
by: Luke Matuszewski | last post by:
Here are some questions that i am interested about and wanted to here an explanation/discussion: 1. (general) Is the objectness in JavaScript was supported from the very first version of it (in browsers) ? What about the new syntax of creating a object using { 'propName1':'propValue1', 'propName2':'propValue2', 'propName3':{ /* another object */ } } - from what version of JScript/JavaScript it was supported (from what browsers versions) ?...
12
5538
by: Andrew Poulos | last post by:
With the following code I can't understand why this.num keeps incrementing each time I create a new instance of Foo. For each instance I'm expecting this.num to alert as 1 but keeps incrementing. Foo = function(type) { this.num = 0; this.type = type this.trigger(); } Foo.prototype.trigger = function() {
6
2475
by: Shailen Sukul | last post by:
Observed a weird behaviour with object references. See code listing below: using System; using System.Collections.Generic; using System.Text; namespace PointerExceptionTest { /*
14
2390
by: Philipp Reif | last post by:
Hi all, I've got a little hole in my head concerning references. Here's what I'm trying to do: I'm calling a function, passing the reference of a business object for editing. The function clones the object, calls an editor dialog to let the user edit the object, and then - depending on the DialogResult - assigns either the clone/backup copy or the modified object itself to the reference. Maybe I'm thinking too much in pointer references...
3
2764
by: User1014 | last post by:
A global variable is really just a property of the "Global Object", so what does that make a function defined in the global context? A method of the Global Object? http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Guide:Defining_Functions doesn't actually give any insight.
2
2646
by: Ralph | last post by:
Hi I don't understand why it's not working: function schedule(imTop){ this.tdImagesTop = imTop; } schedule.prototype.selectEl = function() { alert(this.tdImagesTop);
0
8432
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8344
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8546
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8633
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7367
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5654
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4180
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4347
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2762
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.