dtPicker Size problem

C

Cody Dawg

Strange problem with the dtPicker tool. On some forms, when the drop down
arrow is pressed, the calendar appears very, very tiny. Actually
unreadable. On other forms, it seems to work fine.

Has anyone run into this problem and found a resolution?
 
C

Chris Mitchell

I presume dtPicker is date picker. If so where do I find this and how do I
use it?

Novice at play.
 
C

Cody Dawg

I've looked everywhere but I cannot find any documentation detailing how to
programatically size the dtPicker control.

Any ideas?
 
K

Ken Slovak - [MVP - Outlook]

Do it in the Item_Open event handler in the form and use code like
this:
dtPicker.Height = a number
dtPicker.Width = another number
 
Top