home *** CD-ROM | disk | FTP | other *** search
- gDialogWidth = 500;
- gProgressBarWidth = 261;
- gCoverImageWidth = 100;
- gStaticTextAvailWidth = gDialogWidth - gCoverImageWidth - 30;
-
- dialog(name: '$$$/Dialogs/EBPDialogCopyToHH', align_children: align_left, width: gDialogWidth)
- {
- view(align_children: align_left )
- {
- view(align_children: align_row)
- {
- static_text(name:'$$$/Dialogs/EBPDialogCopyToHH/SelectUser', alignment: align_left);
- popup(item_id: 'Usrs', width: max_char_width() * 6, alignment: align_left);
- button(item_id: 'Pref', name: '$$$/Dialogs/EBPDialogCopyToHH/Preferences');
- }
-
- gap(height: 10);
-
- static_text(item_id: 'Inst', width: gStaticTextAvailWidth, height: 110, alignment: align_left);
-
- gap(height: 5);
-
- view(align_children: align_row)
- {
- static_text(item_id: 'Prog', alignment: align_left, width: gDialogWidth - (max_char_width() * 10) - 10);
- static_text(item_id: 'XofY', alignment: align_left, width: max_char_width() * 10);
- }
-
- gap(height: 10);
- progress_bar(item_id: 'Pbar', width: gProgressBarWidth );
- ok_cancel();
- }
- }
-
-