Hi, Just installed FTN95 v4.9.1 and Plato 3 on a new machine for simple teaching of Fortran.
My problem is trapping runtime errors - I have a little program zero.f95 that incurs a zero divide at runtime using
REAL X,Y X = 0.0 Y = 1.0 / X
If I run at the command prompt FTN95 zero.f95 /check /lgo the zero divide is trapped and up pops the Plato debugging window.
If I try running from within Plato even after setting /check in the Tools:Command Line Options and selecting CheckMate win32 for the configuration - the running program just hangs in the command window until I press Ctrl+C.
What I am doing wrong ? Previously I have used other PCs that under these circumstances pop up a nice little runtime error box saying 'zero divide at line nnnnn '
Help apreciated to get the settings right on this new install.
Andy. P.S. Just changed the code to use INTEGER and Integer constants and it traps it as I had expected. Is there some settings I need to alter for real arithmetic?