PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV Mobile 2024 → Internal window not showing
Internal window not showing
Iniciado por Charles D, 20,oct. 2016 19:37 - 2 respuestas
Publicado el 20,octubre 2016 - 19:37
Im trying to open a small option window inside a window using an Internal window (not the component)
something like this

OpenChild(IW_OptionWindow)

inside a button.
it works fine in the emulator, it is shown in the center of the screen as I want BUT once I compile the project and install it in my phone it doesnt; It never shows up, intead it opens the window Im currently on like OpenMobileWindow(WIN_MainWindow)

what can I do?
Publicado el 20,octubre 2016 - 22:36
Hi Charles,

that's not what internal windows are for. They are SPECIFICALLY made to
be displayed inside an internal window control inside another regular
window.

So you either change them in regular windows, or you create a container
window with only an internal window control and display them in it

Best regards

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

Ready for you: WXShowroom.com, WXReplication (open source) and now WXEDM
(open source)

More information on http://www.fabriceharari.com


Le 10/20/2016 à 11:37 AM, Charles D a écrit :
Im trying to open a small option window inside a window using an
Internal window (not the component)
something like this

OpenChild(IW_OptionWindow)

inside a button.
it works fine in the emulator, it is shown in the center of the screen
as I want BUT once I compile the project and install it in my phone it
doesnt; It never shows up, intead it opens the window Im currently on
like OpenMobileWindow(WIN_MainWindow)

what can I do?
Publicado el 21,octubre 2016 - 17:03
Thanx man, it works now.
I added an internal window component, attached the internal window, set it to visible = false and once I needed it to be used just changed the visibility to true and thats it!

thanks so much