View Single Post
Old 12-08-2004, 12:47 PM   #2 (permalink)
Iron_Cross
 
Ultra Techie

Join Date: Sep 2003

Location: Bamberg, Germany

Posts: 549

Iron_Cross

Send a message via ICQ to Iron_Cross Send a message via MSN to Iron_Cross Send a message via Yahoo to Iron_Cross
Default

Well first you need to go through the steps that it said, so that it can show you the source code. But what it's saying is that you're trying to use an object that hasn't been instantiated.

e.g.
Code:
static void Main(string[] args)
{
    SomeObject smObj;
    smObj.DoSomething();
}
Since you never instantiated smObj

Hope this helps.
__________________

See today\'s Penny-Arcade!(May contain foul lanuage)
Pain is weakness leaving the body.

PM Me for my MSN
Iron_Cross is offline