-->
Page 1 of 2

HTML PAGES

PostPosted: Wed Nov 16, 2016 4:41 pm
by tcpipchip
In my project i defined 1 html webpage that is working fine!

How i can i define more that 1 webpage to show in differents moments ?

For example, i have a webpage to enter data, but i need other for print the data.

Re: HTML PAGES

PostPosted: Wed Nov 16, 2016 6:04 pm
by Electroguard
Code: Select all[HOME]
cls
html "<BR>This is HOME page<BR>"
goto [FOOTER]

[PAGE1]
cls
html "<BR>This is Page 1<BR>"
goto [FOOTER]

[PAGE2]
cls
html "<BR>And this is Page 2<BR>"
goto [FOOTER]

[FOOTER]
html "<BR>"
button "Home", [HOME]
html " "
button "Page1", [PAGE1]
html " "
button "Page2", [PAGE2]
html "<BR>"
wait

Re: HTML PAGES

PostPosted: Thu Nov 17, 2016 2:01 pm
by tcpipchip
Thanks! That opened my mind! :)

Re: HTML PAGES

PostPosted: Thu Nov 17, 2016 2:09 pm
by Electroguard
Well it's just something which worked for me in V2, but I'm only a 'muddler', so there's probably better ways of going about it.