News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

creating custom shape windows

Started by anuradha, March 12, 2007, 09:21:00 PM

Previous topic - Next topic

anuradha

there are some programmes use images(.jpg,.png,...) as their interfaces.is this possiable in  assembly.need help please.
(sorry for my bad english)

Vortex

This custom windows shape demo comes with the masm32 package :

\masm32\examples\exampl07\mob\cws

anuradha

Thanks vortex .it was very use full .thanks once again

anuradha

I'have seen some programmes users transparent windows.is there any API function to do this .can anyone help me please :toothy

PBrennick

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
The GeneSys Project is available from:
The Repository or My crappy website

Biterider

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

MichaelW

anuradha,

Do you mean transparent, or translucent (semi-transparent)? The attachment contains a simple translucent dialog demo.



[attachment deleted by admin]
eschew obfuscation

anuradha

Thanks Michel It was good  :U :U