Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations KootK on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. sgirardi

    How to call dos command in fortran code?

    A way to do that is to use the function called systemqq in the MSFLIB (or DFLIB in some cases). By example program XXX use msflib character(len=3) :: command logical :: result command = 'dir' result = systemqq (command) end program XXX will execute the dir command.
  2. sgirardi

    invoking application from fortran program

    I had the same problem and a way that I found to do that is to use the function called systemqq in the MSFLIB (or DFLIB in some cases). By example program XXX use msflib character(len=3) :: command logical :: result command = 'dir' result = systemqq (command) end...
  3. sgirardi

    How to call dos command in fortran code?

    Hello, I want to call a dos command in my fortran 90 code and I d'ont know how to do. Can somebody help me? Thank's.

Part and Inventory Search