Code: Select all | Expand
#include "Fwce.ch"
FUNCTION MAIN()
LOCAL nVal1 := 2.000
LOCAL nVal2 := 10
MSGINFO( nVal1 /= nVal2 )
RETURN NIL
It terminates with an error when operator /= is executed.
EMG
Code: Select all | Expand
#include "Fwce.ch"
FUNCTION MAIN()
LOCAL nVal1 := 2.000
LOCAL nVal2 := 10
MSGINFO( nVal1 /= nVal2 )
RETURN NIL
Code: Select all | Expand
#include "Fwce.ch"
FUNCTION MAIN()
LOCAL nVal1 := 2.000
LOCAL nVal2 := 10
local nVal3 := nVal1 / nVal2
MSGINFO( nVal3 )
RETURN NIL
Antonio Linares wrote:Enrico,
This is a workaround:Code: Select all | Expand
#include "Fwce.ch"
FUNCTION MAIN()
LOCAL nVal1 := 2.000
LOCAL nVal2 := 10
local nVal3 := nVal1 / nVal2
MSGINFO( nVal3 )
RETURN NIL
Antonio Linares wrote:Anyhow we are going to check where the error comes from