there are some programmes use images(.jpg,.png,...) as their interfaces.is this possiable in assembly.need help please.
(sorry for my bad english)
This custom windows shape demo comes with the masm32 package :
\masm32\examples\exampl07\mob\cws
Thanks vortex .it was very use full .thanks once again
I'have seen some programmes users transparent windows.is there any API function to do this .can anyone help me please :toothy
anuradha,
Create your window as usual using CreateWindowEx and then add the following extended style. I have never done this myself so I have no code.
Quote
WS_EX_TRANSPARENT
Specifies that a window created with this style is to be transparent. That is, any windows that are beneath the window are not obscured by the window. A window created with this style receives WM_PAINT messages only after all sibling windows beneath it have been updated.
Paul
Hi
In the ObjAsm32 package is a project called Skin, which implements a strechable skinned window (with controls) and matching skinned dialogs. The complete source is included.
Regards,
Biterider
anuradha,
Do you mean transparent, or translucent (semi-transparent)? The attachment contains a simple translucent dialog demo.
[attachment deleted by admin]
Thanks Michel It was good :U :U