1
vote
3answers
25 views
Method accessing protected property of another object of the same class
Should an object's method be able to access a protected property of another object of the same class?
I'm coding in PHP, and I just discovered that an object's protected property …
1
vote
5answers
121 views
Invoking an instance method without invoking constructor
Let's say I have the following class which I am not allowed to change:
public class C
{
public C() { CreateSideEffects(); }
public void M() { DoSomethingUseful(); }
}
an …
1
vote
6answers
115 views
Check if a specific exe file is running
I want to know how i can check a program in a specific location if it is running. For example there are two locations for test.exe in c:\loc1\test.exe and c:\loc2\test.exe. I only …
1
vote
6answers
166 views
How to get instance from string in C#?
Is it possible to get the property of a class from string and then set a value?
Example:
string s = "label1.text";
string value = "new value";
label1.text = value; <--and som …
1
vote
2answers
59 views
What are SingletonMethods and InstanceMethods in Ruby
I see a lot of stuff
include ActiveRecord::XXXX::InstanceMethods
extend ActiveRecord::XXXX::SingletonMethods
I am unaware of the property or there working, just wanted a easy t …
0
votes
1answer
65 views
NHibernate ManyToMany relationship - using AuditInterceptor - object references an unsaved transient instance - save the transient instance before flushing
The domain model the DomainObject's audit fields are populated using an AuditInterceptor.
DomainObject
Id
EstablishDate
EstablishId
UpdateDate
UpdateId
Message : …
1
vote
1answer
43 views
Threading / Linq Class list problem
Ok, so ive been writing a very complex multiserver irc bot recently, and ive encountered an issue..
i stipped down the code as much as i could because its very large, the full code …
-1
votes
1answer
49 views
Same instance referred to by multiple constructors
I have an instance of Class A that I want to refer to in the constructor of multiple instances of B. How can I refer to that particular instance of Class A in each new instance of …
0
votes
4answers
78 views
Getting an instance name inside class __init__()
While building a new class object in python, I want to be able to create a default value based on the instance name of the class without passing in an extra argument. How can I acc …
0
votes
1answer
37 views
ASP.NET: strategies to manage a single browser instance…(no new tabs/windows)
All the browsing to this particular website should happen within the instance it was logged-in from...it should not allow side-by-side browsing if opened in a new tab or a new wind …
0
votes
2answers
22 views
Can I set a property on an object that is only declared on the instance type, when I don’t know the type?
Let me explain. I have a List into which I am adding various ASP.NET controls.
I then wish to loop through the list and set a CssClass, however not every Control supports the prope …
1
vote
2answers
138 views
Decorating Instance Methods in Python
Here's the gist of what I'm trying to do. I have a list of objects, and I know they have an instance method that looks like:
def render(self, name, value, attrs)
# Renders a wi …
2
votes
4answers
5k views
C#: Get list of open windows form instance that are excuted from different assembly.
I have a 'loader app' that loads a menu and when user clicks the menu image button a list view opens based on the text
(if text = employee)
(Go to class A)
(Go to class B)
…
5
votes
8answers
279 views
create a object : A.new or new A?
Hi,
Just out of curiosity: Why C++ choose a = new A instead of a = A.new as the way to instantiate an object? Doesn't latter seems more like more object-oriented?
1
vote
2answers
41 views
Find where a class was instantiated
I have trying to solve the error : Fatal error: Cannot redeclare class
I have been looking everywhere and I can't find where the class was instantiated.
Is there anyway I can pri …
