Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

Other project types

lytviak
Beginner
655 Views
I have a whack of CGI code I have written & has been running under VMS for about 6 years. I need to move it to NT. Does anyone know what kind of project I need to set up in CVF such that it doesn't open up any kind of consol or window. I communicate with the web daemon via standard CGI environmental symbols & don't want any kind of IO set up or attached for me.
0 Kudos
3 Replies
Steven_L_Intel1
Employee
655 Views
"Fortran Windows Application". The main entry point is the WinMain routine, and you can do anything you like inside it. No windows or anything else will be created unless you create them. You can start with the sample application the project wizard creates and then just delete all the code that creates and manipulates the window.

Steve
0 Kudos
james1
Beginner
655 Views
While what Steve says is true I would instead recommend starting by simply compiling from the command line with defaults without re-organizing your code as would be required by changing it to a windows app. This way it should be trivial to keep your code the same for both operating systems. Then you just need to be sure the process is created without a window (for example start /b program does this from command line) and i/o is directed appropriately.

James
0 Kudos
gregscvf
Beginner
655 Views
A Standard Graphic Application will not open a window unless you specifically write to the terminal.

Greg
0 Kudos
Reply