PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → [WM20] Android and internal window
[WM20] Android and internal window
Iniciado por guest, 17,may. 2016 12:36 - 1 respuesta
Publicado el 17,mayo 2016 - 12:36
Hi,

Tried to use an internal window with Android device.
Does what it should do in Simulator.
But on real device, when opening the internal window, a new parent Window Comes up every time.

Any ideas?

Erik
Publicado el 17,mayo 2016 - 19:18
I have no problems using internal windows.
Maybe a dumb question but you say you are "opening the internal window". I suppose you mean opening the window with the internal-window control, where this control shows your internal window?

I use a window with 3 buttons and whenever the user clicks one of hte button a different internal window is shown. Works for me.
The internal-window control IWC_Info is bound to 3 internal windows using
IWListAdd(IWC_Info,IW_1)
IWListAdd(IWC_Info,IW_2)
IWListAdd(IWC_Info,IW_3)

And each button shows one of them using
IWListPosition(IWC_Info,1)
IWListPosition(IWC_Info,2)
IWListPosition(IWC_Info,3)