PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV Mobile 2024 → Differences between testing environment and apple device
Differences between testing environment and apple device
Started by Mike Stewart, Jun., 23 2016 12:35 PM - 4 replies
Posted on June, 23 2016 - 12:35 PM
This is my first IOS project and I am trying to get some information from the user based on a previous entry. At first I tried a input box and although this worked on the test the box did not respond in an iPhone 5s. I then tried an internal window and this again works in the test environment but not on the iPhone or an iPad. Most of the issues I have faced in getting the app from one environment to the other appear to be issues of timing (when things happen or when they cut out). I am less sure of where to look in this instance and I am desperately short of time. Any help (even info about the basic principles of possible differences) would be massively appreciated


IF EDT_Add_t2_group<>"" THEN
sKey is string=HFilter(groups,groupname,EDT_Add_t2_group)
HReadFirst(groups,sKey)
IF HOut(groups)=False THEN
Error("That group already exists"+CR+"Please enter another")
ELSE

gsName =EDT_Add_t2_group
IF IsNumeric(Left(gsName,1))=True THEN
ChangeSourceWindow(IWC_question,IW_frontRange)
IWC_question..X=(SysXRes()/2)-100
ELSE
IF IsNumeric(Right(gsName,1))=True THEN
ChangeSourceWindow(IWC_question,IW_BackRange)
IW_BackRange..X=(SysXRes()/2)-100
ELSE
loadSingle()
END
END
END
END
Posted on June, 23 2016 - 1:54 PM
Hi Mike,

I'm not sure what your experience is, but if you are coming from windev
(ie NOT mobile), the MAIN difference is that there is no MODAL window in
android/ios

So you can open another window on top of the first one, but your code
continue after that...

I'm using a lot PLANES in mobile, it's quite easy to implement

except for that, I'm not sure what to tell you.

Best regards

--
Fabrice Harari
International WinDev, WebDev and WinDev mobile Consulting

More information on http://www.fabriceharari.com
Posted on June, 27 2016 - 10:53 AM
Fabrice

Thanks that's great. Planes have been much easier to work with and I am now rolling them out across the rest of my app.

Just one quick other question regarding entering information. Normally on entering information on forms on a touch screen there is a navigation bar on top of the keyboard (i.e. next, prev etc). Is it possible to get such a thing on using windev? I can't seem to find anything so far and it would really speed up the form completion part of my app.


Thanks
Posted on June, 27 2016 - 8:37 PM
Hi Mike,

where did you see such buttons? I don't remember any app with a keyboard
like that...

Best regards

Fabrice

Le 6/27/2016 à 2:53 AM, Mike Stewart a écrit :
Fabrice

Thanks that's great. Planes have been much easier to work with and I am
now rolling them out across the rest of my app.

Just one quick other question regarding entering information. Normally
on entering information on forms on a touch screen there is a navigation
bar on top of the keyboard (i.e. next, prev etc). Is it possible to get
such a thing on using windev? I can't seem to find anything so far and
it would really speed up the form completion part of my app.


Thanks
Posted on June, 28 2016 - 4:48 PM
Fabrice

This is the kind of thing I mean. This is on Safari





Thanks

Mike