AfraLisp Blog

The AutoLisp/Visual Lisp/VBA Resource Website

AfraLisp Blog

Home Newsletter Utter Rubbish Coding Tips AutoCAD Tips Contact Downloads WAUN

list_box.

list_box

Syntax: 

	: list_box {
          action alignment allow_accept fixed_height
          fixed_width height is_enabled is_tab_stop
          key label list mnemonic multiple_select
          tabs value width
        } 

DCL Coding: 
lisp48i : dialog {				//dialog name
          label = "list_box" ;			//give it a label

     	: list_box {				//define list box
        key = "selections";			//give it a name
        }					//end list

        ok_cancel ;				//predefined OK/Cancel button

        }					//end dialog 

AutoLisp Coding: 
(defun C:lisp48i ()
;define function	

  (setq NAMES '("Monday" "Tuesday" "Wednesday" "Thursday"
                "Friday" "Saturday" "Sunday")
  );setq
  ;define list

  (setq dcl_id (load_dialog "lisp48i.dcl"))
  ;load dialog

  (if (not (new_dialog "lisp48i" dcl_id)
  ;test for dialog

      );not

    (exit)
    ;exit if no dialog

  );if

  (start_list "selections")
  ;start the list box

  (mapcar 'add_list NAMES)
  ;fill the list box

  (end_list)
  ;end list

  (action_tile
    "accept"
    ;if O.K. pressed

    (strcat
    ;string 'em together
      "(progn 

      (setq SIZ (atof (get_tile \"selections\")))"
      ;get list selection

      "(done_dialog) (setq userclick T))"	
      ;close dialog

    );strcat

  );action tile

    (action_tile
    "cancel"
    ;if cancel button pressed

    "(done_dialog) (setq userclick nil)"	
    ;close dialog

    );action_tile

  (start_dialog)	
  ;start dialog
				
  (unload_dialog dcl_id)
  ;unload	

   (if userclick
   ;check O.K. was selected

    (progn
    ;if it was do the following

      (setq SIZ (fix SIZ))
      ;convert to integer

      (setq SIZ (nth SIZ NAMES))
      ;get the Day

      (alert (strcat "You Selected: " SIZ))			
      ;display the Day

    );progn

  );if userclick


 (princ)

);defun

(princ)
 
The AutoLisp/Visual Lisp/VBA Resource Website

Copyright © 1999-Perpetuity by AfraLisp

All rights reserved.
Information in this document is subject to change without notice.
Site created and maintained by Kenny Ramage

The AutoLisp/Visual Lisp/VBA Resource Website