PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → WD Mobile 23 Android "result"
WD Mobile 23 Android "result"
Débuté par DW, 07 juin 2018 01:51 - 4 réponses
Posté le 07 juin 2018 - 01:51
Hello All,

I am I missing something "Result" in the help says it works on android.

Why do I get:
clCalendar Error:RETURN= is not yet available in Android. clCalendar.cm_GetArrayCount, Local Procedure, line 14, column 1 Error:RETURN= is not yet available in Android. clCalendar.cm_Cal_GetTechName, Local Procedure, line 19, column 1 Error:RETURN= is not yet available in Android. clCalendar.cm_Del_CalButton, Local Procedure, line 19, column 1 Error:RETURN= is not yet available in Android. clCalendar.cm_Update_GetVersion, Local Procedure, line 31, column 1 Error:RETURN= is not yet available in Android. clCalendar.cm_Update_CheckForChanges, Local Procedure, line 32, column 1 clCalPrint Error:RETURN= is not yet available in Android. clCalPrint.cm_GetRowNumber, Local Procedure, line 28, column 1 Error:RETURN= is not yet available in Android. clCalPrint.cm_GetDayNumber, Local Procedure, line 32, column 1 clUser Error:RETURN= is not yet available in Android. clUser.clp_ChangeStoreID, Local Procedure, line 18, column 1 Error:RETURN= is not yet available in Android. clUser.gp_User_CheckForUpdateFlag, Local Procedure, line 20, column 1 Error:RETURN= is not yet available in Android. clUser.gp_User_GetDocID, Local Procedure, line 23, column 1 Error:RETURN= is not yet available in Android. clUser.GetStoreNameByStoreID, Local Procedure, line 23, column 1 Error:RETURN= is not yet available in Android. clUser.gp_User_DeleteDocFromList, Local Procedure, line 25, column 1
DW
Posté le 07 juin 2018 - 13:05
Hi Dennis

yes, result works fine on android

as for your errors, without seeing the code...

Best regards
Posté le 07 juin 2018 - 13:14
here is a simple procedure.

nRow is int = ArraySeek(:m_arrDocs,asLinearFirst,"sFilePath",sDocPath) nDocID is int IF nRow > 0 THEN nDocID = :m_arrDocs[nRow].nDocID END RESULT = nDocID
DW
Posté le 07 juin 2018 - 14:04
Hi Dennis

there is no = sign in the result syntax. Neither in windev mobile nor in windev...

Remove it and it will work

Best regards
Posté le 07 juin 2018 - 19:48
Thank you Fabrice

Yes that was it. I have used it the wrong way for 11years in Windev without problem.
But know I see the error of my ways.

DW