0
votes
1answer
18 views
java.util.logging.config
Is there a way to set the location of the properties file withough specifying a JVM param such as -Djava.util.logging.config.file=log.properties ?
1
vote
4answers
39 views
Control Properties in Visual Basic 6
Is there a way to ask for a control property in a loop??
I need somethig like this:
For each p in control.properties
if p = "Value" then
msgbox "I Have Value Property"
elseif p = …
6
votes
8answers
170 views
C# property, is it possible to get around defining get without defining set (no backing variable)?
Lets say you have a Class with 300 properties with no backing variables, each of those properties returns a decimal/double.
Example:
public decimal MathValue { get; set; }
Now you decided that …
7
votes
8answers
279 views
+150
Crowdsourcing a Complete list of Common Java System Properties and Known Values
I've been inspired by another question: Best Practice for Using Java System Properties
I'm currently looking for a complete list of Java system properties and possible values. I'm working on a simple …
0
votes
2answers
32 views
how to remove unnecessary properties from user control?
hi all, i want to remove unnecessary properties from user control. But I do not know what way?
1
vote
7answers
174 views
Is there a syntactic sugar C# property syntax to instantiate generic collections?
The following program will fail because Contracts is not instantiated.
Of course I can instantiate it in my constructor but if I have dozens of properties and/or multiple constructors I have to keep …
2
votes
1answer
37 views
loading .properties in spring-context.xml and persistence.xml
Hi,
is there a way to reference a .properties file in a spring-context.xml and a JPA persistence.xml?
I think I've seen somewhere an example of this in spring context files, though I can't remember …
0
votes
2answers
68 views
Property Refuses to Synthesize
I've been going through the screencasts here to learn how to write a table-based iPhone application, and it's been going pretty smoothly so far. Presently I'm halfway through the third episode, and …
4
votes
2answers
132 views
+150
Grails indexed parameters
I have a list of Team objects that have an Integer seed property. I want to edit all the teams' seeds at once, in a single form. I'm sure that Grails supports indexed parameters, but I can't get it to …
0
votes
3answers
56 views
How can you redefine a property using in reflection in C#?
Let's assume we have the following class:
public class tx_fct
{
int _ok;
public int ok
{
get
{
return _ok;
}
set
{
_ok = …
0
votes
1answer
69 views
Setting TTabControl color after XPManifest in Delphi
I have tabcontrol component on my form. After I put XPManifest, its color became white, I want to change it, but couldn't find color property. And I don't want to remove XPManifest as well. Is there …
1
vote
5answers
61 views
What is the accepted way to enforce proper value in property which depends on other properties of the same class?
Let's say I have a class which has three properties as below.
public class Travel
{
public int MinAirportArrival { get; set; }
public int MinFlightTime { get; set; }
public int …
1
vote
1answer
11 views
Declaring list and binding property values via XAML for a custom silverlight control
I feel like I've missed something obvious, but when creating a custom control in Silverlight I can declare properties as public and they will be exposed when making XAML declarations, so I can easily …
1
vote
4answers
59 views
Why am I getting a stack overflow when using properties in the constructor?
I have a non-static class in which i have several properties, ie serverURL, serverPort etc, and the class has a constructor. The constructor accepts arguments which it then uses to 'set' the …
0
votes
2answers
35 views
Log4J not adding newlines between logfile entries
I am just starting with log4j. I don't have a problem with it reading my properties file and actually logging events, but it seems to be appending everything to the end of the same line. My properties …
