[done] Window without border and not in Taskbar
Posted: Wed Dec 03, 2014 5:08 pm
Hi,
I'm just writing a cross-platform solution and need to show some notifiers on the desktop. I want to open a window for this, but I can not get it to have no border and no entry in the taskbar. Maybe I simply missed a parameter or combination or was there something in the documentation? Maybe a stupid question
To get rid of the TaskBar entry, I tried the combination of #PB_Window_BorderLess | #PB_Window_Tool but with no success. In that case, it always gets a border again. Currently working on Windows, but I need it to work in general on all platforms.
Kukulkan
I'm just writing a cross-platform solution and need to show some notifiers on the desktop. I want to open a window for this, but I can not get it to have no border and no entry in the taskbar. Maybe I simply missed a parameter or combination or was there something in the documentation? Maybe a stupid question
Code: Select all
If OpenWindow(0, 100, 200, 195, 260, "PureBasic Window", #PB_Window_BorderLess)
Repeat
Event = WaitWindowEvent()
If Event = #PB_Event_CloseWindow ; If the user has pressed on the close button
Quit = 1
EndIf
Until Quit = 1
EndIfKukulkan