Hello,
My main program contains a call-back from which is called a subroutine, which is placed in my MODULE. The code for the call-back is as follows:
...
INTEGER FUNCTION vektor_graf()
USE CLRWIN
USE modul_mm_mk
IMPLICIT NONE
INTEGER K
call ENABLE_UTF8@(1)
CALL TRASA_OK_POCET_RIADKOV (K)
vektor_graf = 1
END FUNCTION vektor_graf
...
The called subroutine checks (among other things) the availability of a required external file. I intentionally removed the external file to see whether the called subroutine will issue a warning that the required file is missing as I coded it. The subroutine uses a call-back assigned to the STOP button which is in the warning window.
I get the warning message (dialog) as expected, but when I press the STOP button on the warning dialog, I get the following run-time error:
Where could be a problem?
Martin
