Click here to Skip to main content
Licence 
First Posted 29 Jun 2003
Views 42,864
Bookmarked 30 times

Smart Auto-Complete (and Easy )

By | 29 Jun 2003 | Article
A Edit that Automatically completes your words

Introduction

You must override the two virtuals.

  • bool OnSearch(LPCTSTR szFilter); // return true if found , false otherwise

and

  • void OnFillList(); //Use this virtual to fill "AutoComplete-List"

You must take care with settings like DelayTime, MinChars etc. See the header files for more information

Code Listing

class CAutoIni : public CAutoEdit  
{
public:
    void DeleteString(LPCSTR szKey);
    int AddString(LPCSTR szEntry);
    virtual bool OnSearch(LPCTSTR szFilter);
    CAutoIni();
    virtual ~CAutoIni();
protected:
    int m_iMaxKeys;
    CString m_strSectionName;// set the section for .ini or reg
    CString m_strNumItemsKey;// if not set: default is "NumItens"
    CString m_strItemDataKey;// if not set: default is "Item"
public:
    inline void SetKeyNumItem(LPCTSTR szKeyName)
    {
        m_strNumItemsKey = szKeyName;
    }

    inline CString GetKeyNumItem()
    {
        return m_strNumItemsKey;
    }

    inline void SetMaxKeys(int iMax)
    {
        m_iMaxKeys;
    }

    inline int GetMaxKeys()
    {
        return m_iMaxKeys;
    }

    inline void SetItemKey(LPCTSTR szItemKey)
    {
        m_strItemDataKey = szItemKey;
    }

    inline CString GetItemKey()
    {
        return m_strItemDataKey;
    }


    //{{AFX_VIRTUAL(CAutoIni)
    //}}AFX_VIRTUAL

    //{{AFX_MSG(CAutoIni)
    //}}AFX_MSG

    DECLARE_MESSAGE_MAP()

protected:
    virtual void OnFillList();
};

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Vinicius Jarina

Software Developer (Senior)

Brazil Brazil

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralNot bad! PinmemberJohn R. Shaw14:24 11 Jul '03  
GeneralRe: Not bad! PinmemberLPVOID _vjocall Vinicius19:03 28 Jul '03  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 30 Jun 2003
Article Copyright 2003 by Vinicius Jarina
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid