News:

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

ResEd 2.2.0.2 Uploaded

Started by KetilO, May 12, 2009, 01:38:09 PM

Previous topic - Next topic

KetilO

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

KetilO

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]

d0d0

Thanks mate. I did know about this brilliant tool. Mucho gracias.

travism

awesome update! I use this for every single project I make, Thanks again! :)

akane

KetilO, could you add additional preview option for all dialogs as a (tabbed or wizard) property sheet? (single PropertySheet api)

KetilO

Hi akane

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

KetilO

travism

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.

KetilO

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

Loaden

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!!

Loaden

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!

KetilO

Hi Loaden

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

KetilO


Loaden

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]

KetilO