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 …
2
votes
1answer
50 views
Is every application using anything dependent on VC++9 runtime required to have a manifest embedded?
I don't get what this article on R6034 says. Looks like it states that every application dependent on VC++9 runtime must have a manifest.
Now we have a DLL that we ship to custome …
2
votes
7answers
166 views
C#: How to generate an instance of an unknown type at runtime?
i've got the following in C#:
string typename = "System.Int32";
string value = "4";
theses two strings should be taken to generate an object of the specified type with the speci …
0
votes
1answer
36 views
Silverlight 3 Dataform - how to add fieds at runtime.
I am creating a DataForm from dynamic data (so I can't create the columns in the xaml), I currently create columns for my DataGrid (I have not worked out how I can create a button …
0
votes
1answer
82 views
Microsoft VC Runtime Requirement and SXS error for Setup Custom Action in Vista
I created a setup project with VS2005 for an application that I'm developing, which installs fine on Windows 2000 and XP, but when I try to run the installer on Vista, it gives the …
-2
votes
3answers
55 views
starting vlc player in java
Hey!
I tried to start vlc player in Java, but somehow it did not word.
Any other Prog I tried worked.
Plz have a look at my code:
try {
Runtime.getRuntime().exec("K:\\... …
1
vote
4answers
77 views
How to create a .NET executable through a .NET windows forms application?
As described in the title I would like to develop a Windows Forms Application in .NET that is capable of creating at run-time another .NET command line or windows form executable a …
1
vote
5answers
74 views
Substitute (override) class implementation at Runtime (Java)
Is there any way of substituting (overriding) a Java class implementation, which is already loaded by the System class loader by another implementation (available as an array of by …
2
votes
3answers
91 views
Why are Runtime Exceptions “unchecked” in Java?
Why does it make sense to have Runtime Exceptions UnChecked (as opposed to if they were Checked)?
0
votes
2answers
31 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 …
3
votes
1answer
86 views
java classloader and runtime compilation
Hi all,
Despite warnings to drop my present course of action, I currently see no better way to solve my problem. I must generate Java code at runtime, then compile it, load it and …
0
votes
1answer
101 views
Create a class at runtime - Why do NSClassFromString AND objc_getclass return nil ?
I've tried using both:
NSClassFromString and objc_getclass
to return a class, so I can create it at runtime, but both functions return nil for some classes, for example "TestCla …
0
votes
2answers
67 views
Adding Java Annotations at Runtime
Is it possible to add an annotation to an object (in my case in particular, a Method) at runtime?
For a bit more explanation: I have two modules, moduleA and moduleB. moduleB dep …
7
votes
5answers
187 views
A fundamental problem in .NET runtime. If statement Weirdness
Hello,
I've come across a problem so strange, that I've recorded my session because I didn't think anyone would belive me.
I came across a bug that seems to be at very fundamenta …
0
votes
1answer
24 views
Silverlight control locked in runtime
I have a online survey running in Silverlight. Out of more than 1000 onetime users, there are three users than cannot open a combobox on the first page. The control seems disablet …
