The MASM Forum

Projects => Rarely Used Projects => RadAsm IDE Support => Topic started by: ragdog on August 15, 2014, 05:22:09 PM

Title: Radasm (RaEdit) Addin
Post by: ragdog on August 15, 2014, 05:22:09 PM
Hi Ketil

I coding a new Addin for Radasm3 and i use the RaEdit control all works fine
But with set the color to this control have i little problems.


mov ebx,lpHandles
invoke SendDlgItemMessage,hWin,IDC_RAECODE,REM_SETFONT,0, addr (ADDINHANDLES ptr[ebx]).racf
mov ebx,lpData
invoke SendDlgItemMessage,hWin,IDC_RAECODE,REM_SETCOLOR,0,addr (ADDINDATA ptr[ebx]).radcolor.racol


Greets,
Title: Re: Radasm (RaEdit) Addin
Post by: ragdog on August 17, 2014, 12:25:03 AM
Have a other a idea?
here is the project


is the same code like

fbedit-code-2994\RadASM30\RadASM30\Sniplets.asm
or
fbedit-code-2994\RadASM\Edit\Sniplets.asm
Title: Re: Radasm (RaEdit) Addin
Post by: KetilO on August 18, 2014, 09:49:13 PM
Hi ragdog

Unfortunatly the current version of RadASM does not create a global class for RAEdit.
This makes it cumbersome to inherit keywords from RadASM.

Included in the zip is a version of RadASM that creates a global class.

KetilO
Title: Re: Radasm (RaEdit) Addin
Post by: ragdog on August 23, 2014, 04:26:42 AM
Hi Thanks

Ahh ok

Quote
Unfortunatly the current version of RadASM does not create a global class for RAEdit.
I must use "invoke     InstallRAEdit,hInstance,FALSE"  ? ?

Nice it support now in the new version on your Svn

Regards,