PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → how to create in a looper in ios,android applications but proper does not show
how to create in a looper in ios,android applications but proper does not show
Iniciado por guest, 27,ene. 2015 07:12 - 4 respuestas
Publicado el 27,enero 2015 - 07:12
sir
i am a create a looper in ios and android applications but looper does not working in proper manner i have defined looper display() functions but it does not show looper
in show proper Manner but I have created database
Publicado el 27,enero 2015 - 09:20
Hi,

Have you managed to get a connection to the db?

regards,

Allard
Publicado el 27,enero 2015 - 13:00
sir
i have connected my applicatios from database and generated the applications from the but the looper did not work
Publicado el 27,enero 2015 - 14:31
Hmm,

Ok. You are sure the db connection isnot the problem? your question to me looks like your previous questions.

You could check the connection by putting 2 buttons in the screen and en edt-field in the screen

in the first button add. ( Code to write to the db )
IF hreadseekfirst(filename,fileID,1) THEN
file.name = edt-field
Hadd ( filename)
Else
file.name = edt-field
Hadd ( filename)
END

In the second button add following code. This is to check that it can read from the db
IF hreadseekfirst(filename,fileID,1) THEN
info("found the following"+ " | "+ file.name)
END

If this works then the problem is indeed with the looper. Try doing a simple connection. ( with the wizzard for looper) It would help if you profide some kind of error message.

regards

Allard
Publicado el 29,enero 2015 - 10:38
thank you