Click here to Skip to main content
15,891,841 members
Articles / Desktop Programming / MFC
Article

AutoComplete without IAutoComplete

Rate me:
Please Sign up or sign in to vote.
4.90/5 (46 votes)
30 Apr 2003CPOL3 min read 370.1K   8K   120   58
An AutoCompletion control that doesn't use IAutoComplete but still retains the same look and feel.

Sample Image

Introduction

There have been already several articles on AutoComplete functions on CodeProject. Many subclass a CEdit or CComboBox and complete the input in the control or show a variety in the dropdown list. Another option is to use the IAutoComplete with IEnumString and quite a lot of other I functions.

When I saw the WTL-AutoComplete function by Klaus Probst, I thought, "cool, but all that should be working even without Internet Explorer and cryptic calls". And, even more, fairly easily.

How to use

Copy the files (ACEdit.cpp/h + ACListWnd.cpp/h) into the project directory, then add them to the project and insert the header, preferably in stdafx.h.

#include "ACEdit.h"
Declare a CEdit or a CComboBox and subclass it to CACEdit
bevorehand:
CEdit m_EditCtrl1;

afterwards:
CACEdit m_EditCtrl1;

Afterwards initialise the control and define the mode, e.g. in OnInitDialog.

m_EditCtrl1.Init();
m_EditCtrl1.SetMode(); // default = _MODE_STANDARD_       

Possible modes could be:

  • _MODE_STANDARD_
  • _MODE_SEPARATION_
  • _MODE_FILESYSTEM_
  • _MODE_FS_ONLY_FILE_
  • _MODE_FS_ONLY_DIR_
  • _MODE_FS_START_DIR_
  • _MODE_SD_ONLY_FILE_
  • _MODE_SD_ONLY_DIR_
  • _MODE_CURSOR_O_LIST_
  • _MODE_FIND_ALL_.

See further down for more explanations. If you forget Init(), the initialisation will be made up later in SetMode().

Finally, insert the strings. There are two different methods to do this: AddSearchString and AddSearchStrings.

m_EditCtrl1.AddSearchString("Test1");
m_EditCtrl1.AddSearchString("Test2");
m_EditCtrl1.AddSearchString("Tiger");
m_EditCtrl1.AddSearchString("Dog");
  
or

static LPCTSTR STRINGS[] = 
{
    _T("Test1"),
    _T("Test2"),
    _T("Tiger"),
    _T("Dog"),
    NULL
};

m_EditCtrl1.AddSearchStrings(STRINGS);    

Before the insertion of the strings, the function AddSearchStrings() calls RemoveSearchAll(), and clears the internal item list of the type CStringArray. AddSearchStrings() can be combined with AddSearchString(), but this doesn’t work vice versa. A specific deletion of strings is not implemented at present.

This is all we need for a simple AutoComplete. Moreover, there is a possibility to implement separators. A m_EditCtrl1.SetSeparator(_T("\\")); causes a \ to function as a beginning or end of a line. If you enter XXX\t\YYY, in our example you will see a list including Test1, Test2 and Tiger.

But if the user enters xxTi, however, this fails. If you use constants like <Parameter1> (constants enclosed in brace characters, in our example <>). Then the possibility is given to extend the command SetSeparator() with a prefix, that is the first sign of your constants. The prefix must not be part of the SearchStrings. However, it does appear in the list and is part of a result.

...
m_EditCtrl1.AddSearchString("PARAMETER1>"); // without prefix!
m_EditCtrl1.AddSearchString("PARAMETER2>");
m_EditCtrl1.AddSearchString("PARAMETER3>");
m_EditCtrl1.SetSeparator("<",'<');
...     

This example yields the result as well if entered XXX< or /<.

And AutoComplete for the file system:

...
m_DirEdit.SetMode(_MODE_FILESYSTEM_);
...

Now, when you start typing a path, the control will drop down a list with paths that match what you've typed so far - run-command in the start menu (in Win2K or on machines with IE 5.0).

SetMode(_MODE_FS_ONLY_FILE_) lists files only and SetMode(_MODE_FS_ONLY_DIR_) only lists directories.

m_DirEdit.SetMode(_MODE_FS_START_DIR_);
m_DirEdit.SetStartDirectory(_T("C:\\Windows\\"));
...      
If you use either SetMode() _MODE_FS_START_DIR_, _MODE_SD_ONLY_FILE_ or _MODE_SD_ONLY_DIR_,  a directory can be indicated by SetStartDirectory().

In the example above, the control lists all files in C:\Windows, but in contrast to _MODE_FILESYSTEM_ without showing the path (C:\Windows).

Version 1.2

