I have a VB project which prints lines of data to a text file:
Dim textline As String
FileOpen(1, Application.StartupPath & "\ouputtextfile.txt", OpenMode.Output)
textline = "T" & Environment.NewLine & "1"
Print(1, textline)
FileClose(1)
I then run an executable which was compiled from fortran...
I have a text file containing lines of input data:
T
1
300.00
C:\Documents and Settings\username\output\asdf.txt
which I am reading with some .f95 code:
character(len=1) ::var1
integer ::var2
double precision ::var3
character(len=150)::var4
open(12,file='input.txt')...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.