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

  1. gListWidth = 460;
  2. gListHeight = gEditTextHeight * 6;
  3.  
  4. dialog( name: '$$$/Dialogs/ChooseCredential/Title' )
  5. {
  6.     view( align_children: align_left )
  7.     {
  8.         static_text( item_id: 'reas', alignment: align_fill );
  9.  
  10.         cluster( alignment: align_fill, name: '$$$/Dialogs/ChooseCredential/CredentialsCluster' )
  11.         {
  12.             mclv( item_id: 'cred', dwidth: gListWidth, dheight: gListHeight );
  13.  
  14.             view( align_children: align_top, alignment: align_fill )
  15.             {
  16.                 picture( item_id: 'icon', width: 16, height: 16 );
  17.                 static_text( item_id: 'warn', alignment: align_fill );
  18.                 button( item_id: 'add ', name: '$$$/Dialogs/ChooseCredential/AddButton' );
  19.             }
  20.         }
  21.  
  22.         cluster( alignment: align_fill, name: '$$$/Dialogs/ChooseCredential/PersistenceCluster' )
  23.         {
  24.             radio( item_id: 'rad0', group_id: 'pers', name: '$$$/Dialogs/ChooseCredential/PersistNever' );
  25.             radio( item_id: 'rad1', group_id: 'pers', name: '$$$/Dialogs/ChooseCredential/PersistSession' );
  26.             radio( item_id: 'rad2', group_id: 'pers', name: '$$$/Dialogs/ChooseCredential/PersistAlways' );
  27.         }
  28.  
  29.         ok_cancel_help();
  30.     }
  31. }
  32.