home *** CD-ROM | disk | FTP | other *** search
- *⌐░⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐┤
- *⌐ª Program: MAXLINE.PRG ⌐ª
- *⌐ª Function: ╩╣╙├ Low-Level File ║»╩²╢┴╚í╬─╝■╒╥│÷│¼╣²╓╕╢¿│ñ╢╚ ⌐ª
- *⌐ª ╡─╨╨╩²╡─╖╢└². ⌐ª
- *⌐ª Usage: MAXLINE WITH <Program name> ,<expN> ⌐ª
- *⌐╕⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐ñ⌐╝
- PARAMETERS the_file, the_length
- SET ESCAPE OFF
- IF PARAMETERS() # 2 OR TYPE("the_file") # "C" ;
- OR TYPE("the_length") # "N" OR (TYPE("the_length") = "N" ;
- AND INT(the_length) # the_length)
- WAIT WINDOW " ╨Φ╥¬┴╜╕÷▓╬╩²: ╬─╝■├√(╫╓╖√┤«) ║═╫ε┤≤╨╨│ñ╢╚(╒√╩²). "
- RETURN
- ENDIF
-
- the_file = UPPER(IIF(AT(".",the_file) # 0,the_file,the_file+".PRG"))
- fileh = FOPEN(the_file)
- IF fileh = -1
- WAIT WINDOW " ├╗╙╨╒╥╡╜╬─╝■: "+the_file+". "
- RETURN
- ENDIF
-
- the_report = SUBSTR(the_file,1,AT(".",the_file)-1)
-
- IF FILE(the_report+".TXT")
- mext = "TXT"
- DEFINE WINDOW getit FROM 10,29 TO 15,51;
- PANEL TITLE " ▒¿╕µ├√ "
- DO WHILE FILE(the_report+"."+mext)
- WAIT WINDOW " ╬─╝■ "+the_report+"."+mext;
- +" ╥╤┤µ╘┌. ╕┤╕╟┬≡? (y/n)" TO manswer
- IF UPPER(manswer) = "Y"
- ERASE (the_report+"."+mext)
- ELSE
- ACTIVATE WINDOW getit
- @ 1,4 SAY the_report+"." GET mext PICTURE "@!N"
- READ
- IF LASTKEY() = 27
- EXIT
- ENDIF
- ENDIF
- ENDDO
- RELEASE WINDOW getit
- IF FILE(the_report+"."+mext)
- * got an escape press
- = FCLOSE(fileh)
- RETURN
- ELSE
- the_report = the_report+"."+mext
- ENDIF
- ELSE
- the_report = the_report+".TXT"
- ENDIF
-
- reporth = FCREATE(the_report)
- = FPUTS(reporth,"This is a report of lines in "+;
- the_file)
- = FPUTS(reporth,"that exceed the given maximum of "+;
- ALLTRIM(STR(the_length))+" characters.")
- = FPUTS(reporth," ")
- = FPUTS(reporth," ")
-
- the_line = 0
- overmax = 0
- DO WHILE !FEOF(fileh)
- the_line = the_line + 1
- this_line = FGETS(fileh)
- IF LEN(this_line) > the_length
- = FPUTS(reporth,PADR("Line # ";
- +ALLTRIM(STR(the_line)),15)+this_line)
- overmax = overmax + 1
- ENDIF
- ENDDO
-
- = FCLOSE(reporth)
- = FCLOSE(fileh)
- ?? CHR(7)
- IF overmax = 0
- ERASE(the_report)
- WAIT WINDOW " ├╗╙╨╥╗╨╨│¼╣² "+;
- ALLTRIM(STR(the_length))+;
- " ╕÷╫╓╖√. "
- ELSE
- WAIT WINDOW " ╘┌ "+the_report+" ╓╨ "+;
- ALLTRIM(STR(overmax))+;
- IIF(overmax = 1," line"," ╨╨") +" │¼╣² "+;
- ALLTRIM(STR(the_length))+" ╕÷╫╓╖√."
- ENDIF
- RETURN