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

fortran with VC ++ COM wrapper

juzubell
Beginner
532 Views
I am wrapping fotran programs around MS VC++ ATL COM object and I am having problems with write statements.

For example:
integer nfiles
character*100 ConvData

write(ConvData,11)nfiles
11 format(a90)


This gets an access violation code with numeric data. I changed compiler setting to debug multi-threaded dll. This helps move in non-numeric, but numbers still give me a problem.

Any suggestions?
0 Kudos
1 Reply
Steven_L_Intel1
Employee
532 Views
I assume that ConvData is an argument? My guess is that it's not being passed correctly.

Steve
0 Kudos
Reply