Using The CD-ROM ------------------------------ The software was developed and tested on a COMPAQ Deskpro 286 with 640K RAM operating under MS-DOS 3.31. It was compiled with Clipper (Summer '87). There are no special display requirements. For direct access to the data files, one of the many software packages which recognize the dBASE III Plus (.DBF) format will be very useful. Users of other types of systems, such as the Apple Macintosh, have access to the files through support for ISO 9660 CD-ROMs. Please note that the retrieval software will only run on IBM-compatibles operating under MS-DOS. NOTE: The number of files in the config.sys file should be set at no less than 29. Example of line in CONFIG.SYS file: FILES=29 ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ³ Starting The CD-ROM ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ <<>> Type GO and ENTER. Example: L:\>go <<>> If you use WINDOW 3.1, you have to run the setup from the File Manager. Select File from the menu bar list. Click on RUN item. On the Command line type: :\WIN\SETUP then click the OK button. Example: L:\WIN\SETUP If you use WINDOW 95, you have to run the setup from the Start icon, select RUN... from the Start menu, and Open: L:\WIN\SETUP To execute the application from the Start icon, Select Program, choose Exports of Merchandise folder and click on U.S Exports of Merchandise icon. ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ³ Network Users ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ Type GO LAN and ENTER. Example: L:\>go LAN ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ³ Converting dBASE Files ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ '********************************************** '*** This is a Microsoft BASIC program that *** '*** converts a dBASE (.DBF) file to ASCII *** '*** (.TXT). *** '********************************************** CLS INPUT "Database file to convert -> ", InFile$ INPUT " Text file -> ", OuFile$ OPEN InFile$ FOR BINARY AS #1 OPEN OuFile$ FOR OUTPUT AS #2 TYPE HdrStru Filler AS STRING * 4 RecCount AS LONG HdrBytes AS INTEGER RecBytes AS INTEGER END TYPE DIM Hdr AS HdrStru GET #1, , Hdr SEEK #1, Hdr.HdrBytes + 1 RecCntr = 0 DO Rec$ = STRING$(Hdr.RecBytes, " ") GET #1, , Rec$ PRINT #2, MID$(Rec$, 2) RecCntr = RecCntr + 1 IF RecCntr = Hdr.RecCount THEN EXIT DO LOOP CLOSE #1, #2 *