1
vote
3answers
47 views
Dynamically created TextBox has no focus with MinimumSize and Font changed.
I have a strange one.
Create a new form. Then add the following function :
protected override void OnLoad ( EventArgs e )
{
if ( _goWrong )
{
this.MinimumSize = new System.Drawing.Size ( …
1
vote
1answer
15 views
jQuery Validation plugin attaches only to the first form
I have noticed a strange jQuery Validation plugin behaviour, possible a bug (tested with the latest version at http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js).
Suppose I have …
3
votes
2answers
479 views
Maven2 - problem with pluginManagement and parent-child relationship
from maven documentation
pluginManagement: is an element that is seen along side plugins. Plugin Management contains plugin elements in much the same way, except that rather than configuring …
3
votes
5answers
488 views
WPF Font: Why are some characters missing?
I'm writing a WPF app and the font that I am using only has problems running in WPF - it works fine using it in anything else (notepad, wordpad, etc.). The problem with WPF is that it falls back to …
0
votes
4answers
313 views
Why does my CSS (apparantly) force a scrollbar to appear regardless of content size?
I apologize for the long paste of code here, but this has been bugging me for a good few hours now. I'm working on porting my entire site over into a new template, and I'm trying to make the various …
2
votes
3answers
265 views
Type.GetInterface and nested types
Hi,
I just discovered a very strange behavior with Type.GetInterface and nested Types.
The following sample code will show the problem, I am using the Type.FullName of an interface to check whether …
