Recent content by Bakhbergen

  1. B

    Comp Sci Dynamic Link Library, Compaq Visual Fortran 6.6 & Module

    BTW, the same algorithm without using the DLL works well and gives correct result: PROGRAM AMAIN3 USE MODUL3 IMPLICIT NONE A = 1D0 B = 2D0 CALL SUBRO3 PRINT*, 'S = ', S END PROGRAM AMAIN3 MODULE MODUL3 IMPLICIT NONE REAL(8):: A,B,S END MODULE MODUL3 SUBROUTINE SUBRO3 USE MODUL3 IMPLICIT NONE...
  2. B

    Comp Sci Dynamic Link Library, Compaq Visual Fortran 6.6 & Module

    Hello BvU! I appreciate your intention to help with this. There weren't any error / warning during the debugging. Just gives incorrect result.
  3. B

    Comp Sci Dynamic Link Library, Compaq Visual Fortran 6.6 & Module

    Dear Forum Members, I need to create and use dynamic-link library (DLL) for Fortran application using Compaq Visual Fortran 6.6. The following code works just fine: ########################################### PROGRAM AMAIN1 IMPLICIT NONE REAL(8):: A,B,S A = 1D0 B = 2D0 CALL SUBRO1(A,B,S)...
  4. B

    Dynamic Link Library (dll) and Compaq Visual Fortran 6.6

    Dear All, My name is Bakhbergen Bekbauov and I am currently a professor in the Department of Petroleum Engineering at Satbayev University, Almaty, Kazakhstan. I also work part time at Al-Farabi Kazakh National University. I have a PhD degree in Fluid Mechanics with specialization in the areas of...
Back
Top