The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => RadAsm Support Forum => Topic started by: minor28 on February 08, 2010, 09:59:18 AM

Title: RadAsm Addin problem.
Post by: minor28 on February 08, 2010, 09:59:18 AM
I intended to update my comtool addin with the new AutomationEXE tool. I created an addin with the same code as the AutomationEXE.exe

The addin creates a popup menuitem (Automation) under RadAsm Project menuitem with 11 items.
The menu works ok and also the tool.

However when the addin is loaded nothing else works in RadAsm. Uninstalling the addin and all is working again.

I Tested to keep all menu items but disabled all code connected to the tool. Still nothing works when the addin is installed.

I cannot find anything peculiar with the code. It must be something wrong. The code is attached. Anyone?

Regards
Title: Re: RadAsm Addin problem.
Post by: KetilO on February 08, 2010, 02:59:43 PM
Hi minor28


.elseif edx == IDModules && eax == BN_CLICKED
invoke DialogBoxParam,hInstance,IDD_MAINDLG,0,0,0 ;offset MainDlgProc,46
.endif
mov hTLB,eax
mov eax,TRUE <-- This should be mov eax,FALSE


KetilO
Title: Re: RadAsm Addin problem.
Post by: minor28 on February 08, 2010, 04:35:30 PM
Thanks KetilO,

I have tryed everything but that. Now it works fine.