NumericUpDown Draw Problem

will2

New member
Joined
Aug 8, 2008
Messages
1
Programming Experience
1-3
I am using Visual Studio 2005 with .Net 2.0
I am also running Windows XP on a 64 bit processor.

I am having a problem with the NumericUpDown control. Any time I add it to a form everything goes really slowly and only part of the NumericUpDown control is actually drawn. Everything else works fine.

I don't know what it could possible be. 64 bit issue?

And help would be much appreciated.

Thanks
 
Hello.

Does this also happen when you add other controls?

To prevent the control to be only partly drawn you could sent an Me.Refresh straight behind it, which means that the whole form gets redrawn. Also make sure that it is not behind some other controls which could be in front of it.

Bobby
 
Back
Top