// // Generic multiple selection dialog box // // (C) Copyright 1999-2004, Four Dimension Technologies, Bangalore // Author: Rakesh Rao // // (C) 1999-2004, Four Dimension Technologies, Bangalore // e-mail : rakesh.rao@4d-technologies.com // Web : www.4d-technologies.com // list_items_mult_dlg : dialog { label = "Select Property"; : list_box { key = "items"; height = 10; width = 32; multiple_select=true; } ok_cancel; errtile; } // // Generic single selection dialog box // // (C) Copyright 1999, Four Dimension Technologies, Singapore // Author: Rakesh Rao // list_items_sing_dlg : dialog { label = "Select Property"; : list_box { key = "items"; height = 10; width = 32; multiple_select=false; } ok_cancel; errtile; }