Link to home
Start Free TrialLog in
Avatar of ajam
ajam

asked on

C application a float on top of an application written in another language

 I have an smalltalk application that takes up the entire screen and a c toolbar application.

      I want the c toolbar application  to stay a float on top of the smalltalk application without taking focus from the smalltalk application.

      OS/2 Warp client - non windows
      How do I do this?
      Need code.
thanks
Avatar of marvinm
marvinm

use CreateWindowEx() with extended style WS_EX_TOPMOST.
If your using windows API that is.
Avatar of ajam

ASKER

Edited text of question
or use SetWindowPos API with HWND_TOPMOST for the handle to the window of your toolbar.
I suggest you delete this question and ask again in the OS/2 area.
This really isn't about the C language...
ASKER CERTIFIED SOLUTION
Avatar of nebeker
nebeker

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial