Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
243 views

C# garbage collection with object references

In C#, when I have two object obj1, obj2 composed of a List<string> and I assign both of those objects to the same List<string> object. If my reference to obj1 goes out of scope but my ...
4
votes
2answers
278 views

Object reference null- URL rewriting asp.net

I have developed my asp.net website in .NET 2.0 in other system where it is working fine. Now when I copied the asp.net website in my system and run it than I am getting the run time error: Object ...
4
votes
4answers
300 views

Behavior of C++ Object Reference

Consider the following code segment: class Window // Base class for C++ virtual function example { public: virtual void Create() // virtual function for C++ virtual function ...
4
votes
3answers
1k views

Is there a good way to perform WPF/C# object dereferencing, for garbage collection?

Application Background Our platform is a click-once WPF application. We have a "shell" that contains a navigation menu structure and it hosts our own custom "page" classes. When you navigate to a new ...
3
votes
4answers
109 views

Object Relationship Design

I just happen to ponder of a OO concept which may sound quite trivial but I don't know why I find it quite confusing. Anyway, I am thinking for example, if I have an Animal class and a Location ...
3
votes
4answers
853 views

.NET XmlSerializer and multiple references to the same object

My repository has List<Student>, List<Course> and List<Enrolment> where an Enrolment has Enrolment.Student and Enrolment.Course which are references one of the students or courses in ...
3
votes
1answer
1k views

LINQ DataContext.SubmitChanges() in C# Reporting “Object reference not set to an instance of an object.”

I think a lot of people have had this issue but I'm not able to fix it or understand why I'm having it. I've been tearing hair out for a couple of hours now. I'm getting the error, "Object ...
2
votes
3answers
262 views

get string representation of object reference in vb.net

I want to make a hashtable of object references and I want a different object's reference to be the key. How can I do this in vb.net? In java (assuming I am using the default toString method and that ...
2
votes
1answer
293 views

Why would this event handler code cause a Object reference not set to an instance of an object. Error (only present on live server, ok on dev)?

Here is the code for the button click event; Protected Sub CompetenciesButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles CompetenciesButton.Click Dim con As String = ...
1
vote
1answer
20 views

Check if linq object is referenced

What is the best (fastest) way to check if a linq object is referenced from another table. Normaly i do this way but i guess this might be slow on bigger tables. ...
1
vote
2answers
49 views

Object reference not set to an instance of an object? VB.NET

I have this code here: Dim MasterIndex As String()() Private Function Lookup(ByVal Search_path As String) As Integer Dim i As Integer = 0 Do Until MasterIndex(i)(0) Is Nothing If ...
1
vote
2answers
146 views

Saving a PDF document seems to be keeping a reference in memory (VB.NET)

I have a VB.NET user control that is saving a PDF document and then displaying that in a WebBrowser control. The code looks like this: Using myPdfDoc As New FileStream(fileName, FileMode.Create) ...
1
vote
4answers
351 views

Possible reasons for “NullReferenceException” besides dereferencing an object reference set to null [closed]

I know that when a NullReferenceException gets thrown, the error message states: Object reference not set to an instance of an object. And I realize this message is thrown when I attempt to ...
1
vote
1answer
743 views

ASP.NET MVC Object reference not set to an instance of an object

I saw a similar question here on SO but I believe mine differs a little a bit. OK, so I have a simple view here: <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" ...
1
vote
3answers
108 views

In PHP, when $foo = new Foo(), technically speaking, is $foo an object, or is $foo a reference?

Update: in http://php.net/manual/en/language.oop5.references.php it says: One of the key-points of PHP5 OOP that is often mentioned is that "objects are passed by references by ...
1
vote
1answer
2k views

How to check a “NULL object reference” in Managed C++?

