
Re: show text in top right (like ansi.sys?)
Maybe a batch file that
emulates CMD and uses gotoxy after each command to re-display the ip address at the top of the screen, like:
Code:
@echo off
rem Code to get IP address into variable %ip%
:loop
set "cmd="
set /p "cmd=%cd%>"
%cmd%
gotoxy 0 0
echo %ip%
goto loop
Or, I could write an EXE that's like CMD but dedicates a few lines at the top of the screen to user-defined information like IP addresses or anything? Any takers?
Thanks
Phillid