- Code: Select all Expand view
#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
#include "Fwce.ch"
FUNCTION MAIN()
LOCAL nVal1 := 2.000
LOCAL nVal2 := 10
MSGINFO( nVal1 /= nVal2 )
RETURN NIL
#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 view
#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
Return to FiveWin for Pocket PC
Users browsing this forum: No registered users and 14 guests