dtPicker Size problem

  • Thread starter Thread starter Cody Dawg
  • Start date Start date
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?
 
I presume dtPicker is date picker. If so where do I find this and how do I
use it?

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

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