dcl_settings : default_dcl_settings { audit_level = 3; } //------------------------------------------------------------------------------ // Program Name: OtherLists.lsp // Created By: Terry Miller (Email: terrycadd@yahoo.com) // (URL: https://autolisp-exchange.com) // Date Created: 7-20-08 // Function: Template examples for OtherLists and EditBoxes. //------------------------------------------------------------------------------ // Revision History // Rev By Date Description //------------------------------------------------------------------------------ // 1 TM 7-20-08 Initial version //------------------------------------------------------------------------------ // OtherLists //------------------------------------------------------------------------------ OtherLists : dialog { key = "Title"; label = "";//Title$ from lsp file initial_focus = "List1"; spacer; : row {//< fixed_width = true; : column { width = 18.59; fixed_width = true; spacer; : text { key = "Text1"; label = "";//Text1$ from lsp file } } : popup_list { key = "List1";//Value1$ from lsp file width = 13.59; fixed_width = true; } }//> : row {//< fixed_width = true; : column { width = 18.59; fixed_width = true; spacer; : text { key = "Text2"; label = "";//Text2$ from lsp file } } : popup_list { key = "List2";//Value2$ from lsp file width = 13.59; fixed_width = true; } }//> : row {//< fixed_width = true; : column { width = 18.59; fixed_width = true; spacer; : text { key = "Text3"; label = "";//Text3$ from lsp file } } : popup_list { key = "List3";//Value3$ from lsp file width = 13.59; fixed_width = true; } }//> spacer; : row { fixed_width = true; alignment = centered; : ok_button { width = 11; } : cancel_button { width = 11; } } }//OtherLists //------------------------------------------------------------------------------ // EditBoxes //------------------------------------------------------------------------------ EditBoxes : dialog { key = "Title"; label = "";//Title$ from lsp file initial_focus = "Edit1"; spacer; : row {//< fixed_width = true; : column { width = 18.59; fixed_width = true; spacer; : text { key = "Text1"; label = "";//Text1$ from lsp file } } : edit_box { key = "Edit1";//Edit1$ from lsp file edit_width = 11.59; fixed_width = true; } }//> : row {//< fixed_width = true; : column { width = 18.59; fixed_width = true; spacer; : text { key = "Text2"; label = "";//Text2$ from lsp file } } : edit_box { key = "Edit2";//Edit2$ from lsp file edit_width = 11.59; fixed_width = true; } }//> : row {//< fixed_width = true; : column { width = 18.59; fixed_width = true; spacer; : text { key = "Text3"; label = "";//Text3$ from lsp file } } : edit_box { key = "Edit3";//Edit3$ from lsp file edit_width = 11.59; fixed_width = true; } }//> spacer; : row { fixed_width = true; alignment = centered; : ok_button { width = 11; } : cancel_button { width = 11; } } }//EditBoxes //------------------------------------------------------------------------------ // edit_value //------------------------------------------------------------------------------ edit_value : dialog { key = "Title"; label = "";//Title$ from lsp file initial_focus = "Edit1"; spacer; : row { : column { width = 6.09; fixed_width = true; spacer; : text { key = "Value"; label = "";//Value from lsp file } } : edit_box { key = "Edit1";//Edit1$ from lsp file edit_width = 15.26; fixed_width = true; } } spacer; : row { fixed_width = true; alignment = centered; : ok_button { width = 11; } : cancel_button { width = 11; } } }//edit_value //------------------------------------------------------------------------------