home *** CD-ROM | disk | FTP | other *** search
- gDialogWidth = 200;
- gDialogHeight = 175;
- gListWidth = 120;
- gListHeight = 120;
-
- dialog(name: '$$$/Dialogs/EBPDialogEditCategories', width: gDialogWidth, height: gDialogHeight)
- {
- view(align_children: align_column)
- {
- view(align_children: align_row)
- {
- view(align_children: align_left)
- {
- edit_text(item_id: 'newc', width:max_char_width() * 6);
- button( item_id: 'addc', name: '$$$/Dialogs/EBPDialogEditCategories/Add');
- button( item_id: 'delc', name: '$$$/Dialogs/EBPDialogEditCategories/Delete');
- }
- gap(width: 20);
- list_box(item_id: 'list', dwidth: gListWidth, dheight: gListHeight);
- }
- ok_cancel();
- }
- }
-
-
-