0
votes
7answers
67 views
Question about reading properties of a class at run time in c# (.NET 2.0)?
Let's say I have a class that has 3 properties. I don't know which property I want to read until runtime. Is there a way to do this without a switch/if-else statement?
If a DataTa …
0
votes
3answers
27 views
@property and @synthesize: why both?
I have been climbing the learning curve of X-code for about two months now. I understand the purpose of the @property/@synthesize directives, but it seems that it is a bit redund …
0
votes
3answers
64 views
Type annotation for none abstract property
Any ideas on how I could add type annotation to fix this error?
I'm getting a red squiggly under Foo.Bar in getFooBar and the following error message for it.
Lookup on object of …
0
votes
7answers
61 views
Dynamic Property of JavaScript object?
I am wondering if this is possible in JavaScript, I want to have an Object which could contain dynamic properties.
Give an example:
function MyObject()
{
}
var myobj = new MyO …
1
vote
3answers
136 views
F# - Let and Property Assignment in one line
How can you write the following F# code (or similar) in one line:
let contextMenu = new ContextMenuStrip()
mainForm.ContextMenuStrip <- contextMenu
I have to declare contextM …
0
votes
3answers
70 views
Real Estate - Property Website - Using PHP - Any Suggestions?
Hello,
I had an enquiry from a potential customer who would like to build a Real Estate website. He was looking to provide access to Agencies who can list their properties and add …
0
votes
1answer
30 views
Can’t access property generated by a script in an imported ANT target.
What I'm trying to do is compile to a file which takes it's version from a constant inside my source files.
I have a setup like this (or at least the significant bits):
tasks/com …
0
votes
3answers
106 views
How do you make a property truly read only?
Take the following property:
public string Foo
{
get;
private set;
}
Using reflection, I can still set the value of this property from outside the owning class. Is there …
3
votes
3answers
80 views
How do I programmatically position a canvas in Silverlight?
I'm using Silverlight 3/C#, and I'm trying to create some XAML objects programatically in response to a user clicking on a button.
However, I can't seem to position a Canvas objec …
1
vote
1answer
18 views
Property & Private & extended class combination confusion of interface
I have downloaded a sample code of AA-Plot Chart.
One of the .h files:
@interface MainViewController : UIViewController <APYahooDataPullerDelegate, CPPlotDataSource> {
…
0
votes
2answers
69 views
Python: @staticmethod with @property
I want
Stats.singleton.twitter_count += 1
and I thought I could do
class Stats:
singleton_object = None
@property
@staticmethod
def singleton():
if Sta …
1
vote
3answers
128 views
C#: Problem calling method inside a string property setter
I have a string property that defines a filename for an xml file. When the user inputs this filename into the property, I have the setter calling a parseXml() function immediatly …
1
vote
2answers
35 views
Microsoft VBA idiom (Visio) For Testing Non-Existance of a property?
I need to ensure a Macro which works on Visio 2003 doesn't cause problems on lower versions of Visio: specifically because I'm writing to a property which doesn't exist on lower ve …
2
votes
1answer
31 views
WIX: Set a property based on a condition
This should be easy, but after several hours I’m coming up blank. ;(
I do a Registry Search (actually 2), because I need to check for either of 2 previous installs and then instal …
0
votes
2answers
56 views
C# Attach Property Control base class
I would like to know how to add a property from one of my user controls to the base controls property list. Is this possible?
So what I am doing is this:
private static List< …
