|
|
|
|
|
sComputeCrc16 (Function) In french: sCalculeCrc16 Checks a character string before and after transmission between WINDEV applications and WEBDEVsites. This function is used to check whether a character string was properly transmitted between WINDEV applications and WEBDEV websites during transmissions with risk of information loss (modem for example). To do this, simply calculate the "Crc16" before transmitting the chain, then check its value when the chain is received: the two values must be identical. nCrcLu is int
LigneLue is string
...
IF nCrcLu <> sComputeCrc16(LigneLue) THEN
Info("Erreur lors de la récupération de la chaîne")
END
Syntax
<Result> = sComputeCrc16(<String>)
<Result>: Integer Control value of the string. <String>: Character string Any character string. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|