Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Resize HBRUN window to fit in TCC/TCMD

Aug
1,929
71
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;

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
 
Back
Top