Code: Select all | Expand
#include "Fivewin.ch"
FUNCTION MAIN()
? test
RETURN NIL
It just freeze with latest FWH.
EMG
Code: Select all | Expand
#include "Fivewin.ch"
FUNCTION MAIN()
? test
RETURN NIL
Code: Select all | Expand
while ! Empty( __ClassName( n ) )
cErrorLog += " " + Str( n, 3 ) + " " + __ClassName( n++ ) + CRLF
end
Code: Select all | Expand
while __ClassName( n ) != "NUMERIC"
cErrorLog += " " + Str( n, 3 ) + " " + __ClassName( n++ ) + CRLF
end
EnricoMaria wrote:TryCode: Select all | Expand
while __ClassName( n ) != "NUMERIC"
cErrorLog += " " + Str( n, 3 ) + " " + __ClassName( n++ ) + CRLF
end
EMG
Code: Select all | Expand
WHILE n <= __ClsCntClasses()
cErrorLog += " " + Str( n, 3 ) + " " + __ClassName( n++ )+ CRLF
END