__interface IBindableList : IUnknown

{

    size_t Count(void);

    HRESULT GetCaption(size_t index, LPBSTR pCaption);

};

Implement this interface if you have a data source component that you want to bind to a combo box by calling its Bind method.

Related Topics

Wizard Page Interfaces
size_t Count(void)
HRESULT GetCaption(size_t index, LPBSTR pCaption)