-Fix: _MODE_SD_ONLY_DIR_
-Fix: OnActivateApp() VC6/VC7 compiler adaptation
-Fix: OnGetMinMaxInfo() following the suggestions of "yogurt" (cp. comments)
-_MODE_FIND_ALL_ for SetMode() if you enter on, the function finds One, One1, Melon, Lemon, ...

Version 1.1

ComboBox-Support:
-int AddString( LPCTSTR lpszString);
-int GetLBText( int nIndex, LPTSTR lpszText );
-void GetLBText( int nIndex, CString& rString );
-int SetDroppedWidth(UINT nWidth);
-int FindString( int nStartAfter, LPCTSTR lpszString );
-int SelectString( int nStartAfter, LPCTSTR lpszString );
-void ShowDropDown(BOOL bShowIt = TRUE );
-void ResetContent();
-int GetCurSel();

and

_MODE_CURSOR_O_LIST_ (Open the List with Corsorkeys)

If this flag is set with SetMode(), it is already possible to indicate the list of the search strings with the cursor keys (UP/DOWN) in an empty input field. This works only with a CEdit control, however, as the cursor keys in a ComboBox have different functions.

Conclusion

The control looks like the function in Windows (which triggered the project), but it works entirely without IAutoComplete. There are definitely various ways to extend it, but as it works the way it should, I’m fine with it. Hopefully, the control will be of use to you – I had fun writing it.

Sources:

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
AnswerRe: OnEnChangeEditXXX and Missing CEdit Methods Pin
123qwertz8-Jan-07 3:06
123qwertz8-Jan-07 3:06 
GeneralGood Job! Pin
Member 146094311-Jul-05 23:58
Member 146094311-Jul-05 23:58 
QuestionGreat Work,Can you complete it with C#? Pin
Alenty8-Jun-05 15:32
Alenty8-Jun-05 15:32 
GeneralA small bug in Init Pin
souren775-Mar-05 21:42
souren775-Mar-05 21:42 
GeneralRe: A small bug in Init Pin
Andreas Kapust8-Mar-05 1:23
Andreas Kapust8-Mar-05 1:23 
GeneralSome problem when debugging, a queation, a bug Pin
Guillermo.Calderon13-May-04 4:58
Guillermo.Calderon13-May-04 4:58 
QuestionGreat work! -- How to make it autoappend? Pin
GM_LEON25-Nov-03 17:55
GM_LEON25-Nov-03 17:55 
GeneralCEdit already subclass Pin
dfrobison10-Sep-03 5:01
dfrobison10-Sep-03 5:01 
GeneralIt's great !!! Pin
iqdamn30-Jul-03 22:02
iqdamn30-Jul-03 22:02 
GeneralRe: It's great !!! Pin
Andreas Kapust2-Aug-03 5:15
Andreas Kapust2-Aug-03 5:15 
GeneralMulti-threaded Pin
Rodger2-May-03 5:17
Rodger2-May-03 5:17 
QuestionHow to convert it to an Activex? Pin
chenkan200017-Apr-03 15:57
chenkan200017-Apr-03 15:57 
GeneralImprovements Pin
Mr Scotty16-Apr-03 1:37
Mr Scotty16-Apr-03 1:37 
GeneralThanks Pin
Yogurt15-Apr-03 23:44
Yogurt15-Apr-03 23:44 
GeneralSource Pin
Yogurt16-Apr-03 1:34
Yogurt16-Apr-03 1:34 
Generalvery good job Pin
Ivan Polak13-Mar-03 6:01
Ivan Polak13-Mar-03 6:01 
Generaltwo more questions Pin
Dudi Avramov23-Feb-03 21:06
Dudi Avramov23-Feb-03 21:06 
Generalright alignment control Pin
Dudi Avramov19-Feb-03 23:02
Dudi Avramov19-Feb-03 23:02 
GeneralRe: right alignment control Pin
Yogurt16-May-04 10:48
Yogurt16-May-04 10:48 
Generalcreating this control dynamically Pin
Dudi Avramov19-Feb-03 22:01
Dudi Avramov19-Feb-03 22:01 
General! Now available in ATL/WTL ! Pin
Benny Weinie31-Jan-03 8:03
Benny Weinie31-Jan-03 8:03 
GeneralRe: ! Now available in ATL/WTL ! Pin
Dudi Avramov19-Feb-03 22:17
Dudi Avramov19-Feb-03 22:17 
GeneralRe: ! Now available in ATL/WTL ! Where to get it... Pin
Benny Weinie28-Oct-03 2:13
Benny Weinie28-Oct-03 2:13 
GeneralRe: ! Now available in ATL/WTL ! Pin
Anderson Luís25-Jan-07 1:00
Anderson Luís25-Jan-07 1:00 
GeneralNice Pin
ColinDavies5-Jan-03 22:09
ColinDavies5-Jan-03 22:09 

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

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