The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => RadAsm Support Forum => Topic started by: x-dream on July 17, 2005, 02:22:27 PM

Title: Name my dialog
Post by: x-dream on July 17, 2005, 02:22:27 PM
Howcome i cant name my dialog when i create one it gets #defined to an id? Thanks.
Title: Re: Name my dialog
Post by: 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
Title: Re: Name my dialog
Post by: x-dream on July 17, 2005, 03:56:41 PM
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?



Title: Re: Name my dialog
Post by: KetilO on July 17, 2005, 07:51:56 PM
You need to do a InitCommonControlsEx.

KetilO