__interface IComboBox : IControl

{

    HRESULT Bind([in] IBindableList *pList);

    HRESULT Select(int index);

    int Selected(void);

    void Add([in] LPCTSTR caption);

    HRESULT GetText([out, retval] LPBSTR pText);

    void Clear();

};

Related Topics

Wizard Page Interfaces
Overview
HRESULT Bind([in] IBindableList *pList)
HRESULT Select(int index)
int Selected(void)
void Add([in] LPCTSTR caption)
HRESULT GetText([out, retval] LPBSTR pText)
void Clear()