My account: Login | Sign Up
Loading... 

Forms | Thread profile

Thread profile page for "Forms" on http://www.forum.nokia.com. This report page is a snippet summary view from a single thread "Forms", located on the Message Board at http://www.forum.nokia.com. This thread profile page shows the thread statistics for: Total Authors, Total Thread Posts, and Thread Activity, which are reported in a table below. Additional thread profile information is also shown in the following ways:

1) Top Contributing Authors
2) Related Threads on "eBay Auctions"
3) Related Threads on Other Sites

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a thread's popularity and/or exact posting volumes at any given reporting period.

Title: Forms
Site: Nokia Developer Discussion Boards  Nokia Developer Discussion Boards - site profile
Forum: Python  Python - forum profile
Total authors: 4 authors
Total thread posts: 30 posts
Thread activity: no new posts during last week
Domain info for: nokia.com

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:  Customize "Forms :: Python :: Nokia Developer Discussion Boards"
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:  Customize "<b>Reply 1</b>: Forms :: Python :: Nokia Developer Discussion Boards"
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:  Customize "<b>Reply 2</b>: Forms :: Python :: Nokia Developer Discussion Boards"
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:  Customize "<b>Reply 3</b>: Forms :: Python :: Nokia Developer Discussion Boards"
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:  Customize "<b>Reply 4</b>: Forms :: Python :: Nokia Developer Discussion Boards"
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:  Customize "<b>Reply 5</b>: Forms :: Python :: Nokia Developer Discussion Boards"
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:  Customize "<b>Reply 6</b>: Forms :: Python :: Nokia Developer Discussion Boards"
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:  Customize "<b>Reply 7</b>: Forms :: Python :: Nokia Developer Discussion Boards"
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:  Customize "<b>Reply 8</b>: Forms :: Python :: Nokia Developer Discussion Boards"
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:  Customize "<b>Reply 9</b>: Forms :: Python :: Nokia Developer Discussion Boards"
 

Top contributing authors for Forms

Name
Posts
stobbsc
8
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
stobbsc Offline
8
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?
bogdan.galiceanu
7
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?