*! version 1.0.0 10/26/93 STB16: zz3 program define stb_qihh version 3.1 #delimit ; di _n in gr _dup(79) "-" _n "The STB informer allows you to find inserts based on:" _n(2) _col(8) "1) the insert number," _n _col(8) "2) the title," _n _col(8) "3) the author," _n _col(8) "4) a word appearing in the title," _n _col(8) "5) a file (ado-file, .dta file, etc.) associated with it." _n ; di in gr "The search can result in no match, one match, or more than one match. You" _n "may list the matches. When there is one match -- you may select one from" _n "the list when there is more than one -- the list includes the software" _n "(filenames) associated with the insert. The STB informer will even tell" _n "you if you have installed the files." _n ; di in gr _n "When using the informer:" _n(2) _col(8) in wh "end" in gr " always means back up; so does simply pressing Enter." _n(2) _col(8) in wh "?" in gr " and " in wh "??" in gr " mean help, brief and verbose." _n ; di _n(2) in gr "Examples of top-level use" _n "-------------------------" _n ; di in gr "Obtain list of all statistical inserts" _col(60) in ye "-> " in wh "s*"; di in gr "Obtain list of all general statistics inserts" _col(60) in ye "-> " in wh "sg*" ; di in gr "Obtain detail of insert sg11.2" _col(60) in ye "-> " in wh "sg11.2" ; di in gr "Obtain list of all sg11 inserts (sg11, sg11.1, ...)" _col(60) in ye "-> " in wh "sg11*" ; di _n in gr "Obtain list of all inserts with " _quote "errors" _quote " in title" _skip(10) in ye "-> " in wh "/errors" ; di _n in gr "Obtain list of all insert written by Royston" _col(60) in ye "-> " in wh "\royston" ; di _n in gr "Obtain list of all inserts dealing with pause command" _col(60) in ye "-> " in wh "=pause" _n in gr _skip(51) "or" _col(60) in ye "-> " in wh "=pause.ado" ; di in gr "Obtain list of all inserts supplying arctic.dta" _col(60) in ye "-> " in wh "=arctic.dta" ; di in gr "Obtain list of all inserts supplying .dta data sets" _col(60) in ye "-> " in wh "=*.dta" ; di _n in gr "List the STB publication calendar" _col(60) in ye "-> " in wh ">cal" ; di in gr _dup(79) "-" ; #delimit cr end