Tagged Questions

6
votes
2answers
840 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
181 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
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 ...
0
votes
4answers
234 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
2answers
97 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
1answer
351 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 ...