Hi remsor
Mike (mgagnon) kindly posted the below code for me sometime ago which hides the taskbar when you start up and allows it to reappear when your done!
(Thanks again to Mike....)
The actual thread can be found at thread184-510903 but just in case, here's the code:
*To turn off the taskbar use this at the start of your code
* Code written by Eric den Doop
MESSAGEBOX("Click OK to hide the taskbar"

HideTaskBar()
FUNCTION HideTaskBar
DECLARE LONG FindWindow IN "user32" STRING lpClassName, STRING lpWindowName
DECLARE LONG SetWindowPos IN "user32" LONG hWnd, LONG hWndInsertAfter, LONG x, LONG Y, LONG cx, LONG cy, LONG wFlags
#DEFINE WINDOWHIDE 0x80
#DEFINE WINDOWSHOW 0x40
LOCAL lnHandle
lnHandle = FindWindow("Shell_TrayWnd", ""

SetWindowPos(lnHandle, 0, 0, 0, 0, 0, WINDOWHIDE)
ENDFUNC
*To turn it back on again use this code when your ready to quit to your APP
SHOWTASKBAR()
FUNCTION ShowTaskBar
DECLARE LONG FindWindow IN "user32" STRING lpClassName, STRING lpWindowName
DECLARE LONG SetWindowPos IN "user32" LONG hWnd, LONG hWndInsertAfter, LONG x, LONG Y, LONG cx, LONG cy, LONG wFlags
#DEFINE WINDOWHIDE 0x80
#DEFINE WINDOWSHOW 0x40
LOCAL lnHandle
lnHandle = FindWindow("Shell_TrayWnd", ""

SetWindowPos(lnHandle, 0, 0, 0, 0, 0, WINDOWSHOW)
ENDFUNC
Good luck and kindest regards
KB
When everything else is said and done, there will be nothing else to say or do