FIND_REC.SCX
------------

This AddIn searches the Coverage Target table, to move the list of available objects and procedure files to the entry of your choice.

It takes the form of a "Find" dialog loosely modelled after the one you'd get when you hit Ctrl-F in a BROWSE.  Like the native Find dialog, it can search more than one field for your phrase; its Content Scope can include:

* -- the names of objects (the first column in the main dialog listbox, in the Coverage Standard UI)

* -- the names of files (the second column in the Standard UI listbox)

* -- the contents of source code for those files.  

In fact, you could add this behavior into the Coverage Standard UI's frmMainDialog by turning on its KeyPreview property and looking for Ctrl-F keypresses. You would probably want to revert to the native Ctrl-F dialog if the editbox had the focus, and run this AddIn only when the listbox had focus.

You could also run this AddIn from a "Find" button in the main dialog (the ADD_UI.PRG AddIn shows you two ways to add a button to the main dialog; one of them calls this form). As you'll see in the ADD_UI.PRG AddIn, it's pretty easy to add a button to the Coverage Standard UI's main dialog; the dialog should handle its sizing appropriately.  

