xHarbour.org updated!

Re: xHarbour.org updated!

Postby Rick Lipkin » Sun Apr 09, 2017 11:18 pm

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
User avatar
Rick Lipkin
 
Posts: 2606
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Re: xHarbour.org updated!

Postby Enrico Maria Giordano » Mon Jun 11, 2018 9:04 am

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
User avatar
Enrico Maria Giordano
 
Posts: 8243
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia

Re: xHarbour.org updated!

Postby Enrico Maria Giordano » Tue Jun 12, 2018 9:02 pm

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
User avatar
Enrico Maria Giordano
 
Posts: 8243
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia

Re: xHarbour.org updated!

Postby Enrico Maria Giordano » Sun Aug 19, 2018 10:30 am

- new build 10241
- now "Changelog" link points at the correct address

EMG
User avatar
Enrico Maria Giordano
 
Posts: 8243
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia

Re: xHarbour.org updated!

Postby karinha » Mon Aug 20, 2018 7:18 pm

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.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
karinha
 
Posts: 7153
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Re: xHarbour.org updated!

Postby Enrico Maria Giordano » Mon Aug 20, 2018 9:00 pm

Yes, it's the new free compiler from Embarcadero.

EMG
User avatar
Enrico Maria Giordano
 
Posts: 8243
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia

Re: xHarbour.org updated!

Postby karinha » Tue Aug 21, 2018 2:57 pm

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.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
karinha
 
Posts: 7153
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil


Re: xHarbour.org updated!

Postby Enrico Maria Giordano » Sat Aug 25, 2018 10:28 am

xHarbour.org updated:

- add xHarbour for Pelles C 9.0.0 64-bit

EMG
User avatar
Enrico Maria Giordano
 
Posts: 8243
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia

Re: xHarbour.org updated!

Postby karinha » Thu May 16, 2019 12:51 pm

João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
karinha
 
Posts: 7153
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Re: xHarbour.org updated!

Postby Rick Lipkin » Thu May 16, 2019 6:05 pm

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
User avatar
Rick Lipkin
 
Posts: 2606
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA


Re: xHarbour.org updated!

Postby karinha » Tue Aug 15, 2023 2:22 pm

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.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
karinha
 
Posts: 7153
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Re: xHarbour.org updated!

Postby Enrico Maria Giordano » Tue Aug 15, 2023 2:44 pm

Yes, I already knew that, thank you.
User avatar
Enrico Maria Giordano
 
Posts: 8243
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia


PreviousNext

Return to WhatsNew / Novedades

Who is online

Users browsing this forum: No registered users and 4 guests