home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 August / VPR0308.ISO / ADOBEREADER60 / Installer / Data1.cab / RdLang32.JPN / EXVW / 10020 < prev    next >
Text File  |  2003-05-22  |  845b  |  27 lines

  1. gPasswordLabelWidth = zstring_width(zstring: '$$$avSecurityOpenPasswordLabel') + max_char_width() * 2;
  2. gPasswordWidth = max_char_width() * 12;
  3. gMsgWidth = gPasswordLabelWidth + gPasswordWidth + max_char_width() * 5;
  4.  
  5. dialog( name: '$$$/Dialogs/Password' )
  6. {
  7.     group()
  8.     {
  9.         view( align_children: align_top )
  10.         {
  11.             picture(item_id: 'icon', width: 32, height: 32);
  12.             view( align_children: align_left )
  13.             {
  14.                 static_text(item_id: 'msg ', width: gMsgWidth, alignment: align_fill);
  15.                 static_text(item_id: 'msg2', width: gMsgWidth, alignment: align_fill);
  16.                 view( align_children: align_row )
  17.                 {
  18.                     static_text(item_id : 'plbl', alignment: align_right, width: gPasswordLabelWidth);
  19.                     edit_text(item_id: 'pswd', alignment: align_left, width: gPasswordWidth, password: true);
  20.                 }
  21.             }
  22.         }
  23.  
  24.         ok_cancel();
  25.     }
  26. }
  27.