Click here to Skip to main content
Licence CPOL
First Posted 20 Jul 2002
Views 232,026
Bookmarked 101 times

AutoComplete without IAutoComplete

By | 30 Apr 2003 | Article
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)

About the Author

Andreas Kapust

Software Developer

Germany Germany

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
QuestionDo you know how to change font size?? Pinmembertest123445623:56 8 May '12  
GeneralMy vote of 5 PinmemberYaukey5:31 14 Jun '11  
GeneralImprovements + coding style PinmemberYogurt1:12 5 May '11  
GeneralRe: Improvements + coding style PinmemberAndreas Kapust4:08 5 May '11  
GeneralMessage Removed Pinmembermesajflaviu3:22 1 Oct '10  
GeneralRe: I fix some small bugs .... Pinmemberbuingocdinh5:26 12 Dec '10  
GeneralThanks Pinmembertayyebe0:00 21 Sep '10  
AnswerA great one Pinmemberauge__22:01 8 Jun '10  
GeneralThanks Andreas Pinmemberandywebsdale4:02 8 Jun '10  
GeneralATL/MFC version PinmemberMember 40907116:37 4 Feb '09  
Questionhow to use in vs2005? Pinmembertang_ghost18:41 26 Nov '08  
GeneralWorks for me... Pinmemberchuck7876:32 8 Nov '08  
GeneralNot UNICODE compliant PinmemberBorislav Stanimirov1:15 26 Oct '08  
GeneralRe: Not UNICODE compliant Pinmemberauge__22:20 8 Jun '10  
GeneralRe: Not UNICODE compliant PinmemberAndreas Kapust2:50 9 Jun '10  
QuestionWhy ACListWnd cannot receive WM_MOUSEWHEEL message? Pinmembermiracle@163.com16:25 25 Jun '08  
QuestionDoes not set cur selection? PinmemberAbsoluteSupport18:04 12 Dec '06  
AnswerRe: Does not set cur selection? Pinmembermesajflaviu5:38 30 Sep '10  
GeneralExcellent Effort Pinmemberkklowanshi4:51 3 Nov '06  
Hi ,
Its a nice example of autocomplition I ever found ..

Regards
KK
GeneralOnEnChangeEditXXX and Missing CEdit Methods Pinmemberintripoon5:34 9 Oct '05  
AnswerRe: OnEnChangeEditXXX and Missing CEdit Methods Pinmember123qwertz3:06 8 Jan '07  
GeneralGood Job! Pinmemberjeremy W.23:58 11 Jul '05  
QuestionGreat Work,Can you complete it with C#? Pinmemberkv400015:32 8 Jun '05  
GeneralA small bug in Init Pinmemberarmkbdotcom21:42 5 Mar '05  
GeneralRe: A small bug in Init PinmemberAndreas Kapust1:23 8 Mar '05  

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.120529.1 | Last Updated 1 May 2003
Article Copyright 2002 by Andreas Kapust
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid