Tool Window

BlitzPlus Forums/BlitzPlus Beginners Area/Tool Window

Siopses(Posted 2007) [#1]
How would I make a function to close JUST a tool window and not just end the whole program? I really am stumpted,
I have no idea what I would do to accomplish this. There is no already created function to do this.


skidracer(Posted 2007) [#2]
FreeGadget windowgadget


Siopses(Posted 2007) [#3]
THANK YOU! I'm a naive SOB, thank you.
Help MUCH appreciated,
Siopses


Andres(Posted 2007) [#4]
Select ActiveWindow()
    Case ToolWindow
         FreeGadget ToolWindow
    Case AnotherToolWindow
         FreeGadget AnotherToolWindow
    Default
         FreeGadget MainWindow
         End
End Select



Siopses(Posted 2007) [#5]
Thanks for the help Andres, but I've already solved the problem.