home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 August / VPR0308.ISO / ADOBEREADER60 / Installer / Data1.cab / PPKLite.JPN / EXVW / 20111 < prev    next >
Text File  |  2003-05-21  |  1KB  |  47 lines

  1. gPopupWidth = max( zstring_width(zstring: '$$$IDS_SIGNPWD_ELAPSE_PLURAL'), 
  2.                 zstring_width(zstring: '$$$IDS_SIGNPWD_ELAPSE_SINGULAR') )
  3.             + max(
  4.                 zstring_width(zstring: '$$$IDS_SIGNPWD_ELAPSE_SEC'),
  5.                 zstring_width(zstring: '$$$IDS_SIGNPWD_ELAPSE_min'),
  6.                 zstring_width(zstring: '$$$IDS_SIGNPWD_ELAPSE_MIN'),
  7.                 zstring_width(zstring: '$$$IDS_SIGNPWD_ELAPSE_hour'),
  8.                 zstring_width(zstring: '$$$IDS_SIGNPWD_ELAPSE_HOUR')) 
  9.             + 10;
  10.  
  11. dialog(name: '$$$/Dialogs/PasswordTimeout')
  12. {
  13.     
  14.     view(align_children: align_left)
  15.     {
  16.         check_box(item_id: 'Chbx', name: '$$$/Dialogs/PasswordTimeout/RequirePassword');
  17.  
  18.         gap(height: 5);
  19.  
  20.         view(align_children: align_top)
  21.         {
  22.             gap(width: 20);
  23.  
  24.             view(align_chidren: align_left)
  25.             {
  26.                 radio( item_id: 'rad0', name: '$$$/Dialogs/PasswordTimeout/Always' );
  27.                 view(align_children: align_row)
  28.                 {
  29.                     radio( item_id: 'rad1', name: '$$$/Dialogs/PasswordTimeout/PartialRadio1Label');
  30.                     popup( item_id: 'pop ', width: gPopupWidth);
  31.                 }
  32.             }
  33.         }
  34.  
  35.         gap(height: 5);
  36.  
  37.         view(align_children: align_row, alignment: align_fill)
  38.         {
  39.             static_text(name: '$$$/Dialog/PasswordTimeout/PasswordRequired');
  40.             edit_text( item_id: 'pwd ', password: true, alignment: align_fill );
  41.         }
  42.  
  43.         gap(height: 5);
  44.  
  45.         ok_cancel();
  46.     }
  47. }