- Aug
- 2,241
- 105
Hi,
For those of you who, like myself, refuse to let go of the dBASE/Clipper language, here is a .BTM that I use to resize the HBRUN.EXE screen to fit within a TCC/TCMD screen;
Joe
For those of you who, like myself, refuse to let go of the dBASE/Clipper language, here is a .BTM that I use to resize the HBRUN.EXE screen to fit within a TCC/TCMD screen;
Code:
:: HBRUN.BTM
:: Re-size the HBRUN.EXE screen to fit
:: within a TCC/TCMD screen;
::
@setlocal
@echo off
iff %# eq 0 then
keystack "setmode(%_rows,%_columns)" enter
hbrun.exe
else
hbrun.exe %1
endlocal
Joe