0
votes
3answers
31 views
How to get the properties of a class using reflection (specifying how many levels of heirarchy) in C#.Net?
So for example:
class GrandParent {
public int GrandProperty1 { get; set; }
public int GrandProperty2 { get; set; }
}
class Parent : GrandParent {
public int ParentPr …
1
vote
2answers
25 views
Access properties file programatically with Spring?
We use the code below to inject Spring beans with properties from a properties file.
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
…
2
votes
3answers
67 views
What is the relationship between indexers and properties in C#?
Is an indexer an extended version of a property?.
2
votes
2answers
51 views
how to avoid triggering properties while debugging?
is there a way to prevent triggering of property getter code while watching variables in debug?
something in the style of the DebuggerStepThrough attribute?
0
votes
1answer
14 views
MSI Installer and custom folders
Hi!
I have an interesting problem. I created a MSI Installer for a .NET 3.5 Application. During the install process I ask the user for a custom folder name where application outpu …
1
vote
1answer
72 views
When is it ok to change object state (for instance initialization) on property getter access?
(except for proxy setup!)
I spent some time writing a question here regarding a better pattern for a problem I had - of a class that performed some conditional initialization on a …
1
vote
2answers
56 views
How can I edit a mutable property in Objective C?
Hello.
I am trying to edit a mutable array from a property and can't seem to directly make it work. Consider the following code that seems to work, but seems also very ineffici …
1
vote
3answers
14 views
Implicit conversion from void to XmlDocument
Probably a stupid question, but I'm quite new to the whole "get-and-set-property"-kind of programming;
I keep getting a compiling-error on this part of my code;
private string _F …
0
votes
3answers
48 views
Hide a column programmatically in MS-Access
I want to hide or show a column based on variable data from a users selection. How do you set a column to hidden in MS-Access 2003?
For Example,
After user change event...
For …
0
votes
0answers
19 views
Subsonic: How to add new properties and populate its data using Linq
I extend the Order Class generated by activerecord:
public partial class Order
{
private string _refCustomer;
public string RefCustomer {
get { r …
0
votes
1answer
27 views
asp.net passing string variable to a user control
Hi all,
I am trying to pass value of a code behind variable to a user control like:
<pv1:ShowPdf ID="ShowPdf2" runat="server" BorderStyle="Inset" BorderWidth="2px" FilePath=' …
0
votes
1answer
34 views
Spring Properties File
Hi. Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting …
0
votes
4answers
41 views
Best practice for assigning new objects to retained properties?
I am using Core Data for my iPhone app. My attributes are set with retained properties.
For example, a "number" attribute in a "Thing" entity:
#import <CoreData/CoreData.h&g …
1
vote
4answers
54 views
C# show browsable child properties in designer
Hi,
I'm using .NET C# with standard WinForms, not WPF.
I have this situation.
I'm creating a user control for a month calendar, similar to the .NET one but with a little more func …
0
votes
2answers
80 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 …
