Date Picker wil not be visible
After this line:
DateFrm.ValDate.Visible = True
Put this:
DoEvents
and see if that makes a difference
If not then do:
DateFrm.Repaint
RBS
"JayDe" wrote in message
...
Hi
I have a form with the Microsoft Date and Time Picker Control 6.0 (SP 6)
When I initilize the firm i have something like this in my code:
DateFrm.ValDate.Visible = False
and when the form is showing this control is of course not showing.
Later in my code I have this statement
DateFrm.ValDate.Visible = True
The problem is that the control is also not showing this time
Any idea of what can be the problem.
Regards
JayDe
|