Tagged Questions
0
votes
1answer
20 views
Richtextbox Object reference not set to an instance of an object
Why am I getting this error? My program is using .NET4 Framework. And I got this error below: Object reference not set to an instance of an object.
if ...
1
vote
2answers
55 views
how *return implicitly return a reference
this is a const ptr to the object/instance which a member function receive implicitly, so how does return *this returns a reference ?
As of what I know , a pointer dereferencing to a variable means ...
2
votes
4answers
51 views
How to name an object reference after a String [duplicate]
For example, we have
String name = "Peter";
and we want the particular instance of a hypothetical Employee to be named after this string, as in
Employee ____ = new Employee(...);
So what do I ...
2
votes
2answers
27 views
How to reference proprerty from sub objects with “this” keyword
i have to call a property in "object1" from sub object "object3", but this example doesn't work because the "this" keyword is referenced in "object2" and not "object1", do you know how to do this ?
...
0
votes
2answers
42 views
Ambiguity in interfaces
interface A
{
int a = 10;
}
interface B
{
int a = 10;
}
class Access implements A, B
{
}
class Demo
{
public static void main(String args[])
{
Access ac = new Access();
...
-3
votes
0answers
52 views
c++ object reference keeping difficulty [closed]
Iam using about 10 cpp sourcecode files and each with its own header file , thats my requirement. iam setting all links quite well , the link look like this
Group -> Block -> Row -> Seat
...
0
votes
3answers
50 views
Object reference exactly
Demo demo=new Demo();
Here demo is a reference variable. Are reference variables equal to object references... ?
If no then please explain the concept of object reference.
1
vote
2answers
40 views
javascript pass object as reference
i have a object, which is getting passed in many different functions inside a function. these functions may or may not change the value of the object, but if they do change it, then i would like to ...
0
votes
2answers
78 views
Really confused between object and reference type
I read two programs, both passing a polymorphic object reference to a method. I'm confused whether the method at runtime depends on the reference type or the actual object.
Program 1:
class A
{
...
1
vote
1answer
65 views
Flash Error #1009: Cannot access a property or method of a null object reference …?
I have a problem when I create a menu with flash as3. Can you guys help what should I do ...? Like this :
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at ...
4
votes
2answers
48 views
Can I get to the object of a property if I have a reference to the property only?
I have the reference to a property of an object in a variable,is it possible to access the object to which this property belongs?
1
vote
1answer
31 views
Referencing an object property with numeric value in JavaScript
I've run into a - what seems - somewhat strange problem. Let's say I have a JavaScript object like this one:
var Object = {
Property1: 0,
Property2: 1,
TxtProperty: "Sample text",
...
0
votes
4answers
60 views
How to copy a HashMap to an ArrayList with different references
I am having a problem with the references of objects in Java. Here's the situation.
Let's say I have an object class called MyObject.
class MyObject {
Long id;
String item;
...
0
votes
0answers
40 views
Correct use of the term dereference
I have to work with a somewhat uncommon OO language with its syntax based on Modula-2. (There are no C-style pointers or pointer functions). At work, I often see code by other developers that looks ...
0
votes
0answers
49 views
Inserting data into an Oracle Database
Can I please have some help to insert some data into a table.
I have created an Peripheral_objtyp object and then created a table from this object:
create type Peripheral_objtyp as Object (
PeriphNo ...
0
votes
1answer
54 views
Full copy small List to Container List, not only reference
I was hoping the new keyword, would not only create a new object, but also with unique memory references. If I do this, and after Clear the "tinyList", the bigList will also be cleared.
...
0
votes
3answers
89 views
Object References In Java
Object references in java really confuse me. And when I started to study linkedlist, I realized that I know verry little about the subject. My question is
Node node = list;
Let's say list is the ...
0
votes
1answer
38 views
Having a variable reference an object in VBA
I'm writing some VBA code to dynamically position some elements on a form. What I would like to do is create a two dimensional array of references to 11 rows of label and text box objects, then step ...
0
votes
1answer
144 views
Can´t solve “Object reference not set to an instance of an object.” in a DataTable.Rows.CopyTo
I can´t seem to understand why I get "Object reference not set to an instance of an object." error in this situation :
DataTable utenRomData;
DataSet utenRomSet;
private void ...
0
votes
2answers
61 views
Accessing object (using reference or pointer) from a thread
I have a C++ process that initialize a class that store in a std::map some data, and then another class -- that will be executed in a thread -- to which I pass a pointer (I tried also a reference) of ...
2
votes
5answers
135 views
How does Java Object reference works?
I running to a situation and I am very confused. Please help me out.
Let's say I have a code like this.
MyClass obj1 = null;
List<MyClass> testList = new ArrayList<MyClass>();
...
0
votes
3answers
112 views
Object reference not set to an instance of an object (int)
This error keeps popping up and I can't seem to figure out where it's coming from.
if (!IsPostBack)
{
DataTable LocalCart = new DataTable();
LocalCart = (DataTable)Session["cart"];
int ...
0
votes
1answer
58 views
Variable scope and reference in OOP
While coding a function in a class that is supposed to be instantiated, some variables are used only temporarily - e.g. as a counter in a for loop - some are globals and others are returned and/or ...
2
votes
2answers
168 views
Thinking of Java references in C++ way
In Java, when we pass a java object argument to method myMethod((MyObject) myObject), it is basically like passing a reference to object in C++ like myFunction(& myObject). In such cases java ...
1
vote
2answers
63 views
Java Concept Confusion : Objects and Primitive Types
I am really confused about this concept:
/* Example with primitive data type */
public class Example1 {
public static void main (String[] args){
int a = 1;
System.out.println("a is " + a);
...
0
votes
3answers
69 views
How to Dispose Object instance when it lost it's reference
Using C#.
I have a MainFoo class:
class MainFoo
{
private Foo foo;
public MainFoo()
{
this.foo = new Foo();
}
public CreateNewFoo()
{
this.foo = new ...
1
vote
1answer
44 views
Any changes made to an object, changes also the current object
Sorry, the title is not very understandable, but my English is not helping. I am a new programmer in java, and despite having read how parameters work, I do not really understand what is happening.
...
0
votes
2answers
109 views
VB.Net How to set an object reference to an instance of an object?
Using VB.NET, trying to write a page title to a text file. I am stumped here:
Private Sub
Dim pagetitle As String
pagetitle = WebBrowser1.Document.Title
...
0
votes
3answers
79 views
Unable to pass a reference of 'this' to a constructor of another class
We have a class CJ that upon it's creation, it creates a different class BA object to which it wants to pass a reference to itself like so:
BA:BA(const CJ& myCJRef);
The compiler always errors ...
-2
votes
1answer
51 views
Using a string as reference to object
I want to pass as an object few options to my jQuery plugin.
This is how I do it:
$("#contact-form").formValidate({
contactname: {
"minLength": 5
},
contactemail : {
...
0
votes
3answers
81 views
Java: My new object instantiation is changing a previous object reference
I am trying to figure out what is going on here and would appreciate any help. I have a loop where I am creating new objects and then adding them to an ArrayList. But it seems as though each time ...
0
votes
0answers
95 views
Object reference not set to an instance of an object: from textbox to instance
Object reference not set to an instance of an object. <- is the problem as title suggests.
I am very sorry for bothering you all with this, but I'm afraid none of the other solutions fit my ...
1
vote
0answers
53 views
Access object references if one cannot transfer it a parameter / return list
Let us assume, we have a nice little Java Project using the classes A, B, C and D.
To access an object, its methods or attributes, one needs a link to it: the instance ID or reference. It is easy if I ...
0
votes
2answers
47 views
Java/Android use one obj pointer to reference 2 class
At first I'm sorry for my poor english, I'll trying to use my own word to express what my question is.
Says I need a global obj pointer, like this:
/** UI:Fragment頁面提供 */
public static ...
0
votes
2answers
99 views
After adding StreamReader code, can't add variables to my text file StreamWriter
I have a problem.
This is the code:
StreamReader lasa = new StreamReader("klubbar.txt");
while (true)
{
string line = lasa.ReadLine();
if (line == null)
{
break;
}
...
0
votes
1answer
31 views
An object to give another object, not only a reference to it
I'm sorry, I'm sure there are many answers to my question in Internet, but I do not know enough programming to be specific in my search.
Okay, so this is my question. Let's have a look at this ...
-2
votes
5answers
92 views
C++ reference on deleted objects
Im learning c++ (comming from iOS) and i want to understand the pointer / reference usage.
Is is correct to work with references on objects when they are deleted? Or will the referenced variable also ...
0
votes
4answers
46 views
Java: Multiple representations of the same object
I have a User.class like this:
public class User {
private HashSet<Client> clients;
...
public void addClient(Client c) {
c.setParentUser(this);
clients.add(c);
}
...
-4
votes
1answer
136 views
Object reference not set to an instance of an object c# :) [closed]
Following error I get is Object reference not set to an instance of an object c# Line 81
I'm still pretty new to C#.
The error happens right at: baseAdd = test + baseptr;
using System;
using ...
1
vote
3answers
39 views
Extracting & manipulating an object from a jQuery collection
I'm using jQuery to create a typical collection of list items like so:
HTML
<ul id="slides">
<li>Slide 1</li>
<li>Slide 2</li>
<li>Slide 3</li>
...
1
vote
1answer
99 views
Array of object references
In Java, let a custom object o is of type CustomObject. Then CustomObject o2 = o; would make a reference without copying the contents of o to o2. But will this behaviour remain for an array of ...
-5
votes
2answers
62 views
C++ object reference corruption [closed]
Creating a reference to an object results in that reference being corrupt. This is absolutely bizarre as it seems to be simple C++ functionality. Another odd thing is that the problem seems to have ...
2
votes
1answer
59 views
How do I create a static method that returns a reference to an object of that class?
Im working on a programming assignment involving the use of static variables/methods. This is one of the requirements, and I'm not exactly sure the proper syntax for declaring it in the header and ...
0
votes
4answers
70 views
Creating References to Objects
Okay so I have this Object here...
public class ItemInfo{
String productName;
String rfidTagNumber;
String originalLocal;
String currentLocal;
double productPrice;
public ItemInfo(String name, ...
0
votes
2answers
55 views
Cannot reference an object created in main from outside main
I have a class with a list of persons. I have made a class PersonBeholder (which means PersonContainer in norwegian). I also have a class Person, and a main class that makes the relations between the ...
-2
votes
2answers
44 views
Java: Access object created in class A from within class B [duplicate]
I'm struggeling with accessing an object and it's methods from another class.
I've written some code to illustrate my problem
NOTE: the following code is not compile- or runable, just to explain my ...
-1
votes
4answers
98 views
Is equal sign passing a reference or object copy?
When I have this code:
class A
{
public int X = 0;
...
}
public void Function()
{
// here I create a new instance of class
A a = new A();
a.X = 10;
// here I create a pointer ...
0
votes
1answer
597 views
Creating Outlook Application Object reference not set to an instance of an object
Hello I am creating a new Outlook.Application (with v.14.0.0.0 Office library) and retrieving the inbox email with C#. Only when outlook is not running, I am getting the error
'Object reference ...
2
votes
4answers
85 views
Is it faster to create a new object reference if it will only be used twice?
I have a question about instruction optimization. If an object is to be used in two statements, is it faster to create a new object reference or should I instead call the object directly in both ...
1
vote
3answers
150 views
Obtaining object reference for a method using getattr
Say, I have the following class called Test with a method called start
>>> class Test:
... def __init__(self, *args, **kwargs):
... pass
... def start(self):
... ...







