home *** CD-ROM | disk | FTP | other *** search
- gValidNoteWidth = max_char_width() * 36;
- gValidNoteHeight = gStaticTextHeight * 8;
- gOtherButtonWidth = max(
- zstring_width(zstring: '$$$IDS_BUTTON_LOGON'),
- zstring_width(zstring: '$$$IDS_BUTTON_IMPORT'),
- zstring_width(zstring: '$$$IDS_BUTTON_PROPERTIES'));
-
- dialog(name: '$$$/Dialogs/ValidateAlert' )
- {
- view(align_children: align_left, align_children: align_center)
- {
- view(align_children: align_top)
- {
- picture(item_id: 'icon', width: 32, height: 32);
- static_text(item_id: 'Note', name: '$$$/Dialogs/ValidateAlert/Note',
- width: gValidNoteWidth, height: gValidNoteHeight, selectable: true );
- }
- view(align_children: align_top)
- {
- button(item_id: 'Okay', name: '$$$/Dialogs/ValidateAlert/OkayButton');
- button(item_id: 'Butt', width: gOtherButtonWidth, name: '$$$IDS_BUTTON_IMPORT');
- }
- }
- }
-