Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
28595 Discussions

Can i do the same on Digital Visual Fortran 5.0.A

jorgematheus
Beginner
341 Views
Hi
I'm trying to use a fortran .dll inside VISUAL LISP for Autocad, or VIsual Basic or Visual FOX
Can i do it withDigital Visual Fortran 5.0.A??
I have used other dll made on Visual Basic and VIsual FOX and used
inside Autolisp for Autocad, and it was very simple. I only need to register them and that wasall.
I made a small routine in fortran, just for check how this work, and
everything was ok. No error at compiling time. When i try to register
SUBROUTINE CREA2()
CHARACTER CIUDAD*10
OPEN(10,FILE='C:BUCSISTEMPOC031C',STATUS='OLD',
*ERR=100)
WRITE(1,*)'PROGRAMA DE PRUEBA'
READ(10,*)CIUDAD,ISIS,IPL
WRITE(1,*)CIUDAD,ISIS,IPL
CLOSE(10)
STOP
100 WRITE(1,*)'ERROR, NO LOGR?? ABRIR EL ARCHIVO'
STOP 100
END
regsrv32 CREA2.dll
i get this error
The DLLRegister entry point was not found
I have view the help file but can find anything that help me out.
As you see, in my routine there is no parameter pasing, so i thing
this would be easier.
Thank
Jorge Matheus
Caracas Venezuela
0 Kudos
0 Replies
Reply