The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => Topic started by: KetilO on May 12, 2009, 01:38:09 PM

Title: ResEd 2.2.0.2 Uploaded
Post by: KetilO on May 12, 2009, 01:38:09 PM
2.2.0.2b -2009-05-14
---------------------
o Added BS_SPLITBUTTON, BS_DEFSPLITBUTTON, BS_COMMANDLINK and BS_DEFCOMMANDLINK button styles.
o Added TBS_REVERSED, TBS_DOWNISLEFT, TBS_NOTIFYBEFOREMOVE and TBS_TRANSPARENTBKGND trackbar styles.
o Added language (if any) to project items.
o Added SysLink control.
o Added Compile to tools menu. Use Option / Options / Path to define the compiler command.
o Grids now resizes to window.
o Updated help file.
o Fixed bug with Chinese font names.
o Fixed bug with RCDATA / RT_RCDATA,MANIFEST and TOOLBAR. Linefeeds was missing.
o Fixed some minor bugs.

Get it here:
http://radasm.110mb.com/resed/

KetilO
Title: Re: ResEd 2.2.0.2 Uploaded
Post by: KetilO on May 14, 2009, 06:42:40 AM
ResEd 2.2.0.2b Uploaded

Whats new:
----------------
o Fixed bug with RCDATA / RT_RCDATA,MANIFEST and TOOLBAR. Linefeeds was missing.

You can get ResEd.exe here.

KetilO

[attachment deleted by admin]
Title: Re: ResEd 2.2.0.2 Uploaded
Post by: d0d0 on May 14, 2009, 08:48:30 AM
Thanks mate. I did know about this brilliant tool. Mucho gracias.
Title: Re: ResEd 2.2.0.2 Uploaded
Post by: travism on May 14, 2009, 08:55:54 AM
awesome update! I use this for every single project I make, Thanks again! :)
Title: Re: ResEd 2.2.0.2 Uploaded
Post by: akane on May 14, 2009, 11:24:39 AM
KetilO, could you add additional preview option for all dialogs as a (tabbed or wizard) property sheet? (single PropertySheet api)
Title: Re: ResEd 2.2.0.2 Uploaded
Post by: KetilO on May 15, 2009, 06:30:09 AM
Hi akane

Thats not an easy task as ResEd would have to know what child dialogs to use.

KetilO
Title: Re: ResEd 2.2.0.2 Uploaded
Post by: travism on May 16, 2009, 03:52:24 AM
I dont know if this is a problem on my part or something but If i try to add a richedit control and then when i try to use gorc to compile the rc file it gives me a unknown control style RichEdit20A.
Title: Re: ResEd 2.2.0.2 Uploaded
Post by: KetilO on May 18, 2009, 08:23:33 AM
Hi travism

Yes, GoRc will give you a warning:
Quote
Line 140 of Resource Script (C:\SimEd\Projects\RichEdit\RichEdit.RC):-
A class name was not recognised but assumed to be a user-class:-
"RichEdit20A"

This is just a warning and the res file is still OK.

KetilO
Title: I hope remove duplicate definition
Post by: Loaden on July 11, 2009, 03:05:35 PM
Hi, ResEd is very good! thanks! (Resource editor 2.2.0.2)
But now, i have some trouble to use ResEd.
I found that have more IDC_STATIC or other same name IDC define.
like:
#define IDC_STATIC -1
#define IDD_MAINDLG 1000
#define IDC_INPUT 1001
#define IDOK 1
#define IDCANCEL 2
#define IDC_OUTPUT 1002
#define IDC_CHANGE 1006
#define IDC_FILE 1007
#define IDC_ADD 1008
#define IDC_EMPTY 1009
#define IDC_STATIC -1
#define IDC_REASON 1005
#define IDC_DELETE 1003
#define IDC_MOVE 1004
#define IDD_DLG1 1100
#define IDOK 1
#define IDCANCEL 2
#define IDR_MAINFRAME 101
#define IDR_MAINFRAME 101
I hope ResEd can remove duplicate definition, thanks!!
Title: Re: ResEd 2.2.0.2 Uploaded
Post by: Loaden on July 11, 2009, 03:07:36 PM
d:\ycdeng\csdnmgr\csdnmgr\resource.h(1) : warning C4005: 'IDC_STATIC' : macro redefinition
        d:\ycdeng\qpsoft\sdk\atl\atlres.h(227) : see previous definition of 'IDC_STATIC'
csdnmgr.cpp
d:\ycdeng\csdnmgr\csdnmgr\resource.h(1) : warning C4005: 'IDC_STATIC' : macro redefinition
        d:\ycdeng\qpsoft\sdk\atl\atlres.h(227) : see previous definition of 'IDC_STATIC'

Please set IDC_STATIC IDOK and IDCANCEL #define is:

#ifndef IDC_STATIC
#define IDC_STATIC -1
#endif

#ifndef IDOK
#define IDOK 1
#endif

#ifndef IDCANCEL
#define IDCANCEL 2
#endif

So, this warning will gone.
Thanks!
Title: Re: ResEd 2.2.0.2 Uploaded
Post by: KetilO on July 12, 2009, 10:19:04 PM
Hi Loaden

This shortcoming of ReaEd can easily be overcome.
Just set the ID to 0 on all controls except one.

KetilO

Title: Re: ResEd 2.2.0.2 Uploaded
Post by: Loaden on July 16, 2009, 03:11:31 PM
Quote from: KetilO on July 12, 2009, 10:19:04 PM
Hi Loaden

This shortcoming of ReaEd can easily be overcome.
Just set the ID to 0 on all controls except one.

KetilO


It's unwork?
I can't set IDOK / IDCANCEL /IDC_STATIC to 0.
If reopen the rc file, IDOK is became to 1 and IDCANCEL auto be 2.


[attachment deleted by admin]
Title: Re: ResEd 2.2.0.2 Uploaded
Post by: KetilO on July 17, 2009, 01:58:14 PM
Hi Loaden

The problem should be fixed.
Have a look here:
http://www.masm32.com/board/index.php?topic=11874.0

KetilO