ResEdit 1.3.7

来源:互联网 发布:html编程是什么 编辑:程序博客网 时间:2024/05/13 03:50
 A useful resource editor for Win32 programs.ResEdit is a useful resource editor for Win32 programs. You can use it if you want to use dialogs, icon, version information or other types of resources. Output files can be compiled by any Win32 compiler, like MinGW and Microsoft Visual C++.ResEdit always generates 2 files:One with the rc extension, witch contains the code (the name depends on the project name) An include file always named resource.h (it is impossible to change it) , witch contains the ID definitions. Then you can simply use these 2 files in your C/C++ project. You only have to include the resource.h file in the files using resources.Here are some key features of "ResEdit":· Importing most of the rc files generated by Microsoft Visual Studio ressource editor. Actually it is not guaranteed that the file will be safely imported (ResEdit does not really understand #ifdef for example).· Advanced Dialog editor. All existing kind of controls are supported.· Possibility to include all sort of ressources. For some of them (icon, cursors...), it is not possible to edit them. There are other programs dedicated to this.· Generation of C++ code for the Dialogs (code with CreateWindowEx) and Menus (CreateMenu, CreatePopupMenu...). However it is not possible to import C++ sources files.http://www.resedit.net/ResEdit.zip
原创粉丝点击