Hi,
I am calling a DOS executable from a windows application (winapp). Each time the program is called a DOS window appears. I would like to avoid the appearance of the DOS window.
From a google search the solution seems like a redirection of the standard input and output. However I do not know where to start to achieve this in Fortran 😦
My code has the following form:
winapp
program dosbox
integer :: ifail
! Call the dos executable
!
! ??? Redirect STDIN and STDOUT ???
!
call cissue@('C:\\temp\\pol2poly.exe',ifail)
end program
How could I avoid the appearance of the DOS window using the FTN95 compiler?
Jacques