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

  1. gDialogWidth = max(
  2.     zstring_width(zstring: '$$$/Dialogs/FDFExportOptions/SaveNote'),
  3.     max_char_width() * 34 );
  4. dialog(name: '$$$/Dialogs/FDFExportOptions', target_id: 'name' )
  5. {
  6.     group()
  7.     {
  8.         static_text(item_id: 'note', name: '$$$/Dialogs/FDFExportOptions/Note', width: gDialogWidth );
  9.         view( align_children: align_top, alignment: align_fill )
  10.         {
  11.             gap(width: 5);
  12.             static_text(item_id: 'type', width: gDialogWidth, font_id: 5 );
  13.         }
  14.  
  15.          cluster( name: '$$$/Dialogs/FDFExportOptions/Cluster', align_children: align_left, alignment: align_fill)
  16.         {
  17.             static_text( item_id: 'savT', name: '$$$/Dialogs/FDFExportOptions/SaveNote', alignment: align_fill);
  18.             view( align_children: align_top, alignment: align_fill )
  19.             {
  20.                 gap(width: 5);
  21.                 view(align_children: align_left)
  22.                 {
  23.                     radio(item_id: 'rad1', name: '$$$/Dialogs/FDFExportOptions/SaveOption/EMail', alignment: align_fill);
  24.                     radio(item_id: 'rad2', name: '$$$/Dialogs/FDFExportOptions/SaveOption/SaveAs');
  25.                 }
  26.             }
  27.         }
  28.  
  29.         ok_cancel(ok_name: '$$$/Dialogs/NextButton');
  30.     }
  31. }