home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 v2.4 Fix / W95-v2.4fix.iso / ACADWIN / SUPPORT / APPLOAD.DCL < prev    next >
Encoding:
Text File  |  1995-02-08  |  3.5 KB  |  107 lines

  1. // Next available MSG number is    16 
  2. // MODULE_ID APPLOAD_DCL_
  3. /* Next available MSG number is  16 */
  4.  
  5. //----------------------------------------------------------------------------
  6. //
  7. //   APPLOAD.DCL   Version 13.0
  8. //
  9. //   Copyright (C) 1991, 1992, 1993, 1994 by Autodesk, Inc.
  10. //
  11. //     Permission to use, copy, modify, and distribute this software
  12. //     for any purpose and without fee is hereby granted, provided
  13. //     that the above copyright notice appears in all copies and
  14. //     that both that copyright notice and the limited warranty and
  15. //     restricted rights notice below appear in all supporting
  16. //     documentation.
  17. //
  18. //     AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
  19. //     AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
  20. //     MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK, INC.
  21. //     DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
  22. //     UNINTERRUPTED OR ERROR FREE.
  23. //
  24. //     Use, duplication, or disclosure by the U.S. Government is subject to
  25. //     restrictions set forth in FAR 52.227-19 (Commercial Computer
  26. //     Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
  27. //     (Rights in Technical Data and Computer Software), as applicable.
  28. //
  29. //.  
  30. //----------------------------------------------------------------------------
  31. //
  32. //    APPLOAD.DCL - Dialogue definitions for APPLOAD.LSP 
  33. //
  34. //----------------------------------------------------------------------------
  35.  
  36. //dcl_settings : default_dcl_settings { audit_level = 3; }
  37.  
  38. appload : dialog        {
  39.         aspect_ratio = 0;
  40.         label = "Cargar archivos AutoLISP, ADS y ARX";
  41.         : row {
  42.             : column {
  43.                    : list_box {
  44.                        label = "Archivos a cargar" ;
  45.                  mnemonic = "h";
  46.                        key = "fp_list";
  47.                        width =  50;
  48.                        height = 10;
  49.                        multiple_select = true;
  50.                    }
  51.              }
  52.           : column {
  53.               spacer_1;
  54.                  : button {
  55.                   label = "Archivo...";
  56.                   key = "add_to_list";
  57.                   mnemonic = "A";
  58.               }
  59.                     : button {
  60.                         label = "Suprimir" ;
  61.                            key   = "remove_item" ;
  62.                   mnemonic = "p";
  63.                         }
  64.                     : toggle {
  65.                         label = "Guardar lista" ;
  66.                            key   = "save_list" ;
  67.                   mnemonic = "G";
  68.                         }
  69.                spacer_1;
  70.                 }
  71.      }
  72.      spacer_1;
  73.      : row {
  74.          spacer_1;
  75.          : button {
  76.              label = "Cargar";
  77.              key = "load";
  78.              fixed_width     = true;
  79.              width           = 8;
  80.              alignment = centered;
  81.              mnemonic = "r";
  82.          }
  83.          : button {
  84.              label = "Descargar";
  85.              key = "unload";
  86.              fixed_width     = true;
  87.              width           = 8;
  88.              alignment = centered;
  89.              mnemonic = "D";
  90.          }
  91.          : button {
  92.              label = "Salir";
  93.              key = "cancel";
  94.              fixed_width     = true;
  95.              width           = 8;
  96.              alignment = centered;
  97.              is_cancel       = true;
  98.              mnemonic = "S";
  99.          }
  100.          help_button;
  101.          spacer_1;
  102.      }
  103.         errtile;
  104. }
  105.  
  106.  
  107.