Show a window without lost focus

Hi there. I have exactly this need, but on windows. Is that possible?

Thanks a lot!

Const SW_SHOWNA = 8
Declare Function ShowWindow Lib "User32.dll" (hWnd As Integer, nCmdShow As Int32) As Integer
Call ShowWindow(Window2.Handle, SW_SHOWNA)
2 Likes

Great! Many thanks!

1 Like