The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => RadAsm Support Forum => Topic started by: Ficko on August 20, 2009, 08:58:20 AM

Title: Property Pages Dialog
Post by: Ficko on August 20, 2009, 08:58:20 AM
Hi KetilO! :lol

A question.

I like to make a custom property dialog like VS has to make it more easy put cmd line switches  together.
- Because some C compilers have over 10 pages of description possible combinations of flags can be used and often you have to switch between different type of builds. -

Is there a place (or can you make one :bg) to plug such dialog in?
Or maybe, is there an easy way to replace the existing "project options" dialog?

Thanks beforehand,
Ficko

P.S.
Attached pic about the type of dialog I am thinking of.




Title: Re: Property Pages Dialog
Post by: KetilO on August 20, 2009, 11:25:02 AM
Hi Ficko

Create an addin that hooks AIM_COMMAND
Test for IDM_PROJECT_OPTIONS equ 44006
Show your dialog and return TRUE to prevent RadASM showing its dialog.

KetilO
Title: Re: Property Pages Dialog
Post by: Ficko on August 20, 2009, 12:20:38 PM
Thanks!

That sounds easy will try it! :U