1
vote
2answers
89 views
Is it possible to get a null reference error from the ListBox.Items property?
EDIT 11-20-2009: This question was posted quite some time ago, but the problem just crept up again this morning; so I'm hoping somebody else can provide some insight (though the an …
0
votes
1answer
36 views
System.NullReferenceException
Hi,
I have a windows application developed in VS.NET 2003.
sometimes I am getting System.NullReferenceException exception from CallWindowProc().
Here is the stack trace of the exc …
0
votes
2answers
19 views
NullReference at XML-Operations
I'm getting a NullReferenceException upon trying to read an attribute of an xml-file - what attribute to read from what element is defined by user-input.
The StackTrace keeps redi …
0
votes
3answers
116 views
(c#) NullReferenceException??? I’ve got a constructor what’s going on?
I am trying to write code for an assignment for the c# intro class at my college but am ahead and am running into problems. I am getting a NullReferenceException when i run the pro …
0
votes
2answers
55 views
How to debug a low level system exception in Visual Studio 2003?
Hello,
I have spend two days of work trying to figure out a weird problem is happening on my PC.
I am debugging a quite complex old application written in .NET 1.1 that is made b …
0
votes
1answer
94 views
vb.net: “Object reference not set to an instance of an object” when creating user structre
Hi!
I get an "Object reference not set to an instance of an object" error while running this code below, and I don't know what is wrong with it..
goes like this:
Dim mypoint As Ne …
1
vote
1answer
95 views
NullReferenceException when calling InsertOnSubmit in Linq to Sql.
I'm trying to insert a new object into my database using LINQ to SQL but get a NullReferenceException when I call InsertOnSubmit() in the code snippet below. I'm passing in a deriv …
2
votes
5answers
816 views
LINQ InsertOnSubmit: NullReferenceException
I have this code:
using DC = MV6DataContext;
using MV6; // Business Logic Layer
// ...
public DC.MV6DataContext dc = new DC.MV6DataContext(ConnectionString);
IP ip = new IP(Reque …
0
votes
1answer
50 views
Get Object reference when using context rewrite path
Hello
I get this error when i have this in my codebehind: if(Page.User.Identity.IsAuthenticated)
System.NullReferenceException: Object reference not set to an instance of an ob …
4
votes
4answers
118 views
Visual Studio null reference warning - why no error?
I've noticed something peculiar about Visual Studio. First, try typing this (C#) somewhere in a function:
class Foo
{
public void Bar()
{
string s;
…
0
votes
1answer
58 views
Nhibernate NullReferenceException returning List of domain objects
Following is the code I am using. Seems pretty simple to me. But I get a NullReferenceException at the last line , the return statement. Here is the stack trace:
FailedSystem.N …
0
votes
0answers
68 views
NullReference Exception in VB.NET for an Integer
Here's the troublesome bit of code. Note that the NullReference Exception is throw for the variable TR, but PS is just fine. Any idea what could be happeneing?
Protected …
1
vote
5answers
183 views
How did I get this NullReferenceException error here right after the constructor?
I've had an asp.net website running live on our intranet for a couple of weeks now. I just got an email from my application_error emailer method with an unhandled exception.
Here …
0
votes
3answers
281 views
I’m Trying to Create an Image Object with a Byte Array as Its Source. What Am I Doing Wrong?
I'm trying to create an image object with a byte array as its source. What am I doing wrong?
An exception is thrown when I try to initialize the image object with an array of by …
0
votes
4answers
105 views
NullReferenceException with ToolTip.CreateHandle
We sporadically get errors when we try to update a tool tip, like this
ToolTip.SetToolTip(myLabel, customDataStructure)
The error we get is a NullReferenceException: Object refe …
