Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

QuickWin problems

IDZ_A_Intel
Employee
555 Views

Windows 7 Basic, Visual Studio 2008, Intel Visual Fortran 11.0.061 & 11.1.051:

1) Exit from the dialog box (function DLGMODAL module IFLOGM) Quick Win projects leads to hang windows. This
window can be closed only from the windows task bar.
Stuck occurs without the use of dialogue, if at the end of the program to the message
"Program Termonated with exit code 0. Exit Window?" answer "No".

2) only for the Intel Visual Fortran 11.1.051:
Quick Win projects in an attempt to replace the name wc% title variable initialization TYPE (windowconfig) wc
function GETWINDOWCONFIG (wc) causes abnormal program termination. Not satisfied initialize
font variable wc% extendfontname.

Thanks, Wladimir.

0 Kudos
3 Replies
IDZ_A_Intel
Employee
555 Views

We've had several reports of the first problem and it is under investigation, though we are finding it difficult to reproduce.

Please attach a test case that demonstrates the second problem.

0 Kudos
IDZ_A_Intel
Employee
555 Views

Thanks, Steve. If I understand you correctly, the problem of overlapping dialogue IFLOGM and Quick Win on Windows 7 platform wassn't solved yet?


This is text about problem in Intel Visual Fortran 11.1.051 (2nd):

USE IFQWIN

LOGICAL(4) status
TYPE (windowconfig) wc

status = GETWINDOWCONFIG(wc)
wc%title='Source2'c
wc%fontsize=QWIN$EXTENDFONT
wc%extendfontname='Courier New Cyr'c
status = SETWINDOWCONFIG(wc)
IF(.NOT. status ) THEN ! if setwindowconfig error
status = SETWINDOWCONFIG(wc) ! reset
! setwindowconfig with corrected values
END IF
status = GETWINDOWCONFIG(wc)
print *,'wc%title=',wc%title
print*,'wc%extendfontname=',wc%extendfontname
print *
print *,''
pause

END

Sincerely, Vladimir.

0 Kudos
IDZ_A_Intel
Employee
555 Views
No, the Windows 7 hang problem is not yet solved. I don't think we have even figured out why it is happening yet. I suspect it requires some piece of software outside of Windows 7 and IVF to replciate, but that's just a theory.
0 Kudos
Reply