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

  1. gMyListWidth = max_char_width() * 18;
  2. gMyListHeight = gEditTextHeight * 10;
  3. gMyButtonsWidth = max(zstring_width(zstring: '$$$/Dialogs/SelFields/SelectAll'),
  4.                       zstring_width(zstring: '$$$/Dialogs/SelFields/DeselectAll'));
  5.  
  6. dialog(name: '$$$/Dialogs/SelFields', target_id: 'fsel')
  7. {
  8.     view(align_children: align_left)
  9.     {
  10.         cluster(item_id: 'ctx1', name: '$$$/Dialogs/SelFields/Fields')
  11.         {
  12.             view(align_children: align_top)
  13.             {
  14.                 view(align_children: align_left)
  15.                 {
  16.                     list_box(item_id: 'fild', width: gMyListWidth, height: gMyListHeight);
  17.                 }
  18.                 view(align_children: align_left)
  19.                 {
  20.                     button(item_id: 'bUt1', width: gMyButtonsWidth, name: '$$$/Dialogs/SelFields/SelectAll');
  21.                     button(item_id: 'bUt2', width: gMyButtonsWidth, name: '$$$/Dialogs/SelFields/DeselectAll');
  22.                     radio(item_id: 'incl', group_id: 'rgrp', name: '$$$/Dialogs/SelFields/Include');
  23.                     radio(item_id: 'excl', group_id: 'rgrp', name: '$$$/Dialogs/SelFields/Exclude');
  24.                     check_box(item_id: 'empt', name: '$$$/Dialogs/SelFields/Empty');
  25.                 }
  26.             }
  27.         }
  28.         ok_cancel();
  29.     }
  30. }
  31.