<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.us.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>16 Dec 2014 14:22:00 Z</lastBuildDate><pubDate>12 Dec 2014 05:14:00 Z</pubDate><description>In an app that I have built when a user tries to enter text in edit control which is placed in a Looper it generated error after typing in any one Edit control in looper.&#13;
&#13;
The Error screen as grabbed from Samsung Grand mobile&#13;
[attachment 1272 photo_2014-12-11_11-31-05.jpg]&#13;
&#13;
Here is the screen shot of the Window in question&#13;
[attachment 1273 2014-12-12_092730.jpg]&#13;
&#13;
Here are the settings that I have set for Looper&#13;
[attachment 1275 001.jpg]&#13;
&#13;
Here is the code to load Looper&#13;
I = 1 //Clear Looper LooperDeleteAll(LOOP_Comments) //Show student list for taking attendence //Code to Load Student Data from DB sSQL = "SELECT bm_id,em_sm_id,sm_id,sm_student_roll_no,sm_fname,sm_lname FROM batch_master bm INNER JOIN enrollment_master em ON bm.bm_id=em.em_bm_id INNER JOIN student_master sm ON em.em_sm_id=sm.sm_id WHERE bm_id=" + COMBO_BatchMaster bRetCode = AccessMySQL.mySQLExec(sSQL, 0) IF bRetCode = True THEN IF AccessMySQL.mySQLGetNumRows(0) &gt; 0 THEN AccessMySQL.mySQLPremier(0) //Move First WHILE (NOT AccessMySQL.mySQLEnDehors) nStudentID = AccessMySQL.mySQLCol(0,3) sStudetnName = AccessMySQL.mySQLCol(0,4) + " - " + AccessMySQL.mySQLCol(0, 5) + " " + AccessMySQL.mySQLCol(0, 6) LooperAdd(LOOP_Comments,I) LOOP_Comments.STC_StudentID = nStudentID LOOP_Comments.STC_StudentName = sStudetnName LOOP_Comments.EDT_Comments = "" I++ AccessMySQL.mySQLSuivant(0) //Move Next END //WHILE (NOT AccessMySQL.mySQLEnDehors) END //IF AccessMySQL.mySQLGetNumRows(0) &gt; 0 THEN ELSE Error("Error # " + AccessMySQL.mySQLErreur, AccessMySQL.mySQLGetErrorMessage()) END //IF bRetCode = True THEN Note: Here all the data is coming from MySQL database and I am using web service to load and save data.&#13;
&#13;
What must be the problem here. Why is the app giving error and crashing?&#13;
&#13;
Again if I use this same software in Android Emulator it never crashes.&#13;
&#13;
Please help.&#13;
&#13;
TIA&#13;
&#13;
Yogi Yang</description><ttl>30</ttl><generator>WEBDEV</generator><language>en_US</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49457-wm17-error-occurs-when-trying-enter-text-edit/read.awp</link><title>WM17 - Error occurs when trying to enter text in Edit control in a Looper</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49457-wm17-error-occurs-when-trying-enter-text-edit-49508/read.awp</comments><pubDate>16 Dec 2014 14:22:00 Z</pubDate><description>Follow up update for others.&#13;
&#13;
Even after setting everything in looper as per Fabrice's instructions the app was crashing on so…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49457-wm17-error-occurs-when-trying-enter-text-edit-49508/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49457-wm17-error-occurs-when-trying-enter-text-edit-49508/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49457-wm17-error-occurs-when-trying-enter-text-edit/read.awp">WM17 - Error occurs when trying to enter text in Edit control in a Looper</source><title>Re: WM17 - Error occurs when trying to enter text in Edit control in a Looper</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49457-wm17-error-occurs-when-trying-enter-text-edit-49474/read.awp</comments><pubDate>13 Dec 2014 14:49:00 Z</pubDate><description>Fabrice,&#13;
&#13;
Thanks for the tip.&#13;
&#13;
The error has disappeared!&#13;
&#13;
Now I will have to change code for 38 other Loopers in teh app.…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49457-wm17-error-occurs-when-trying-enter-text-edit-49474/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49457-wm17-error-occurs-when-trying-enter-text-edit-49474/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49457-wm17-error-occurs-when-trying-enter-text-edit/read.awp">WM17 - Error occurs when trying to enter text in Edit control in a Looper</source><title>Re: WM17 - Error occurs when trying to enter text in Edit control in a Looper</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49457-wm17-error-occurs-when-trying-enter-text-edit-49460/read.awp</comments><pubDate>12 Dec 2014 11:08:00 Z</pubDate><description>Hi&#13;
&#13;
the first problem ('maybe the only one), is that you are accessing the field directly, instead of using an attribute&#13;
&#13;
LO…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49457-wm17-error-occurs-when-trying-enter-text-edit-49460/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49457-wm17-error-occurs-when-trying-enter-text-edit-49460/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49457-wm17-error-occurs-when-trying-enter-text-edit/read.awp">WM17 - Error occurs when trying to enter text in Edit control in a Looper</source><title>Re: WM17 - Error occurs when trying to enter text in Edit control in a Looper</title></item></channel></rss>