I come across some MC++ code like this: __gc class ClassA { Puclic: ClassB GetClassB(); } __gc class ClassB { Public: int Value; } int main() { ClassA^ a = gcnew ClassA(); ClassB^ ...
1
vote
1answer
27 views

NullReferenceExeption when reading from a file

I need to read a file structured like this: 01000 00030 00500 03000 00020 And put it in an array like this: int[,] iMap = new int[iMapHeight, iMapWidth] { {0, 1, 0, 0, 0}, {0, 0, 0, 3, 0}, {0, 0, ...
1
vote
4answers
681 views

object reference is not set to an instance of an object repository

I am getting an XAMLParseException that is really covering up another exception. Here is part of the stacktrace: Message=Object reference not set to an instance of an object. ...
1
vote
3answers
275 views

Why Does List Argument in Python Behave Like ByRef?

This may be for most languages in general, but I'm not sure. I'm a beginner at Python and have always worked on copies of lists in C# and VB. But in Python whenever I pass a list as an argument and ...
1
vote
2answers
1k views

Custom AS3 class is null after being added to Array

I'm a C# developer who is trying to learn some AS3, so this is going to be a pretty newbie question. I'm getting confused with regards to scope and GC, as I have a custom MovieClip-extending class ...
0
votes
4answers
48 views

How can I access TextBox “textBox2” from the “Program” class?

As you can see, the class names I used are default names of classes generated by Visual C#. How can I go about changing values in a TextBox named "textBox2" (this TextBox is placed in the Form1 design ...
0
votes
3answers
138 views

How to call non-static method from static method in an aspx.cs code-behind

A similar question was asked elsewhere, but the answer doesn't seem to work in my particular situation. I have a hidden field on an aspx page: <asp:HiddenField ID="dataReceiver" runat="server" ...
0
votes
7answers
59 views

Initializing a field for an entire winform to use… (Object reference not set to instance of an object)

Here is my C# code for Mainform.cs public partial class MainForm : Form { private Customer cust; public MainForm() { InitializeComponent(); } private void ...
0
votes
1answer
162 views

Outlook: Object reference not set to an instance of an object

I have an outlook add-in (basic pushing of mail to our app) which is returning an issue on one machine (works fine on others). It was just not working with no errors so we went to SYSTEM menu and ...
0
votes
5answers
163 views

Object reference not set to an instance of an object, null

i keep getting this error message: Object reference not set to an instance of an object. private static void GetIPInfo(User user) { string ipAddress = ...
0
votes
3answers
90 views

On ASP.NET form submit it throws an Object reference not set to an instance of an object.

I have a simple email form written in ASP.NET with the logic in the codebehind file. It's all in C# (the logic that is...). Anyways, on page load I have the following: protected void Page_Load(object ...
0
votes
1answer
53 views

Explain why this DataRow is not changed

Can anyone explain exactly why Method 1 in the following code does not alter the DataTable where the other 2 methods do? It's obviously some kind of referencing issue, but why exactly? CODE AT ...
0
votes
3answers
62 views

C++ object referencing in classes

I am wondering how to store a reference of an object inside of another object, and also set that reference as a private property. Example (pseudo-code): class foo { public: int size; ...
0
votes
3answers
80 views

Find if a directory has a parent

private void anotherMethod() { DirectoryInfo d = new DirectoryInfo("D\\:"); string s = included(d); ... // do something with s } private string included(DirectoryInfo dir) { if (dir ...
0
votes
0answers
173 views

Error:Object reference not set to an instance of an object ,while parsing facebook JSON in asp.net

I am using/reusing json.net to get facebook likes of a user and his/her friend's like. I am having this error : Object reference not set to an instance of an object In the following code, I have ...
0
votes
3answers
79 views

Is there any way to change an outside object from inside a function

Is it possible to define a function which will make the argument refer to another (already existing) object after it returns without using pointers, etc? Again, this can't just change the existing ...
0
votes
4answers
225 views

Object reference not set to an instance of an object

Getting this error on this code: string pname = null; pname = ag.FirstOrDefault().arrangement.parent.name; when calling the line pname = ag.FirstOrDefault..... The filed parent.name is ...
0
votes
1answer
311 views

C# Error 'Object Reference Not Set To An Instance Of An Object'

I've read other questions about this but don't see where or why my code is throwing this error. The code I have is below, if anyone can see where i'm going wrong. private void ...
0
votes
2answers
399 views

Object reference not set to instance of object"

I am inserting values in listbox from database & retrieving text on a button click. but I'm getting the following error Object reference not set to instance of object so ...
0
votes
3answers
254 views

.NET Binary Serialize object with references to other objects . . . what happens?

If you have an object instance A that references other objects (for example instances B and C), and you binary serialize A to a file, what happens? Do you now have serialized data that includes A, B ...
0
votes
1answer
61 views

Object reference null for the same statement in asp.net

I am facing a strange problem while running my application. I have a class [Say studentInfo], for which I am declaring a instance above the page load [i.e. of page scope] StudentInfo sInfo; on ...
0
votes
3answers
213 views

Which object exactly cause “Object reference not set to an instance of an object”?

I have DLL that run on server and I can't debug it for many reasons, I log its exceptions. sometimes I have "Object reference not set to an instance of an object" in a method call that have about 20 ...
0
votes
1answer
76 views

How to embed object reference in HTML?

I created some HTML code based on a javascript var. I want to update these HTML code when I update the source var. Because I have object reference in the HTML, I know which HTML section to update. ...
0
votes
2answers
115 views

My application works perfectly local but not in the remote server

When I upload the files on the remote server I get the following message: Object reference not set to an instance of an object And a few errors supposed to be happening in the ClassDesigner file and ...
0
votes
1answer
301 views

Null check always returns null, if removed returns Object reference not set to an instance of an object

I have some code which gets child items for a menu via the GetChildren function which takes a list of menuData: Dim builtMenu As New List(Of MenuData)(_rawData.FindAll(Function(item) item.GroupingID ...
0
votes
3answers
968 views

VB.NET - Object reference not set to an instance of an object

I need some help with my program. I get this error when I run my VB.NET program with a custom DayView control. ***** Exception Text ******* System.NullReferenceException: Object reference not ...
0
votes
1answer
70 views

PHP Object References in Frameworks

Before I dive into the disscusion part a quick question; Is there a method to determine if a variable is a reference to another variable/object? (Just want to check I am passing references around ...
0
votes
4answers
455 views

Why am I losing object references on the postback?

I am developing an asp.net (3.5) application and I am puzzled with the behavior of the postbacks. Consider the following scenario: I have a web user control that is basically a form. However each ...
0
votes
2answers
228 views

Object Instance in C#

Why do I get "Object Reference Not Set to Instance of an Object" protected void GetData() { ... id = this.GetTabControl().ID; //<---------here } ... protected ASPxPageControl ...
0
votes
8answers
2k views

Is there an expandable list of object references in Java?

In Java, we can always use an array to store object reference. Then we have an ArrayList or HashTable which is automatically expandable to store objects. But does anyone know a native way to have an ...
-1
votes
2answers
42 views

javascript - String to real Object

I have a javascript objects var flower_1; var flower_2; My question is if I have another variable for example a String var Name; And lets say for example: Name = "flower_1"; How can I change the ...
-1
votes
1answer
64 views

Does Javascript equal sign reference objects or clones them?

In MyApp.something.BigObject I have a memory expensive object and I like to do this var theObject = MyApp.something.BigObject;. My question is would that take up double the memory or not?
-1
votes
3answers
90 views

Java Object Reference and Java Methods

I am unable to understand how this works public void addToRule(Rule r) { if (!getRuleList().contains(r)) { getRuleList().addElement(r); } } If I run this code: obj.addToRule(r); ...
-2
votes
1answer
162 views

Object reference not set to an instance of an object [closed]

con.ConnectionString = "user id=sa;password=sa1;database=wil_test;server=wil" con.Open() '----------- Report of Current Date ---------- Qry = "SELECT DISTINCT Course_Name,Course_ID ...