Eljay's reply to DateTimeControl
quote:
Originally posted by go2hell
(Also i believe there is a bug with hidden controls because if I change their value they get visible again, and i couldn't find a way to set the control visible attribute to false again)
You can use the Windows API
code:
var SW_HIDE = 5;
var SW_SHOW = 0;
Interop.Call('user32', 'ShowWindow', PlusWnd.GetControlHandle('MyControlId'), SW_SHOW);