Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
REM Line Remover!!!
#1
Smile Realesing this as source, very compact..

What it does:
Removes un-used lines in a proggram. REMs and whitespaces
Reduces size of program (if there is anything to remove)
Leaves ('$INCLUDESmile's alone and unharmed..
Keeps a backup, or you can make it overwrite a file (Not Recomended, anything can happen).. :wink:

What it doesn't
PRINT "Hello" 'Remove a REM on the side of a line

Example:
Took Rlesoft's Julia Rings
From : 224 Lines of code..
To: 175 Lines of code..
And it still worked!! Big Grin

Minus the "SLEEP 100" it should run in QB also.. Or for faster speeds, just for looks.. speed is good either way.. :wink:

Here it is... Big Grin
Code:
PRINT "REM Line Remover 1000!"
PRINT
PRINT "No worries, checks for '$INCLUDE:, so that want be erased ;)"
PRINT
INPUT "File Name:(add extention also)", file$
INPUT "Resave REM free as:(add extention)", file2$
OPEN file$ FOR INPUT AS #1
OPEN file2$ FOR OUTPUT AS #2
DO
   IF EOF(1) THEN EXIT DO
   LINE INPUT #1, lineread$
   IF MID$(UCASE$(lineread$), 1, 4) = "'$IN" THEN GOTO writelib
   IF MID$(lineread$, 1, 1) = "'" THEN GOTO skipwrite
   writelib:
   IF lineread$ = "" THEN GOTO skipwrite
   PRINT #2, lineread$
   PRINT "Line Cept:", lineread$
   SLEEP 100 'REMOVE this For more speed!
   skipwrite:
LOOP
CLS
PRINT "All done! :D"
SLEEP

Enjoy!!!!
Kevin (x.t.r.GRAPHICS)

[Image: 11895-r.png]
Reply


Messages In This Thread
REM Line Remover!!! - by Rattrapmax6 - 04-07-2005, 04:47 AM
REM Line Remover!!! - by steven_basic - 04-07-2005, 06:14 AM
REM Line Remover!!! - by na_th_an - 04-07-2005, 12:14 PM
REM Line Remover!!! - by Antoni Gual - 04-07-2005, 07:29 PM
REM Line Remover!!! - by fsw - 04-07-2005, 08:26 PM
REM Line Remover!!! - by Rattrapmax6 - 04-08-2005, 01:55 AM
REM Line Remover!!! - by Kylemc - 04-08-2005, 02:09 AM
REM Line Remover!!! - by Rattrapmax6 - 04-08-2005, 02:26 AM
REM Line Remover!!! - by fsw - 04-08-2005, 02:48 AM
REM Line Remover!!! - by diakin - 04-14-2005, 11:31 AM
REM Line Remover!!! - by aetherfox - 04-14-2005, 05:29 PM
REM Line Remover!!! - by Anonymous - 04-14-2005, 06:16 PM
REM Line Remover!!! - by Antoni Gual - 04-14-2005, 08:54 PM
REM Line Remover!!! - by Rattrapmax6 - 04-15-2005, 02:29 AM
REM Line Remover!!! - by Kylemc - 04-18-2005, 12:54 AM
Re: REM Line Remover!!! - by KiZ - 04-18-2005, 12:57 AM
REM Line Remover!!! - by Rattrapmax6 - 04-19-2005, 02:45 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)