home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / Readme.txt
Text File  |  1998-05-19  |  2KB  |  43 lines

  1. The CD-ROM inside the back cover contains all sample projects 
  2. described in this book. Copy the files from any CD-ROM directory 
  3. to an empty directory on your hard drive and then open the copied 
  4. project with Delphi's File|Open or File|Open Project commands. 
  5. Browse to any directory and open the .dpr file--there is only one 
  6. in most project directory paths. If you don't see a .dpr file, make
  7. sure the Open dialog's Files of Type box displays Delphi file 
  8. (*.pas, *.dpr). Not all sample directories, however, contain 
  9. projects. For these, there are no .dpr files to open.
  10.  
  11. All listings in the book are located in named directories on the 
  12. CD-ROM. None of these files is compressed. To use the files, 
  13. copy any subdirectory from the Source directory to your hard drive.
  14. Or, if you have the room, copy the entire Source directory to a 
  15. hard drive letter such as C:\ or D:\.
  16.  
  17. All programs are compiled. If you just want to run them, use the 
  18. Windows Explorer program to execute any .exe code file. You may 
  19. execute most programs directly from the CD-ROM. However, those 
  20. programs that write to disk files must first be copied to your 
  21. hard drive or another writeable device.
  22.  
  23. To compile a program, you must first copy its directory to your 
  24. hard drive. If you attempt to compile a program directly to the 
  25. CD-ROM, Delphi will display an error message when it attempts to 
  26. write to the .exe code file. If after copying a directory to your 
  27. hard drive you still have trouble compiling, the target files might 
  28. be marked Read-Only. 
  29.  
  30. Copying CD-ROM files might set their Read-Only attribute flags, 
  31. which will prevent writing to the .exe and .dcu code files. If when
  32. compiling a program you receive an error that a file is in use or 
  33. marked read-only, follow these steps to correct the problem:
  34.  
  35. 1. Copy the Source directory from the CD-ROM to your hard drive 
  36. directory C:\, D:\, or other.
  37. 2. Open a command-line prompt (MS-DOS) window.
  38. 3. Enter C: or D: (or another letter) to change to the Source drive.
  39. 4. Enter the command CD \Source to change to the Source directory.
  40. 5. Type the command ATTRIB -r *.* /S to turn off all Read-Only flags.
  41. 6. If you receive a "sharing violation" error in Step 4, exit Delphi
  42. and try Step 4 again.
  43.