News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

ResEd 1.1.4.1 Uploaded

Started by KetilO, July 05, 2007, 05:39:39 AM

Previous topic - Next topic

KetilO

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


Vortex


Biterider

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]

KetilO

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

Biterider

OK, thanks for clarifying this point!

Regards,

Biterider

drizz

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
The truth cannot be learned ... it can only be recognized.

KetilO

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

Shantanu Gadgil

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
To ret is human, to jmp divine!

ramguru

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]

KetilO

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

ramguru

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.