The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => Topic started by: KetilO on July 05, 2007, 05:39:39 AM

Title: ResEd 1.1.4.1 Uploaded
Post by: KetilO on July 05, 2007, 05:39:39 AM
Whats new:

1.1.4.1 - 2007.07.05
----------------------------
o Added option to save #defines to [Project].h file.
o Fixed bug where grid combobox would show in taskbar.
o Fixed bug where acceleratortable name or ID could not be changed.

Get it here:
http://www.radasm.com/resed/index.html

KetilO

Title: Re: ResEd 1.1.4.1 Uploaded
Post by: Vortex on July 05, 2007, 06:21:03 PM
Thanks for the upload :U
Title: Re: ResEd 1.1.4.1 Uploaded
Post by: Biterider on July 06, 2007, 06:05:34 AM
Hi KetilO
I get some parsing errors with rc files I created by hand. As it seems, it is a problem related to the string tables. I attach a rc file to reproduce the error.
This problem is not related only to this last release, since I have seen it previously in other releases. I hope this helps.

Regards,

Biterider


[attachment deleted by admin]
Title: Re: ResEd 1.1.4.1 Uploaded
Post by: KetilO on July 06, 2007, 10:21:29 AM
Thanks,

The problem is that ResEd does not support ID's on the form IDLANG_ENGLISH + 01

I might support this in a future release.

KetilO
Title: Re: ResEd 1.1.4.1 Uploaded
Post by: Biterider on July 06, 2007, 11:44:06 AM
OK, thanks for clarifying this point!

Regards,

Biterider
Title: Re: ResEd 1.1.4.1 Uploaded
Post by: drizz on July 06, 2007, 05:15:45 PM
Hello KetilO,

is there any chance of a feature to set properties (style, caption, etc.) on multiple selection (two or more controls)?
i'm mainly asking for Radasm's ResEd. Also, default sizes of controls dropped are currently 0 in Radasm's ResEd, but in this standalone ResEd they are predefined and != 0.

Thanks
Title: Re: ResEd 1.1.4.1 Uploaded
Post by: KetilO on July 10, 2007, 11:49:12 AM
Hi drizz

Quoteis there any chance of a feature to set properties (style, caption, etc.) on multiple selection (two or more controls)?
This is a lot of work and will probably not be implemented.

Defalt control sizes in RadASM is added.
Get it here:http://www.masm32.com/board/index.php?topic=7269.0

KetilO
Title: Re: ResEd 1.1.4.1 Uploaded
Post by: Shantanu Gadgil on July 14, 2007, 08:08:26 AM
Hi,
I know you have already said "probably not" and was kinda hoping the "probably" part would win!  :green2

Maybe not now but someday ?!?  :bg

Cheers,
Shantanu
Title: Re: ResEd 1.1.4.1 Uploaded
Post by: ramguru on July 17, 2007, 11:39:59 AM
I have some problem opening attached resource file.
Such as:
instead of showing check-boxes editor shows buttons (with 0 style)
in another dialog, one button doesn't show up at all (editor finds some user controls instead of STATIC controls)

So I guess the parsing (of rc) needs some more work...

[attachment deleted by admin]
Title: Re: ResEd 1.1.4.1 Uploaded
Post by: KetilO on July 17, 2007, 03:07:41 PM
Hi ramguru

The problem is the uppercase X in
CONTROL "UTF-8",  702, BUTTON, 0X50010002,  5, 16, 40, 12
Change it to
CONTROL "UTF-8",  702, BUTTON, 0x50010002,  5, 16, 40, 12

This is a bug and will be fixed.

Many controls have an extra ',' befor the class
CONTROL "Find", 706, , BUTTON, 0x50010000, 107, 5, 40, 10, 0x00020000
Should be
CONTROL "Find", 706 , BUTTON, 0x50010000, 107, 5, 40, 10, 0x00020000

Does the file compile with any resource compiler?

KetilO
Title: Re: ResEd 1.1.4.1 Uploaded
Post by: ramguru on July 17, 2007, 03:16:03 PM
I see  :green so this is partially my fault  :red
Anyway... I have no idea how the extra colon did appear in resource file, maybe ResEd made it  :dance: (only guess)
However, everything compiles perfectly (with X5 or x5 or ",,"), since I didn't notice it.