Just a quick one, What do I need to add to the code below to stop the application from showing on the taskbar ?
I have searched the forum first but I could not make the examples work !
Code: Select all
win = OpenWindow(0, ScreenWidth()-250, ScreenHeight()-170, 220, 86, #PB_Window_BorderLess, "Database Test")
CreateGadgetList(win)
WebGadget(0,0,0,220,100,"http://server/intranet/check/check.php")
Repeat
Select WaitWindowEvent()
Case #PB_EventGadget; check for a pushed button
Case 1 ; #PB_EventCloseWindow
Quit = 1
EndSelect
Until Quit = 1Andy ( aka Large )

