                    
                     OWNCOMBO SAMPLE APPLICATION
                     ===========================

The OWNCOMBO.EXE example application illustrates the use of functions
and messages for combo boxes and owner-draw controls.  The user interface
of OWNCOMBO is fairly self-explanatory except, perhaps, for the text 
combo box dialog box.  This file explains the text combo box 
interface to help you interpret the source code.

The text combo box dialog box buttons send various messages to the combo box 
and the edit control.  These buttons allow the user to vary the data sent 
with each message. 

The buttons perform the following actions:

Unsl All:  Unselects any selection in the combo box.

Sel No:    Takes an integer value from the edit control and attempts to
           select an entry in the combo box given this index value.

Sel Txt:   Takes a text string from the edit control and attempts to
           select the item with the given text prefix.

Find Txt:  Searches for the text given in the edit control and returns
           the item number where it was found in the combo box.

Cb Dir:    Appends a directory listing of the current directory
           into the combo box.

Clr It:    Clears all the items in the combo box.

Add It:    Takes the string given in the edit control and adds it
           to the combo box.

Del It:    Deletes the currently selected item from the combo box.

Cpy It:    Copies the currently selected item in the combo box to
           the edit control.


Combo Notifications Check Box:

           When this box is checked, a message box appears showing
           the notification codes the combo box returns to the  
           application in response to the messages sent by the buttons.
