0
votes
1answer
22 views
Override default Show behaviour / SetVisible of TForm’s descendant (Delphi VCL)
I would like to alter the Show default behaviour of a TForm's descendant (for eg. instead of showing itself on the screen, I would like to place it on a page control as a new tabsh …
1
vote
4answers
51 views
Looping through known properties in an object
I've got an object containing 30 properties that I know the names of. The properties are called "ValueX" (1-30) where X is a number.
How would I call value1 - value30 in a loop?
0
votes
2answers
52 views
Get property value dynamically
I have an object which has a huge number of properties. I'd like to get the value of each of those properties by simply looping through the properties collection of the object.
I' …
1
vote
10answers
144 views
Communicate between two windows forms in C#
I have two forms, one is the main form and the other is an options form. So say for example that the user clicks on my menu on the main form: Tools -> Options, this would cause …
0
votes
1answer
34 views
Objective-C - simple setting property example erroring with ‘request for ___ in something not a structure or union’
Hi all, I've been banging my head with this one this evening and am sure it's something very simple that I've missed
I've created a new project with the appdelegate and a view con …
0
votes
2answers
39 views
Accessing object properties from within another object (JavaScript / jQuery)
Hi,
I am trying to access properties of a config object from within another object:
var myConfigObj = {
$myCachedSelector: $('#mySelector')
}
var myObj = {
$selector: myConf …
0
votes
2answers
26 views
Can I add Runtime Properties to a Python App Engine App?
Coming from a java background I'm used to having a bunch of properties files I can swap round at runtime dependent on what server I'm running on e.g. dev/production.
Is there a me …
2
votes
3answers
42 views
Propogating a “volatile” property
I put "volatile" because it's only vaguely so.
I have a class which has a property called "StopRequested". This flag can be set by other threads at any time, and needs to indica …
4
votes
2answers
32 views
Allowing any property/attribute on a server/usercontrol
I've noticed that on most, if not all, standard web controls in the System.Web.UI.WebControls namespace, you can add any properties you want to them without crashing the page.
Tak …
2
votes
2answers
53 views
.NET - When should I use a property vs. variable + accessor functions?
Is there ever a situation where I should do the following in .NET instead of using a property with read/write capability?
private S as string
public function GetS() as string
…
0
votes
0answers
14 views
Can I set Properties directly in the Context Menu? C#
Following idea:
I have a Game Level editor, which should be as simple as possible (I don't want to program something too complex). But that does not mean that the tool should be un …
3
votes
3answers
64 views
How do I compare the fields/properties between POCOs?
Let's say I have a POCO:
public class Person
{
public string Name { get; set; }
public DateTime DateOfBirth { get; set; }
public IList<Person> Relatives { get; s …
0
votes
2answers
92 views
How to get a property name?
This might seam like a strange question but....
public string MyProperty
{
get
{
return "MyProperty";
}
}
How can I replace the return statement go it return …
2
votes
2answers
40 views
Writing a maintainable commit method
I have a ViewModel that encapsulates some properties that are being edited in an options dialog. I can't actually save them to the settings until they hit the Ok button, which wil …
0
votes
4answers
79 views
Using properties defined at a per-instance level not per-class
What I am trying to achieve is something like this:
class object:
def __init__(self):
WidthVariable(self)
print self.width
#Imagine I did this 60frame …
