PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → Always on top Window
Always on top Window
Iniciado por jflietstra, 18,dic. 2003 12:35 - No hay respuesta
Publicado el 18,diciembre 2003 - 12:35
I want to set a Window "alway on top"
In Clarion we use the following API Call.
SetWindowPos(0{Prop:Handle},-1,0,0,0,0,0010h+0002h+0001h)

I Have convert this to
windowHandle is int
windowHandle = Handle(ChooseBookMarks)
API("USER32","SetWindowPos",windowHandle,-1,0,0,0,0,0010+0002+0001)

But the window is not alway on top and i see a snapshot from the background ni the window.
How can i do this in Windev?