1
vote
3answers
1k views
How to prevent ToolStrip from docking in another ToolStripContainer?
I have an MDI application that allows me to open different types of child windows. I can open multiple (but different) instances of the same type of child window. (Example: I can open 3 instances …
0
votes
5answers
120 views
Why are signed assemblies slow to load?
I encountered a strange problem this week that I can't explain: I switched my application to use the signed version of some third party assemblies (Xceed Grid and some of their other components) an …
28
votes
Hidden .NET Base Class Library Classes?
TextRenderer.MeasureText() is great for figuring out how large to draw your text. So often I see:
// this == something derived from Control
Graphics g = this.CreateGraphics();
Size …
-1
votes
Using .Net, how can I determine if a type is a Numeric ValueType?
Use Type.IsValueType() and TryParse():
public bool IsInteger(Type t)
{
int i;
return t.IsValueType && int.TryParse(t.ToString(), out i);
}
…
1
vote
Code Coverage on Visual Studio Team System 2008 Developer Edition (on an NUnit application)
Here's a tutorial on integrating NCover with MSBuild. …
0
votes
.NET 3.5 published in 11/07 .NET 3.0 in 11/06. Why are most people still using .NET 2.0?
For government processing, the 3.5 framework is not yet approved for some environments so you're forced to use 2.0 or 3.0.
…
0
votes
Can you recommend low cost automated testing tools for a .NET Winforms application?
Use the Microsoft UI Automation portion of the .NET framework (System.Windows.Automation). It will automatically …
0
votes
UserControl as an interface, but visible in the Designer
It almost seems like you want to implement a mediator pattern. Instead of having to deal with each of the bazillion UserControls directly, you'd interact with them through the mediator. Each medi …
0
votes
0
votes
What options are available for the layout of directed or undirected graphs in .NET?
Northwoods offers a pure .NET solution in their GoLayout prod …
2
votes
Do dotnet projects in Visual Studio always compile into a single file?
For your simple projects, yes, you'll always get one assembly per project. However, if you move towards more production ready software the answer is different. Let's say you want to deliver a DLL …
