fb:porticula NoPaste
Tab-Größe automatisch ändern
Uploader: | Michael Frey |
Datum/Zeit: | 09.10.2005 17:58:19 |
defint a-z
cls
? "Alte Tab Groesse?"
input old
? "Neue Tab Groesse?"
input new
open command$ for input as #1
open command$+".new" for output as #2
do until eof(1)
line input #1, x$
a=(len(x$)-len(ltrim$(x$)))/old*new
? #2,space$(a)+ltrim$(x$)
loop