use this command wherever you need
this will hide a window by its
handle
Code:
ShowWindow(EnterHandle, SW_HIDE); // Enter
Handle of Window wich needs to become invisible
or
ShowWindow(FindWindow(EnterClassName,nil), SW_HIDE); // EnterClassName can be something like TForm1 etc, adjust to your
or
ShowWindow(FindWindow(nil,'Enter Forms Caption'), SW_HIDE); // self explaining
replace SW_HIDE with SW_SHOW to bring it back
use this code careful, it can be used to also tweak control (in and outside of your program)