Search found 35 matches

by andijahja
Sat Aug 11, 2012 10:46 am
Forum: FiveWin for Harbour/xHarbour
Topic: LetoDB
Replies: 8
Views: 2269

Re: LetoDB

Does anyone have a compiled version of LetoDB for xHarbour 1.2.1 / BCC582 (exe and lib)? I have tried running the make file and get nothing but errors. Manually edited the files to make sure paths are correct and still no luck. Hi Jeff, I have posted the following message in comp.lang.xharbour: Hi ...
by andijahja
Wed Aug 08, 2012 3:42 am
Forum: FiveWin for Harbour/xHarbour
Topic: DateTime variables problem XHabour
Replies: 7
Views: 2482

Re: DateTime variables problem XHabour

Mr Elvira and Mr Rick Some issues still remain: ? CDOW( DateTime() ) --> "Sunday" in Harbour. xHarbour raises runtime error ? CMONTH( DateTime() ) --> "July" in Harbour. xHarbour raises runtime error. xHarbour expects only Date type as parameter for the above functions. DOW() an...
by andijahja
Sat Nov 05, 2011 10:12 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Create a DLL with xharbour
Replies: 9
Views: 2767

Re: Create a DLL with xharbour

Hi Andy, Do you mean pdl55.bat ? Is there also a working sample of a dll and a call to that dll ? Hello, pdll55.bat was actually replaced by pdllbc.bat. Yes there is sample programs in test folder. Just execute pdllbc.bat without mentioning any program file. If you want to go deeper please read the...
by andijahja
Fri Nov 04, 2011 8:10 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Create a DLL with xharbour
Replies: 9
Views: 2767

Re: Create a DLL with xharbour

Hi all, I need to create a DDL with FWH+xHarbour. I am trying to test tutor01.prg with buildhd.bat provided into the samples FWH folder but a maindll.obj is required . Any solution using xHarbour ? Thanks in advance. Hello, Yes. There is quite an elegant solution with xHarbour. If you happen to hav...
by andijahja
Sun Feb 27, 2011 1:34 pm
Forum: FiveWin for Harbour/xHarbour
Topic: DIRECTORYRECURSE()
Replies: 7
Views: 1335

Re: DIRECTORYRECURSE()

frose, please try these two different commands from any folder in any volume DIR *.* /S DIR * /S and count the files listed note that the numbers of files listed are the same. In a program these two different ways to call the same function aDir := DIRECTORYRECURSE( "*.*" ) aDir := DIRECTO...
by andijahja
Tue Feb 15, 2011 12:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ANNOUNCE: New SVN Repository For xHarbour
Replies: 0
Views: 356

ANNOUNCE: New SVN Repository For xHarbour

Hello, The temporary SVN repo for xHarbour that I announced some days ago has now ceased and thus removed. xHarbour codes have been fully converted from CVS to SVN and the new common command to download/update your local copy are as follows: To get a fresh copy: svn co https://xharbour.svn.sourcefor...
by andijahja
Mon Jan 03, 2011 10:56 am
Forum: FiveWin for Harbour/xHarbour
Topic: QT Static Libraries
Replies: 0
Views: 355

QT Static Libraries

Hello All, MSVC users who want to quick test HBQT using _STATIC_LIB_ may download the required version at the following URLs. (MD denotes linking with MSVCRT.LIB, MT denotes linking with LIBCMT.LIB). If I may recommend, MD versions are preferred. Linking Prodecures: replace the qt*4.lib with the pac...
by andijahja
Wed Sep 29, 2010 8:57 am
Forum: FiveWin for Harbour/xHarbour
Topic: "BCC 6.3" Released
Replies: 23
Views: 6414

Re: "BCC 6.3" Released

Hi Enrico, Sorry. Still my exe is smaller (by approx 10%): 09/29/2010 03:40 PM 671,744 hello58.exe 09/29/2010 03:40 PM 617,984 hello63.exe Make sure you re-compile ALL your PRG _AND_ C Codes. Oops, that was console app compiled with Harbour. O Yes, I confirm the exe of 6.3 compiled with xHarbour is...
by andijahja
Wed Sep 29, 2010 8:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: "BCC 6.3" Released
Replies: 23
Views: 6414

Re: "BCC 6.3" Released

Hi Enrico,

Sorry. Still my exe is smaller (by approx 10%):

09/29/2010 03:40 PM 671,744 hello58.exe
09/29/2010 03:40 PM 617,984 hello63.exe

Make sure you re-compile ALL your PRG _AND_ C Codes.
by andijahja
Tue Sep 28, 2010 10:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: "BCC 6.3" Released
Replies: 23
Views: 6414

Re: "BCC 6.3" Released

No, using BCC 6.30 I get bigger EXE than BCC 5.82, even with simple pure C samples. Enrico, Sorry, I cannot confirm your finding because in my test, the following code: // file test.c #include "stdio.h" int main(int argc, char *argv[]) {    printf("Hello World\n"); } // file tes...
by andijahja
Tue Sep 28, 2010 1:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: "BCC 6.3" Released
Replies: 23
Views: 6414

Re: "BCC 6.3" Released

I noticed an increasing in the EXE size using this new compiler. What is the exact reason? Is there a way to reduce it back? You must be comparing with 5.5, else the exe of 6.3 must be smaller that other previous versions as shown below: harbour.exe compiled with different version of BCC: Directory...
by andijahja
Tue Sep 28, 2010 12:19 am
Forum: FiveWin for Harbour/xHarbour
Topic: "BCC 6.3" Released
Replies: 23
Views: 6414

Re: "BCC 6.3" Released

Hello Ehab,

__rwstd::__rw_stdexcept_NoNamedException is C++ exception specific to Borland C++ version 5.5 and no longer exist in the later versions.
To resolve the problem, you should recompile all your C files with BCC 6.3.
by andijahja
Sat Sep 25, 2010 10:08 am
Forum: FiveWin for Harbour/xHarbour
Topic: "BCC 6.3" Released
Replies: 23
Views: 6414

Re: "BCC 6.3" Released

As a note, to pacify warnings, you have to modify a line refers to definition of "UNREFERENCED_PARAMETER" to "(void)" in WINNT.H as follows:

Code: Select all

#if ! defined(lint)
#define UNREFERENCED_PARAMETER(P)          (void)(P)
// #define UNREFERENCED_PARAMETER(P)          (P)
by andijahja
Sat Sep 25, 2010 9:48 am
Forum: FiveWin for Harbour/xHarbour
Topic: "BCC 6.3" Released
Replies: 23
Views: 6414

Re: "BCC 6.3" Released

Antonio Linares wrote:Andi,

Would you mind to create a ZIP file with just the BCC 6.3 required files ?
It may greatly ease the way to test it to many users, thanks
OK, here it is:

http://www.mediafire.com/?b71rccdw8vlcl2b
by andijahja
Sat Sep 25, 2010 3:39 am
Forum: FiveWin for Harbour/xHarbour
Topic: "BCC 6.3" Released
Replies: 23
Views: 6414

"BCC 6.3" Released

Hello,

The new Borland Compiler version 6.3 is released packed with Embarcadero RAD Studio XE 2011. It is a better Borland family compiler, IMHO.
Download and Install Trial Version here: http://www.embarcadero.com/products/rad-studio