PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV Mobile 2024 → Calling Java Code
Calling Java Code
Iniciado por GS IT, 04,oct. 2023 14:35 - 1 respuesta
Miembro registrado
2 mensajes
Publicado el 04,octubre 2023 - 14:35
Can anyone post a example of how to call some java code in a global function.

Some as simple as in global procedures you have

public static int getNumber()
{
return 5;
}

how do you call that function in the App. for example, when I try numb = getNumber() in windev mobile code , it says my code is not compatible?
Miembro registrado
7 mensajes
Publicado el 31,octubre 2023 - 17:24
https://doc.windev.com/…

i've manage to do it without the warning
nUmb is int
<Compile IF TypeConfiguration=Android>
nUmb = getNumber()
<END>
Info(nUmb)