The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => RadAsm Support Forum => Topic started by: KetilO on January 13, 2006, 09:48:56 PM

Title: RadASM 2.2.0.6 released (01-13-2006)
Post by: KetilO on January 13, 2006, 09:48:56 PM
Get it here:
http://www.radasm.com/ (http://www.radasm.com/)

Whats new:

2.2.0.6
o Added option to manage Custom Controls.
o Added option to set how RadASM handles compiler errors.
o Added support for Lcc compiler system.
o Improved C parser (CppParse.dll)
o Improved Dialog Preview addin.
o Fixed bug where project wizard could loose it's font.
o Fixed bug where project wizard did not work on Win95 and Win98 with an older version of common controls.
o Fixed a bug where recent files menu could show wrong filename (DBCS fonts only).

KetilO
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: Tinieblaster on January 14, 2006, 08:32:56 AM
How can I remove the option to minimize on having given run?

Good work KetilO :clap: :clap:
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: Tinieblaster on January 14, 2006, 08:46:05 AM
in Preview Dialog, if Border Dialog = Flat or Boarder: how do I close it? earlier it was closing click in any place... now alone in WM_CLOSE

Thank
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: KetilO on January 15, 2006, 05:01:28 PM
Hi Tinieblaster

1. Alt+F4 will close the preview.
2. Use Option / Addin Manager. Select the ObjAsm32 addin and remove checkmark on Hide on Run

KetilO
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: Tinieblaster on January 15, 2006, 05:15:54 PM
Thank KetilO,it works this way well, thank you very much :wink :clap:
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: Mark Jones on February 14, 2006, 08:25:47 AM
Hi KetilO, I'm using 2.2.0.7. If there is a TAB at the beginning of a line, and the "Convert Tab to Space" option in Code Editor Options is enabled, further tabbing is 1 character short of where it should be. If the TAB character is deleted from the beginning of the line, then further tabs will line up correctly.

Thanks for making RadASM great! :bg
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: KetilO on February 14, 2006, 07:47:26 PM
Thanks Mark Jones

Bug fixed in RAEdit custom control.
New upload of the 2207 bugtest.

http://www.radasm.com/Upload/RadASM2207.zip

KetilO
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: Biterider on February 14, 2006, 07:48:59 PM
Hi KetilO
I noticed that something is going wrong with the internal lists when you do something on the menu entry "Options –> Colors & Keywords". What I can see is the when I press OK in the popup dialog, all object names become blue.
I'm using RadASM version 2.2.0.6, MASM, WinXP SP2.

Biterider
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: KetilO on February 14, 2006, 08:24:05 PM
Hi Biterider

Is it the syntax coloring in the code edit window that fails?

KetilO
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: Biterider on February 14, 2006, 09:41:34 PM
Yes, it seems so. An object name has normally the text color, but after doing somethif on the described dialog, they are drawn in blue color.

Biterider
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: KetilO on February 15, 2006, 09:21:33 AM
Hi Biterider

The problem is that you use uppercase S (structure defined in api file) to identify objects in the wordlist.
The problem was solved by only scanning the wordlist up to the point where project variables are added.

KetilO
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: Biterider on February 15, 2006, 09:27:40 AM
OK, I see it. Thanks.

Biterider
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: Mark Jones on February 15, 2006, 09:34:28 PM
Hi KetilO, would it be possible to create Intellisense reporting for macros?

P.S. tabbing works great now, thanks! :U
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: KetilO on February 16, 2006, 07:46:30 AM
Hi Mark Jones

The intellisense handling is quiet messy right now. I will have to clean up the code before adding new features.

KetilO
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: Mark Jones on February 21, 2006, 04:04:17 AM
 Hi Ketil, technical question please. When I run myfile.exe from c:\masm32,


    invoke GetCurrentProcess                        ; make sure <this app>
    invoke GetCurrentDirectory,255,addr SelfDir     ; get current directory
    invoke MessageBox,hWnd,addr SelfDir,0,MB_OK


...the returned string is the correct path, "C:\MASM32\". But when I make a RadASM tools menu for this app and run it, the returned string is "C:\MASM32\RadASM\Masm\Projects\myproject". How can I always return the real current directory? Thanks.
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: KetilO on February 21, 2006, 09:42:47 AM
Hi Mark Jones

Here is one way to do it.

KetilO

[attachment deleted by admin]
Title: Re: RadASM 2.2.0.6 released (01-13-2006)
Post by: Mark Jones on February 21, 2006, 05:25:38 PM
Thanks KetilO. :U