How to implement change password dialog box using resource file?

Login to reply to this topic.
Mon, 2007-01-01 16:44
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:11
Joined: 2006-09-19
Forum posts: 30
Re: How to implement change password dialog box using resource f
Hi,
problem solved.
Tue, 2007-01-30 09:56
Joined: 2004-09-15
Forum posts: 25
Re: How to implement change password dialog box using resource f
hi pradeepmisra,

how did u solve it? can u give some snippet of your codes?

i preety much facing the same error. drawing 2 dialogs, but error when reached max characters, also still try to figure how to catch the value.

Thanks
Rx-lee
  • Login to reply to this topic.