
Originally Posted by
cw2ebm
How Do I Save Fields in Appuifw.Form to File?
My English Bad.
I research this but i can't find
Please Tell me..

Hi and welcome to the Python DiBo
!
Please have a look at the below mentioned article in the Wiki.
http://wiki.forum.nokia.com/index.php/How_to_use_Forms
In the same code you could add few lines in the main to record the items to a text file.
Suppose f is your file handler, then you could use
Code:
a=myForm.getMobile( )
b=myForm.getModel( )
c=myForm.getAmount( )
d=myForm.getDate( )
e=myForm.getTime( )
FORM_FILE = #Your path here
f=open(FORM_FILE,'wt')
f.write(a)
f.write(b)
f.write(c)
f.write(d)
f.write(e)
f.close()
Just made it simpler and elaborated so that you can understand.
Hope that helps,
Best Regards,
Croozeus