StickyWindow() v Windows 10 Start menu

Just starting out? Need help? Post your questions and find answers here.
BlindMan
User
User
Posts: 32
Joined: Thu Aug 30, 2018 11:34 am

StickyWindow() v Windows 10 Start menu

Post by BlindMan »

Is there a way to make app window display on top of the Windows 10 Start menu?

StickyWindow() doesn't appear to work in this instance.
BarryG
Addict
Addict
Posts: 3324
Joined: Thu Apr 18, 2019 8:17 am

Re: StickyWindow() v Windows 10 Start menu

Post by BarryG »

My mistake. I misread it as meaning the tasbar.
Last edited by BarryG on Fri May 24, 2019 10:28 am, edited 1 time in total.
BlindMan
User
User
Posts: 32
Joined: Thu Aug 30, 2018 11:34 am

Re: StickyWindow() v Windows 10 Start menu

Post by BlindMan »

The menu displayed when I right mouse click or left mouse click on the taskbar Start button display on top of this sticky window. Is there a way to keep PB window on top?

Code: Select all

If OpenWindow(0, 100, 200, 195, 260, "PB5.70x64 Sticky Window", #PB_Window_SystemMenu)
  StickyWindow(0, #True)
  Repeat
    Event = WaitWindowEvent()
  Until Event = #PB_Event_CloseWindow 
EndIf
End
Post Reply