Tagged Questions

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 { /// ...
1
vote
1answer
81 views

Compact Framework, Custom TabControl, Designer interactions

I'm considering making a custom TabControl for the Compact Framework 3.5, one that has Designer interactions enabled. All my research so far has led me to solutions for a control targeting the full ...
1
vote
2answers
36 views

Visual Studio User Contol Design

If you have a user control with a field like public int number = 10; can you make that value come up in the properties box when you use the designer in VS 2010 and C#?
1
vote
2answers
126 views

Can visual studio designer show classes inheriting generic types?

I am trying to clean up all designer errors in our solutions and ran into the following error: The designer could not be shown for this file because none of the classes within it can be designed. ...
0
votes
1answer
41 views

how create designer in Visual Studio 2010? [closed]

I created an item template that generates a .CS file and adds it to the project. I want to create a DESIGNER that is shown everytime the user tries to open this .CS file from the Solution Explorer, ...
0
votes
2answers
127 views

WinForms control event handler gets removed when selecting another one and thus it becomes 'unreferenced'

Question about the WinForms designer and how to customize behavior. What I've seen multiple times is that when you select a different event handler for a button it will remove the old one (as in ,the ...
0
votes
0answers
165 views

What could have caused all of the controls on my form to disappear?

I am not sure what problem is, but after make a copy of my project..close and open it again..all the controls on my form disappear. become blank..(menu, toolstrip..) However i am still able to run ...
0
votes
1answer
353 views

Pointing a ConnectionString to a special folder via Visual Studio Designer

I'm trying to set a DataAdapter connection string to point to %APPDATA% from within Visual Studio designer by editing the DataAdapter properties. I cannot seem to be able to use that moniker on the ...
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 ...