Thread posts in Forms:
1.
Started 1 month, 3 weeks ago (2008-10-09 15:00:00)
by stobbsc
HI all, I'm back again. In my app, my main screen is a list box. From here if I select option one it opens a form and when I close the form I go back to my listbox -- perfect. Now if you select option 2 it opens a listbox which I can then further select items. However I don't know how to get back to my original screen. Should I maybe be going from main screen to a form...
Size: 692 bytes
Customize:
2.
Started 1 month, 3 weeks ago (2008-10-09 15:00:00)
by stobbsc Offline
HI all, I'm back again. In my app, my main screen is a list box. From here if I select option one it opens a form and when I close the form I go back to my listbox -- perfect. Now if you select option 2 it opens a listbox which I can then further select items. However I don't know how to get back to my original screen. Should I maybe be going from main screen to a form ...
Size: 635 bytes
Customize:
3.
Started 1 month, 3 weeks ago (2008-10-09 15:08:00)
by bogdan.galiceanu
Couldn't you use appuifw.app.body to set the application's screen back to the main screen? So if you have listbox1 as the main screen, you go to listbox2 and then set appuifw.app.body=listbox1 to be taken back to the first lisbox.
Size: 287 bytes
Customize:
4.
Started 1 month, 3 weeks ago (2008-10-09 15:08:00)
by bogdan.galiceanu Offline
Couldn't you use appuifw.app.body to set the application's screen back to the main screen? So if you have listbox1 as the main screen, you go to listbox2 and then set appuifw.app.body=listbox1 to be taken back to the first lisbox.
Size: 230 bytes
Customize:
5.
Started 1 month, 3 weeks ago (2008-10-09 15:12:00)
by stobbsc
that sounds exactly what I am needing how do that? Is that reconfiguring the app.body soft keys? thanks Chris
Size: 208 bytes
Customize:
6.
Started 1 month, 3 weeks ago (2008-10-09 15:12:00)
by stobbsc Offline
that sounds exactly what I am needing how do that? Is that reconfiguring the app.body soft keys? thanks Chris
Size: 151 bytes
Customize:
7.
Started 1 month, 3 weeks ago (2008-10-09 15:14:00)
by bogdan.galiceanu
Yes, you could assign a function to the left softkey that takes you back, for example. Code: #Define the function to show the first lisbox def back(): appuifw.app.body=listbox1 #Assign the function to the left softkey appuifw.app.exit_key_handler=back
Size: 612 bytes
Customize:
8.
Started 1 month, 3 weeks ago (2008-10-09 15:14:00)
by bogdan.galiceanu Offline
Yes, you could assign a function to the left softkey that takes you back, for example. Code: #Define the function to show the first lisbox def back(): appuifw.app.body=listbox1 #Assign the function to the left softkey appuifw.app.exit_key_handler=back
Size: 555 bytes
Customize:
9.
Started 1 month, 3 weeks ago (2008-10-09 15:29:00)
by stobbsc
HI there, Ok thats cool. However when I move back to the first list box after pressing back, will the back button change to my previous exit button? thanks Chris
Size: 277 bytes
Customize:
10.
Started 1 month, 3 weeks ago (2008-10-09 15:29:00)
by stobbsc Offline
HI there, Ok thats cool. However when I move back to the first list box after pressing back, will the back button change to my previous exit button? thanks Chris
Size: 220 bytes
Customize:
|
|
Top contributing authors for Forms
user's latest post:
Forms
Published (2008-10-10 09:01:00)
Thanks for the reply, How to I use appuifw2, do I need to install the module and if so, is there a walk through that I could use and where do I get the files. Thanks CHris
user's latest post:
Forms
Published (2008-10-09 17:18:00)
Sorry I had a typo in my main script which stopped it working. One last question can I change the righ soft key to say back instead of exit?
user's latest post:
Forms
Published (2008-10-10 12:30:00)
A lot of that information is in the links I gave. Download it from here , sign it with all capabilities here and then install it on the phone and use it instead of the regular appuifw.
bogdan.galiceanu Offline
7
user's latest post:
Forms
Published (2008-10-09 16:46:00)
I for one can't find the problem. Could you please post the entire code, exactly as it is when you're testing it?
|