dcl_settings : default_dcl_settings { audit_level = 3; } //------------------------------------------------------------------------------ // Program Name: Search.dcl [Search R2] // Created By: Terry Miller (Email: terrycadd@yahoo.com) // (URL: http://web2.airmail.net/terrycad) // Date Created: 7-11-05 // Function: Searches for a word or phrase in files // Note: Search requires functions inside of GetIcon.lsp. //------------------------------------------------------------------------------ // Revision History // Rev By Date Description //------------------------------------------------------------------------------ // 1 TM 7-11-05 Initial version // 2 TM 10-20-06 Revised dialog functions //------------------------------------------------------------------------------ // Search - Searches for a word or phrase in files //------------------------------------------------------------------------------ Search : dialog { key = "Title"; label = ""; initial_focus = "Edit001"; spacer; : column {//< width = 37; fixed_width = true; : row {//< : column { width = 14; fixed_width = true; spacer; : column { : text { key = "Text001"; label = ""; alignment = left; } } } : edit_box { key = "Edit001"; edit_width = 40; fixed_width = true; } : column { width = 13; fixed_width = true; } }//> : row {//< : column { width = 14; fixed_width = true; spacer; : column { : text { key = "Text002"; label = ""; alignment = left; } } } : edit_box { key = "Edit002"; edit_width = 40; fixed_width = true; is_tab_stop = false; } : button { key = "Browse"; label = "&Browse"; is_tab_stop = false; } }//> : row {//< : column { width = 14; fixed_width = true; spacer; : column { : text { key = "Text003"; label = ""; alignment = left; } } } : popup_list { key = "List003"; width = 20; fixed_width = true; is_tab_stop = false; } : column { width = 35; fixed_width = true; } }//> }//> spacer; : row { fixed_width = true; alignment = centered; : ok_button { label = "&Search"; width = 11; } : cancel_button { width = 11; } } } //------------------------------------------------------------------------------