home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / fortran / mslang / vb_fort / readme.doc < prev    next >
Encoding:
Text File  |  1993-08-05  |  2.3 KB  |  49 lines

  1.  --------------------------------------------------------------------
  2. | INFORMATION PROVIDED IN THIS DOCUMENT AND ANY SOFTWARE THAT MAY    |
  3. | ACCOMPANY THIS DOCUMENT (collectively referred to as an            |
  4. | Application Note) IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY      |
  5. | KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO    |
  6. | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A     |
  7. | PARTICULAR PURPOSE. The user assumes the entire risk as to the     |
  8. | accuracy and the use of this Application Note. This Application    |
  9. | Note may be copied and distributed subject to the following        |
  10. | conditions: 1) All text must be copied without modification and    |
  11. | all pages must be included; 2) If software is included, all files  |
  12. | on the disk(s) must be copied without modification (the DOS        |
  13. | utility DISKCOPY is appropriate for this purpose); 3) All          |
  14. | components of this Application Note must be distributed together;  |
  15. | and 4) This Application Note may not be distributed for profit.    |
  16. |                                                                    |
  17. | Copyright 1991 Microsoft Corporation. All Rights Reserved.         |
  18. | Microsoft and the Microsoft logo are registered trademarks of      |
  19. | Microsoft Corporation.                                             |
  20.  --------------------------------------------------------------------
  21.  
  22.  
  23. Test Example for calling FORTRAN subroutines in DLLs from Visual Basic
  24.  
  25.  
  26. Make sure that the DLL is in your path.  The way that this example is
  27. set up requires that the DLL be in your path since the path to the
  28. DLL is not specified in the VB Declare statements.
  29.  
  30. All the FORTRAN routines are very simple and should be self-explanatory.
  31.  
  32. This project was made with VB 3.0.  You will need that version to use
  33. the VB components.
  34.  
  35.  
  36. The files included are:
  37.  
  38. FORTVB   FOR     Source code for FORTRAN DLL
  39. FORTVB   DEF     DEF file for FORTRAN DLL
  40. FORTVB   DLL     FORTRAN DLL
  41. README   DOC     This file
  42. MAKEFILE         Standard makefile for FORTRAN DLL
  43. FORTVB   OBJ     OBJ for FORTRAN DLL
  44. GLOBAL   BAS     Global file for Visual Basic application
  45. TEST     FRM     Project form for Visual Basic application
  46. TEST     MAK     Project makefile for Visual Basic application
  47.  
  48. To build the project from the command line just type the command NMAKE.
  49.