Removing taskbar button

BlitzPlus Forums/BlitzPlus Programming/Removing taskbar button

Tracer(Posted 2004) [#1]
Anyone figured out how to remove an apps taskbar button? (and no, i cannot make it a tool window in this case)

Tracer


Eikon(Posted 2004) [#2]
Win = CreateWindow("", 0, 0, 0, 0, 0, 16)
Main = CreateWindow("", 0, 0, 320, 240, Win, 1 + 2 + 4)

Repeat: Until KeyDown(1) Or WaitEvent() = $803



Tracer(Posted 2004) [#3]
ahh

Should've thought of that :)

Tracer