Page 2 of 11

Re: xHarbour.org updated!

PostPosted: Sun Apr 09, 2017 11:18 pm
by Rick Lipkin
To All

With the help of Enrico, Carlos and the tireless help of Cristobal .. I have Bcc72 working with Resedit and compiling resources with Brc32.exe. Because of my stubbornness, years ago I decided to create all my resouces as individual .rc files .. rather than working with one Single monolithic .rc adding new forms as needed. Many years ago working with BRW, somehow my single .rc became corrupted and was a total 'gonner' taking over 100+ forms with it.

From that point on I decided ( since .rc files are just text files ) to compile all my rc's in a modified .bat file called Rc2Dll32.bat :

Code: Select all  Expand view

@Echo Off

DEL VehW32.DLL
DEL VehW32.RC
DEL Veh3W2.RES

COPY *.RC VehW32.RC

C:\BORLAND\BCC70\BIN\brc32 -r VehW32.Rc

rem c:\ResEditx64\ResEdit.exe -convert VehW32.Rc VehW32.Res

del *.iL?
del *.map
del *.obj
del *.~rc
del *.rws
:del *.res
del *.tds
echo done!

 


and up thru Brc70, that method of compiling my forms worked perfectly .. However, something changed with Brc72 and the above method would not work with the standard Resedit Header files :
Code: Select all  Expand view

#include <windows.h>
#include <commctrl.h>
#include <richedit.h>
#include "%RESOURCE_HEADER%"

%RESOURCES%
 


As many in the forum suggested I had to make modifications to the Resedit headers :
Code: Select all  Expand view

#include <windows.h>
#include <commctrl.h>
#include "resource.h"
#define WC_STATIC L"Static"
#define MONTHCAL_CLASS "SysMonthCal32"
#define DATETIMEPICK_CLASS "SysDateTimePick32"

%RESOURCES%
 


But for some reason when Brc32.exe tried to compile the monolithic .rc into .Res .. the command failed ... so I rolled back to Brc70 and went about my business.

Cristabol has been working dilligently with FiveEdit and I noticed that one of his options was to chose the Resorse editor of your choice .. and ResEdit was in his configuration.

I subsequently started a series of e-mails on the subject and here was the final solution to compiling all my .rc together into .Res ..

Again, insert the above preferences into Resedit for it's resolvable controls .. and modify my Batch File like this .. notice the Brc32 line :

Code: Select all  Expand view

@Echo Off

DEL VehW32.RC
DEL Veh3W2.RES

COPY *.RC VehW32.RC

Rem C:\BORLAND\BCC70\BIN\brc32 -r VehW32.Rc

Rem notice the change .. this works with brc72
C:\BORLAND\BCC72\BIN\brcc32 -iC:\BORLAND\BCC72\include -v -iC:\BORLAND\BCC72\include\dinkumware -iC:\BORLAND\BCC72\include\windows\sdk
 VehW32.Rc

del *.iL?
del *.map
del *.obj
del *.~rc
del *.rws
:del *.res
del *.tds
echo done!
 


With the combination of the new #defines .. Resedit is now able to resolve DatePicker, Calender, etc .... and with the modified Brc32 compiler line .. I now have a Clean forms compiler that creates a single .Res to add to my project Link List.

Many thanks to Cristabol for his Great help!

Rick Lipkin

Re: xHarbour.org updated!

PostPosted: Mon Jun 11, 2018 9:04 am
by Enrico Maria Giordano
xHarbour.org updated:

- removed BCC 5.5.1 and xHarbour for BCC 5.5.1 (too old!)
- add BCC 7.30 64-bit (for evaluation only!) and xHarbour for BCC 7.30 64-bit (now complete with hbzip library!)
- add xHarbour for BCC 10.2.3 (BCC 10,2,3 can be freely downloaded from Embarcadero website)

EMG

Re: xHarbour.org updated!

PostPosted: Tue Jun 12, 2018 9:02 pm
by Enrico Maria Giordano
Enrico Maria Giordano wrote:- add BCC 7.30 64-bit (for evaluation only!) and xHarbour for BCC 7.30 64-bit (now complete with hbzip library!)


Sorry, due to an error the file hbzip.a was still missing. Now it's ok.

EMG

Re: xHarbour.org updated!

PostPosted: Sun Aug 19, 2018 10:30 am
by Enrico Maria Giordano
- new build 10241
- now "Changelog" link points at the correct address

EMG

Re: xHarbour.org updated!

PostPosted: Mon Aug 20, 2018 7:18 pm
by karinha
Holá Enrico, hello Enrico,

xHarbour Binaries 1.2.3 Rev. 10241 for BCC 10.2.3
This download includes all binaries and libraries for Embarcadero BCC 10.2.3. ??

Regards, saludos.

Re: xHarbour.org updated!

PostPosted: Mon Aug 20, 2018 9:00 pm
by Enrico Maria Giordano
Yes, it's the new free compiler from Embarcadero.

EMG

Re: xHarbour.org updated!

PostPosted: Tue Aug 21, 2018 2:57 pm
by karinha
Enrico Maria Giordano wrote:Yes, it's the new free compiler from Embarcadero.

EMG


Ok. Many thanks.

Dear Enrico, where you can download BCC10.2.3?


Image

Regards, saludos.

Re: xHarbour.org updated!

PostPosted: Tue Aug 21, 2018 3:08 pm
by Enrico Maria Giordano
http://www.embarcadero.com

Look for community edition.

EMG

Re: xHarbour.org updated!

PostPosted: Sat Aug 25, 2018 10:28 am
by Enrico Maria Giordano
xHarbour.org updated:

- add xHarbour for Pelles C 9.0.0 64-bit

EMG

Re: xHarbour.org updated!

PostPosted: Thu May 16, 2019 12:51 pm
by karinha

Re: xHarbour.org updated!

PostPosted: Thu May 16, 2019 6:05 pm
by Rick Lipkin
Enrico

I kinda gave up on Borland 10 .. never could get it to work .. have you had any success with Bcc10 ?? Just downloaded Bcc74 32 bit ..

Thanks
Rick Lipkin

Re: xHarbour.org updated!

PostPosted: Thu May 16, 2019 7:33 pm
by Enrico Maria Giordano
Rick,

Me neither… :-(

EMG

Re: xHarbour.org updated!

PostPosted: Tue Aug 15, 2023 2:22 pm
by karinha
Enrico Maria Giordano wrote:Rick,

Me neither… :-(

EMG


Master Enrico, look this, please!

https://github.com/ronpinkas/xharbour/tree/main/xHarbourBuilder/xHarbour-SQLRDD

Regards, saludos.

Re: xHarbour.org updated!

PostPosted: Tue Aug 15, 2023 2:44 pm
by Enrico Maria Giordano
Yes, I already knew that, thank you.

Re: xHarbour.org updated!

PostPosted: Thu Aug 17, 2023 1:11 pm
by Enrico Maria Giordano