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.
連結已複製
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.