News:

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

Name my dialog

Started by x-dream, July 17, 2005, 02:22:27 PM

Previous topic - Next topic

x-dream

Howcome i cant name my dialog when i create one it gets #defined to an id? Thanks.

KetilO

Hi x-dream

The default for RadASM is using ID's.
If you don't want the ID, just remove it from the properties window.

KetilO

x-dream

Quote from: KetilO on July 17, 2005, 03:37:07 PM
Hi x-dream

The default for RadASM is using ID's.
If you don't want the ID, just remove it from the properties window.

KetilO

Thanks that worked i set the id of the dialog to 0. Now i have a new problem.

When i put a SysTabControl32 in my dialog my DialogBoxParamA call fails it returns:

ERROR_CANNOT_FIND_WND_CLASS (0000057F)

When i remove the SysTabControl32 the DialogBoxParamA works fine, whats the problem?




KetilO

You need to do a InitCommonControlsEx.

KetilO