Page 2 of 2

Re: DBU(64bits)

Posted: Sat Dec 25, 2021 8:38 am
by Anand
franco wrote: Fri Dec 24, 2021 6:13 pm In the Bin folder I think it is 32 bit, Could this be problem.
Maybe. Try on 32 bit.
I used the official Harbour link.

Re: DBU(64bits)

Posted: Sun Dec 26, 2021 9:35 am
by hansmarc
Hi,

try Otis, no limits at all and a lot of build in tools, completely free and source available.

https://github.com/hansmarc/Otis/tree/master/Download

Regards and merry christmas to all
Hans

Re: DBU(64bits)

Posted: Sun Dec 26, 2021 10:36 am
by serge_girard
Hans,

Otis.exe ontbreekt in de zipfile !
En bij compilatie (c:\minigui\otis --> makelib.bat) wordt otis.lib aangemaakt.
Hoe kan ik otis.exe zelf aanmaken?

Bedankt, Serge

Re: DBU(64bits)

Posted: Sun Dec 26, 2021 12:24 pm
by hansmarc
Hi Serge,

ik heb zojuist Otis.exe toegevoegd aan de zip file.

Added Otis.exe to the zip file in the download folder.

Remember that Grigory has added since a while Otis in the samples\Advanced folder.
Simply run compile.bat to create the exe file and buildlib.bat to create the lib file.

A new release is programmed in a few weeks.

Regards
Hans

Re: DBU(64bits)

Posted: Sun Dec 26, 2021 12:42 pm
by serge_girard
Bedankt Marc!

Werkt prima!!

Re: DBU(64bits)

Posted: Mon Dec 27, 2021 12:43 am
by AUGE_OHR
hi,

how is it possible to link Errorsys into DBU9 :?:

i got Error "Dupe GetFile" but can´t find it in Source ...

Re: DBU(64bits)

Posted: Tue Dec 28, 2021 5:50 pm
by franco
I think it is in the set path .... Where is or what is in i:\HB30\BIN

Re: DBU(64bits)

Posted: Thu Dec 30, 2021 7:09 am
by jayadevu
Hi Anand,

Thanks once again for the excellent utility.

May I suggest the following changes to enhance the utility.


#include "hbgtinfo.ch"
#define my_FILEVERSION_STR "1.0.0.0\0"
REQUEST HB_GT_WVT_DEFAULT


/* in the main program (add the following lines)*/
*SetMode( 25, 80 ) /* comment out */
hb_GTInfo( HB_GTI_WINTITLE, "DBU ["+SubStr(my_FILEVERSION_STR,1,RAt("\",my_FILEVERSION_STR)-1)+"]" )
hb_gtinfo( HB_GTI_FONTWIDTH, Int( hb_gtinfo( HB_GTI_DESKTOPWIDTH ) / 80 ) )
hb_gtinfo( HB_GTI_FONTSIZE, Int( ( hb_gtinfo( HB_GTI_DESKTOPHEIGHT ) - 64 ) / 25 ) )

/* in the hpb file (add the following lines) */
-gui
-gtwvt

/* in gachoice.prg replace line 24 as under */
if cFilt $ UPPER(items2) /* since cFilt is always uppercase, convert item2 also upper case for proper comparision */


The above lines allows the use of the whole desktop space and the font size is also proportionately increased.

The WinTitle line allows you the specify the version info on the windows title bar.

Warm regards,

Jayadev