invoking application from fortran program
invoking application from fortran program
(OP)
How to run (invoke) an application (*.exe file) from fortran program?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Contact USThanks. We have received your request and will respond promptly. Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting Guidelines |
invoking application from fortran program
|
Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.
Here's Why Members Love Eng-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
RE: invoking application from fortran program
program XXX
use msflib
character(len=3) :: command
logical :: result
command = 'dir'
result = systemqq (command)
end program XXX
will execute the dir command.