The doc-file of filesel.inc by Kari Lammassaari

{
 REM filesel.inc DOES NOT WORK with Turbo Pascal 3.3 due to the BUG in the
 pointer operations of TP 3.3
}

The filesel.inc contains only one huge function:

 -  FileSelect(Column:Byte):StringType; which returns the complete path of
    selected file as a  string. Column defines the left edge of window
    system. It must be 0..41, because window system is 39 chars wide.

 -  Operates  on text mode 80 (blink).

 -  FileSelect creates a virtual window system to select drive,path and 
    file . Underlying screen is restored after the selection is made.

 -  Use TAB - key to move from window to annother. UP/DOWN to scroll windows and
    and RETURN to choose a file.

filesel.inc needs :

 - readvram.inc 
 - wrtvram.inc  
 - fillvram.inc 
 - msxdos2.inc  
 - blink.inc  
 - txtwin.inc
 - readstr.inc 
 - filename.inc
