how to create change password dialog in Series 80?

Login to reply to this topic.
Sun, 2006-12-31 16:39
Joined: 2006-09-19
Forum posts: 30
Hi ,
I am trying to create dialog box to change password using resource file for Nokia 9300, I am trying to create two strings one for old password and second for New password , but I am not getting that . I am getting only one string ,so please help me what is the problem in my code which is below.

RESOURCE DIALOG r_change_password
       {
       title=STRING_CHANGEPASSWORD;
       buttons=R_EIK_BUTTONS_CANCEL_OK;
       flags=EEikDialogFlagWait;
       
       items=
               {
               DLG_LINE
                       {
                       type=EEikCtRichTextEditor;
                       prompt=STRING_PASSWORD;
                       id=EUserName;
                       control=RTXTED
                               {
                                  width=60;
                                 height=5;
                   numlines=1;
      textlimit=10;
                               };
                       },       
               DLG_LINE
                       {
                      type=EEikCtRichTextEditor;
                       prompt=STRING_NEW_PASSWORD;
                       id=EPhoneNumber;
                       control=RTXTED
                               {
                                  width=60;
       height=5;
                                 numlines=1;
      textlimit=10;
                               };
                       }         
               };
       }

Tue, 2007-01-02 15:15
Joined: 2006-09-19
Forum posts: 30
Re: how to create change password dialog in Series 80?
Hi,
Problem solved.
  • Login to reply to this topic.