DTPicker Resizing

L

Lonnie

I am using Excel 2003 (SP2) and dropped a 'Microsoft Date and Time Picker
Control 6.0 (SP6)' onto the worksheet. When I close and reopen the workbook
the DTPicker resizes to about five times the original height. It does not
change in width. I have seen other forums with people having the same issue,
but have not seen any options that work. This has also been tested on a
machine with Excel 2003 (SP3).

Thank you,

Lonnie
 
A

Allllen

I have had that before and I didn't find the answer.
The workaround we found was to change to another sheet before saving the file.
When you reopen, you see the other sheet. And when you change back to the
sheet with the DTpicker it is the right size.
 
P

psmart

I had this issue, but the cure was to unfreeze then refreeze panes on the
workbook open event.
Private Sub Workbook_Open()
Sheets("Missed Orders").Activate
Range("C4").Select
ActiveWindow.FreezePanes = False
ActiveWindow.FreezePanes = True
Range("C4").Select
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top