The exception that is thrown when there is an attempt to dereference a null object reference.

learn more… | top users | synonyms

0
votes
0answers
6 views

NullReferenceException ScriptResource.axd‏

We are running YAF 1.9.3 RC2 on a Windows 2003. All days we have four or three messages like the one below in the event log. Could you please give us any idea about this? Thanks in advance. This is ...
0
votes
2answers
31 views

Null reference when using model value in the view

I am declaring my values in web.config <appSettings> <add key="SystemName" value="RealState Premium" /> <add key="SystemDescription" value="Sistema de Administração ...
0
votes
1answer
33 views

convert two dimensional string array to two dimensional int array

I'm trying to convert a two dimensional string array to a two dimensional int array: int[][] inner = new int[4][]; string[][] arr = new string[4][] { new string[] {"11"}, new string[] ...
0
votes
4answers
170 views

NullReferenceException error in ASP.Net

In the below code I am getting a Null Reference Exception error while using "Names.Add(string)" method. But when I use a static class or a static object of the NamedDB class it works fine. Can any one ...
0
votes
2answers
20 views

Executing T4 template: Host is null while hostspecific=“True”

I am trying to write a console program that takes the file name of a T4 template as a parameter, and then processes the template. This because I want users to be able to update the template without ...
1
vote
2answers
33 views

Object reference not set to an instance of an object Exception when closing my form

When I want to close my form, the cmbProspecten_SelectedIndexChanged method gets recalled. But the values in cmbProspecten are null and so I get the NullReferenceException: Object reference not ...
2
votes
1answer
3k views

NullReferenceException from wcf service

I have a wcf service which I use Miquels Castro's technique, instead of user the service reference create by VS.NET 2010. Everything worked great until I added a new method. When I added the new ...
0
votes
1answer
44 views

Object not set to instance error with class invocation

I set up three models. I'm not sure if I did it the best way, but it's the way I could understand it easily. I invoke the DepartmentProfile class. The first user found is not a manager so it goes ...
1
vote
0answers
54 views

Getting InvalidOperationException during call to GetResponseAsync()?

PREFACE: I know the code excerpt is lengthy but I did't want to leave out a detail that someone else might spot as the cause of the issue. The reason for the somewhat verbose nature of the code and ...
0
votes
4answers
55 views

How to test if Action<…> is null? [closed]

Suppose I have a function that looks like this: public void DoSomething(Action<object> something) { something(getObject()); } If something is null, then this code will raise a ...
1
vote
4answers
50 views

Null reference on Cache class issue

