Tagged Questions

3
votes
2answers
244 views

Second WPF project in one solution gives log4Net error

I am totally confused with the following error. I have my application which works perfectly fine and uses log4net for logging. I will now be implementing my own updater system. And I want it to be ...
3
votes
4answers
924 views

Visual Studio 2008 Warning About Changes to Designer-Generated Code

This question is kind of anecdotical but still interesting to me; I was wondering why Visual Studio 2008 is not loving the following use of constants: public class Service101 : ServiceBase { /// ...
2
votes
1answer
565 views

Compact Framework: Failed to use InputPanel in a control

I developed a control that uses the PDA's InputPanel to interact with the user. The relevant part of the code is below: namespace MyNamespace { // ... using Microsoft.WindowsCE.Forms; ...
0
votes
1answer
119 views

Visual studio designer saves everything to .resx instead of .designer.cs

I have just got a project handed to me where the Visual Studio Windows Forms designer saves most of the properties to the .resx-file instead of the .designer.cs file as usual. Its really irritating ...
0
votes
2answers
378 views

Errors in VisualStudio when opening UserControl in designer

Background: I have created this UserControl. In the constructor of the user control I call a function that retrieves some values from the database. If an error occurs while retrieving the values a ...