FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour ereport.rc - how to open
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
ereport.rc - how to open
Posted: Tue Jan 22, 2019 07:36 AM

Hello,
which program should I use to open
ereport.rc.
If I open with Pelles C I only get a text view.
Thank you in advance
Otto

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: ereport.rc - how to open
Posted: Tue Jan 22, 2019 09:51 AM
Dear Otto,

Please use ResEdit from: http://www.resedit.net
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: ereport.rc - how to open
Posted: Tue Jan 22, 2019 10:27 AM

ResEdit-x64.7z
Dear Antonio,
can you advice me how to install this software.
Thank you in advance
Otto

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: ereport.rc - how to open
Posted: Tue Jan 22, 2019 10:55 AM
Dear Otto,

If you use Total Commander, then install this plugin to manage 7z files:

https://totalcmd.net/plugring/7z_plugin.html
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 2706
Joined: Fri Oct 07, 2005 01:50 PM
Re: ereport.rc - how to open
Posted: Tue Jan 22, 2019 03:12 PM

Otto

I can share my resedit 64 bit version with you if you like .. let me know if I can help.

Rick Lipkin

Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: ereport.rc - how to open
Posted: Tue Jan 22, 2019 03:45 PM

Hello Rick,
this would be great.
Can you please send it to datron (@) aon.at.
Best regards
Otto

Posts: 1096
Joined: Fri Oct 28, 2005 02:27 AM
Re: ereport.rc - how to open
Posted: Wed Jan 23, 2019 03:13 AM

7z is a 7zip file. Its utility is at https://www.7-zip.org/download.html

FWH 11.08/FWH 19.12

BCC5.82/BCC7.3

xHarbour/Harbour
Posts: 2706
Joined: Fri Oct 07, 2005 01:50 PM
Re: ereport.rc - how to open
Posted: Wed Jan 23, 2019 04:01 PM

Otto

Just sent you my version of ResEdit64 .. just un-zip the file and put the folder at the root of c:\ .. you will need to re-configure your File locations for FW and your C++ compiler .. leave the resource script template alone ( include directives ) ..

Hopefully my message will not bounce back ..

Thanks
Rick Lipkin

Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: ereport.rc - how to open
Posted: Wed Jan 23, 2019 05:14 PM

Hello Rick,
thank you. I got the file.
Best regards
Otto

Posts: 3022
Joined: Fri Oct 07, 2005 01:45 PM
Re: ereport.rc - how to open
Posted: Wed Jan 23, 2019 08:34 PM

So I decided to look again at ResEdit ... downloaded and installed it without a problem.

Then I took my existing, working xxx.rc file and tried to open it.

It had some complaints, but now it says it cannot recognize. STYLE. WS_POPUP. This is a standard windows style used in resources.

Any thoughts on this ?

Tim Stone
http://www.MasterLinkSoftware.com
http://www.autoshopwriter.com
timstone@masterlinksoftware.com
Using: FWH 23.10 with Harbour 3.2.0 / Microsoft Visual Studio Community 2022-24 32/64 bit
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: ereport.rc - how to open
Posted: Thu Jan 24, 2019 08:21 AM
Tim,

You can configure ResEdit settings this way:
Code (fw): Select all Collapse
#include <windows.h>
#include <commctrl.h>
#include <richedit.h>
#include "%RESOURCE_HEADER%"

#ifndef WC_TABCONTROL
   #define WC_TABCONTROL "SysTabControl32"
#endif

#ifndef PROGRESS_CLASS
   #define PROGRESS_CLASS "msctls_progress32"
#endif

#ifndef WS_POPUP
   #define WS_POPUP 0x80000000L
#endif

#define RT_MANIFEST 24

%RESOURCES%


regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 3022
Joined: Fri Oct 07, 2005 01:45 PM
Re: ereport.rc - how to open
Posted: Fri Jan 25, 2019 08:16 PM

I'm trying to open an existing .rc file and it tells me WS_POPUP is an undeclared identifier.

Tim Stone
http://www.MasterLinkSoftware.com
http://www.autoshopwriter.com
timstone@masterlinksoftware.com
Using: FWH 23.10 with Harbour 3.2.0 / Microsoft Visual Studio Community 2022-24 32/64 bit

Continue the discussion