Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
3k views

Excluding FxCop rule in source

In a project I'm working on FxCop shows me lots of (and I mean more than 400) errors on the InitializeComponent() methods generated by the Windows Forms designer. Most of those errors are just the ...
6
votes
2answers
803 views

That assembly does not allow partially trusted callers. InitializeComponent()

Scenario: I am in the process of refactoring one of our applications to use Nhibernate and came across this issue a couple weeks back. The issue was originally with Nhibernate and Castle and to solve ...
5
votes
1answer
179 views

Optimizing Performance of Winforms InitializeComponent automatically

I have a program with a full GUI that takes around 750ms to load thanks to InitializeComponent(). After some research, it seems there are a few techniques to improve the time it takes for .NET to ...
4
votes
3answers
290 views

Make a C# program be able to compile on any operating system

I have started making a C# program on a XP 32bit windows operating system in c# 2008, and now i am trying to open it in Windows 7 64bit operating system. The problem that arises is that i can't run ...
2
votes
3answers
1k views

The name 'InitializeComponent' does not exist in the current context

If I create a new project in Visual Studio 2010 SP1 and select "WPF Application" and tries to build the generated application, I get the error "The name 'InitializeComponent' does not exist in the ...
2
votes
1answer
160 views

Clean elegant solution to form-class level component collection initializing before Initialize Component?

I am converting an old Vb6 solution to .net 2.0 in vs2010. I've been working in C# for about 3 years now and .net for 5. I don't recall having this problem in C#, but if I want initialize a readonly ...
2
votes
2answers
1k views

How to provide custom code for InitializeComponent?

When you modify column headers of a ListView at design time, the designer generates code to serialize column headers at run-time: private void InitializeComponent() { this.listView1 = new ...
1
vote
1answer
214 views

Form.OnResize triggered during InitializeComponent()

I have the same UI code running on my XP English machine and on XP Japanese machine. For some reason - the behavior is different between those two machines: On the Japanese machine the OnResize event ...
0
votes
4answers
230 views

Application crashes in InitializeComponent()

First off, I'm using Visual Studio 2010, Measurement Studio 2010 plugin, C# and .NET 4.0. My application receives data from a USB device and graphs the data using a WaveformPlot() [which is a part of ...
0
votes
1answer
140 views

InitializeComponent() Error Help

Im a beginner programmer for Visual Studio 2005 and coding in VB and i required some help. I've been hitting this error everytime i call InitializeComponent() : ComException was unhandled Class ...
0
votes
2answers
93 views

How to prevent Design View from using default constructor?

Situation: I am making a Collapsible Panel. In my business situation, I am required to have the panel support the following: A "direction" (ie, will it dock top, bottom, left, or right). This ...
0
votes
0answers
60 views

Weird looping in the method “MainForm.InitializeComponent()”

I do not know why when I try to use (VS2010) the method "DAOLBW.GetLBWConnection()" from the scope of the class "MainForm" the system enters into a sort of looping, forever calling the line ...
0
votes
0answers
26 views

How can I remove a checkbox from a panel through the Designer?

This is probably too easy, but... Can anyone tell me how to add or remove a checkbox from a panel by using the Designer? The only samples I could find online had the code nside an arbitrary method ...
0
votes
2answers
77 views

IntializeComponent keeps getting overwritten

I have some conditionals in my InitializeComponent which affect the layout based on some variables. Unfortunately, it seems like whenever I rebuild my application, this code is reverted back to its ...
0
votes
1answer
350 views

dispose() and initializeComponent() method in C# make problems

I'm new to c# and have a problem with the methods i've told you in the title. the code is a little bit long so i posted it to pastebin. i'm using the 32feet.net api to list up bluetooth devices in a ...
0
votes
1answer
165 views

WPF C#: Starting crash due to client 'Region and Language' settings

I'm working on a WPF C# application, and it seems to crash with a few random people. So eventually I found out it was the 'Region and Language' settings that was responsible. For example, if I were ...