I have code as following inside of method: var currency = new Dictionary<string, List<Currency>>(); if (Cache["Currency"] == null) { //here I fill currency with data and then set it ...
0
votes
2answers
77 views

NullReferenceException while calling LoginAsync

In my WinRT app, I want the user to connect to his Hotmail account to access to his contacts. I use the Hotmail API from the Live Connect SDK from Microsoft. To establish the connection, I use this ...
-2
votes
1answer
54 views

Null Reference Exeption openFileDialog

Code: namespace bla_bla_bla { public delegate void pathSelected(string path); //... public partial class Form1 : Form { public pathSelected onPath; //... private void ...
0
votes
3answers
50 views

Object reference not set to an instance of an object - C#

I'm a beginner to c# and I keep getting a 'System.NullReferenceException' error. I've looked everywhere but I can't seem to find a useful solution. I simplified the code below so that it would be ...
3
votes
2answers
12k views

object reference not set to an instance of an object #3

I am getting the object reference error in just start of the method. For Ex.: 259: public ActionResult ShowAddress(FormCollection formCollection) 260: { In the above sample i am getting the error ...
0
votes
1answer
43 views

NullReferenceException happens when sending message back to message dialog from BackGroundWorker

It's a C# winform .Net framework 2.0 project: The time-consuming network transferring jobs run in a BackupgroundWorker. In this backgroundwork thread, SynchronizationContext method is used to send ...
0
votes
0answers
37 views

cannot avoid NullReferenceException when insert data into Db. MVC

Im trying to insert data into extern database. i have got Nullexception all the time even when i dont have any null data. here my insert function When i breakPointer befor the SaveProductionOrder ...
125
votes
9answers
13k views

What is a NullReferenceException in .NET?

I have some code and when it executes, it throws a NullReferenceException, saying, "Object reference not set to an instance of an object.". What does this mean, and what can I do about it?
2
votes
1answer
718 views

ASP.NET MVC 4 DropDownListFor error: Null Values

I am a beginner programmer and having trouble with the @Html.DropDownListFor helper... I am using a General Repository and Unit of Work pattern based off of the tutorial here: ...
121
votes
2answers
4k views

Why would finding a type's initializer throw a NullReferenceException?

This has got me stumped. I was trying to optimize some tests for Noda Time, where we have some type initializer checking. I thought I'd find out whether a type has a type initializer (static ...
0
votes
2answers
60 views

Unable to start activity ComponentInfo{…MainActivity}: java.lang.NullPointerException

I would like to build an app which uses HoloEverywhere. I import HoloEverywhere and ActionBarSherlock as described in this manual. MainActivity: import org.holoeverywhere.app.*; import ...
1
vote
1answer
25 views

EF anonymous object query returns null collections instead of empty ones

I'm using this trick to perform conditional Include's with EF. http://blogs.msdn.com/b/alexj/archive/2009/10/13/tip-37-how-to-do-a-conditional-include.aspx The problem I'm having is that any ...
0
votes
2answers
44 views

NullReferenceException was unhandled in small loop

Hello I recieve a "nullreferenceexception was unhandled" error when I try to run this code: For i As Integer = 1 To aantaltags csvopc(i) = csvtagssplit(17 * i) ...
6
votes
3answers
79 views

Why does setting ComboBox.SelectedValue to null cause a ArgumentNullException?

Why does setting the SelectedValue of a ComboBox to null cause an ArgumentNullException? The Exception only occurs if the ComboBox is actually part of a Form. I can set SelectedValue to all kinds of ...
0
votes
1answer
46 views

weird NullReferenceException error

I encountered a weird error: mycon.Open(); adap = new SqlDataAdapter("SELECT * FROM Employee; Select * from Shift; select * from Has_Shift", mycon); adap.TableMappings.Add("T1", "Employee"); ...
1
vote
1answer
30 views

NullReferenceException with EF

I have a problem with the Exception NullReferenceException ... class that auto generated by EF and contains a list of ICollection and the list supposed to be initialized in the constructor but when ...
1
vote
1answer
108 views

EmguCV - Face Recognition - 'Object reference not set' exception when using training set from Microsoft Access Database

I've been developing a face recognition application using EmguCV (C#). I got the whole thing working okay if I store the face images (training set) in simple windows folder. But, after I tried to ...
0
votes
0answers
40 views

NullReferenceException was unhandled , WP7 error

I am having a very strange error , in a WP7 application i am trying to build. When i run the application for the first time and i debug it , i get this error : NullReferenceException was ...
0
votes
4answers
49 views

Where/How to instaniate an object to handle null reference exception

Hey guys kind of a simple question, I'm not exactly sure where/how to initialize a new object instance so I don't get this error. I have a class object(Contact) that has another class ...
0
votes
2answers
290 views

How to resolve a stack trace in visual studio 2008

I'm developing an ASP.NET website in viusal studio 2008, the thing is that I changed a line in the code, this change trows an exception (NullReferenceException) at runtime, after I change the line ...
2
votes
2answers
120 views

System.NullReferenceException on this.Controls.Add() with winforms and C#

I have developed a small WinForm application with C#. I have released this app for years, and a lot of users use it on many different Windows system, Windows XP, Vista, 7, 8, 32bit and 64bit. But ...
0
votes
2answers
47 views

NullReference Exception C# during database entary

I Have an Exception of Null Reference at combobox value. I allow null in database. But It not works. What should I Do? I mention the Exception Area in the comments: Here is my Source code. private ...
0
votes
2answers
41 views

Handling null reference

Public Static Void Main() { LinkedList q = new LinkedList(); q.enqueue(Object); System.out.println(q.deque().getString()); //it will print the string of the popped object } If the queue ...
4
votes
3answers
124 views

Inheritance null reference exception using F#

Is there any way to make the following code work? open System.Collections.Generic type Geometry<'t>(child: 't) = let values = List() member o.add (v: float) = values.Add v; child and ...
1
vote
1answer
53 views

C# Linq-to-SQL Error on submitChanges()

i have a silly problem with Linq to SQl. I only work with c# for 3 weeks but i thought i understand it. So, now i´m testing my classes (Entites and Manage classes for them) but i get in the ...
0
votes
1answer
53 views

App-config , custom section handler object returning as null

So I made a custom section handler to read information from the app-config file but when I try run it i get the following error: Object reference not set to an instance of an object. I have been ...
0
votes
1answer
43 views

Is it possible to get a NullReferenceException with a null coalescing operator and a 'as'?

I'm moniterring an application and I got a... NullReferenceException Object reference not set to an instance of an object. The Stack trace points accurately to this line of code : ...
0
votes
0answers
36 views

Background Worker and Parallel.For Null Exception

I am trying to optimize a pixel value reader (from images) and tried to used Parallel.For with a Background Worker to show the progress on a bar. I an using a Dictionary to store the read values to be ...
0
votes
1answer
40 views

Adding list in list

I have class SellStatement public class SellStatement { public long billNo public DateTime paymentDate; public List<string> ProductName; public List<double> quantity; ...
0
votes
1answer
59 views

Why am I getting Null Referenfe exception while trying to read data from XML file?

I have a XML file names Customerx.xml. It has the parent tag as . It has many . My customer class is defined as: public class Customer { private List<Customer> customerList; public ...
0
votes
2answers
53 views

System.NullReferenceException Handled

Here's code I have written for a simple event based adder, this is the error I constantly get: Object reference not set to an instance of an object. I am a beginner, so what's my error here? What am ...
0
votes
1answer
35 views

WSDL element is null?

I have an WSDL document and it has elements like this above. <s:element name="NewPortalOrder"> <s:complexType> <s:sequence> <s:element minOccurs="1" ...
0
votes
1answer
41 views

NullReferenceExeption when Linq'ing IEnumerable<XElement>

I'm new to the whole Linq game, so please forgive my ignorance. I have this piece of code here: String tag = "Covers"; XDocument doc = XDocument.Load(file); IEnumerable<XElement> allDvds = ...
0
votes
1answer
48 views

how to change row color based on column value

i using this code but giving error object reference is not set to instance of object . Need help urgent. using (SqlConnection sqlConn = new SqlConnection("Data Source=OMKAR-PC;Initial ...
2
votes
1answer
68 views

Setting string in javascript function in ASP.NET MVC give NullReferenceException

Inside my MVC view I have javascript that is executed by a button click. I'm trying to set a string to a random set of characters which I can get to work fine but when I try and set that string to ...
1
vote
5answers
113 views

Why would this give out a NullReferenceException?

I have a method caller addColisionBox and when i call it and setting values to it i get nullpointer at the place im calling it.. I will show some code: public void addCollisionBox(int x, int y, ...
0
votes
5answers
100 views

C# ListBox Selected Item Null Exception

The user can click an item in a ListBox as follows: private void listBox1_SelectedIndexChanged(object sender, EventArgs e) { textBox2.Clear(); listBox2.Items.Clear(); string[] p = ...
0
votes
1answer
58 views

Custom SpecFlow TestGeneratorProvider registration causes NullReferenceException at test generation

I'm trying to add my CodedUI test generator plugin in SpecFlow 1.9. I'm trying to use the new plugin registration, since the old type of registration causes all kinds of issues in our solution, since ...
0
votes
1answer
62 views

What could be causing an NRE when closing a form?

Under certain circumstances, I get an NRE when closing a form using its Close button, which simply calls the native (WinForms) Close() method. Certain paths through the code do fine, but one ...
0
votes
2answers
54 views

Asp.net NullReferenceException: Object reference not set to an instance of an object

I don't understand why it has thrown this error. The code seems fine to me, any can spot where I've gone wrong? I am trying to match the username and password from the database. Thanks Line 20: ...

1 2 3 4 5 16