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.
/* 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.