用C++ Builder 實現類似ie位址列的ComboBox (轉)
大家一定對ie的位址列很熟悉,幾乎沒有沒用過的人,當你輸入一串字元時,下拉選單會列出所有歷史記錄中存放的地址前幾位字元和輸入字元相符的條目。
我們在設計也需要這種技術以方便輸入,它是怎麼實現的呢?
下面我就說說我用CBuilder實現這種效果的方法:
首先新建一個應用程式,在窗體上ComboBox,名稱設為:ComboBox1
在頭中宣告一個stringlist
TStringList *MyDropDownList;
在應用程式初始化部門將所有列表資料存入MyDropDownList;
在ComboBox1的KeyPress中加入以下程式碼:
nt i, iInputLength, iSelStartRestore, iSelLengthRestore;
AnsiString strInput;
TStringList *TempList;
strInput= ComboBox1->Text;
if (Key == VK_ESCAPE)
{
Key = 0x0; // No more bee after pressing Escape.
}
if (Key == VK_RETURN)
{
Key = 0x0;
if (ComboBox1->Items->IndexOf(strInput) == -1) ComboBox1->Items->Add(strInput);
ComboBox1->DroppedDown = False;
ComboBox1->SelStart = ComboBox1->Text.Length();
}
else
{
iSelStartRestore = ComboBox1->SelStart;
iSelLengthRestore = ComboBox1->SelLength;
if (Key == VK_BACK)
{
// Handle backspace:
if ((ComboBox1->SelLength == 0) && (ComboBox1->SelStart > 0))
{
ComboBox1->SelStart = ComboBox1->SelStart - 1;
ComboBox1->SelLength = ComboBox1->SelLength + 1;
}
}
strInput.Delete(ComboBox1->SelStart + 1, ComboBox1->SelLength);
if (Key != VK_BACK)
{
strInput.Insert(Key, ComboBox1->SelStart + 1);
}
iInputLength = strInput.Length();
ComboBox1->Items->Clear();
if (iInputLength > 0)
{
TempList = new TStringList;
try
{
for ( i= 0; i
{
if ((MyDropDownList->Strings[i].SubString(1, iInputLength)).UpperCase() ==
strInput.UpperCase())
TempList->Add(MyDropDownList->Strings[i]);
}
if (TempList->Count > 0)
{
for (i = 0 ;i<7;i++) ComboBox1->Items->Add("");
ComboBox1->DropDownCount = 8;
ComboBox1->DroppedDown = True;
ComboBox1->Items->Clear();
ComboBox1->Items = TempList;
}
else ComboBox1->DroppedDown = False;
}
__finally
{
TempList->Free();
}
}
else
ComboBox1->DroppedDown = False;
// Restore the position of the carrot and the ed text:
ComboBox1->SelStart = iSelStartRestore;
ComboBox1->SelLength= iSelLengthRestore;
}
在C++ Builder 下實現,其他應該也可以。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-998864/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 實現類似IE的列印網頁功能 (轉)網頁
- (轉)使用一個下拉框或文字框+列表框的方式實現類似IE位址列自動完成的功能
- 用最短的javascript實現位址列載入指令碼JavaScript指令碼
- 用CSS實現類似導航翻轉功能例子CSS
- 用 C++ 實現類似於 JAVA HttpServlet 的程式設計介面C++JavaHTTPServlet程式設計
- 用C++Builder實現工作列圖示動畫效果 (轉)C++UI動畫
- 用 golang 去實現類似 swoole 的 websocket 服務 ?GolangWeb
- c++佇列類别範本的實現C++佇列
- 設計模式、用Delphi實現---->Builder模式 (轉)設計模式UI
- 兩步實現類似格瓦拉的轉場動畫動畫
- 用Java 19實現類似Go併發 - mccueJavaGo
- 採用 SwiftNIO 實現一個類似 Express 的 Web 框架SwiftExpressWeb框架
- PostgreSQL類似OracleMERGE功能的實現SQLOracle
- 怎麼實現,重定向,但是位址列不變?
- 用C++ Builder檢測Windows的啟動模式(轉)C++UIWindows模式
- IE8位址列下拉選單打不開
- 簡單實現類似Spring的Aop原理實現Spring
- GetX 實現類似微信轉發搜尋多選好友
- Automation In C++ Builder (轉)C++UI
- 類似 MSDN 左邊導航樹效果的實現! [JavaScript + ASP] (轉)JavaScript
- 在C++ Builder3下實現程式自動執行的方法 (轉)C++UI
- 用C++Builder實現Word 97自動化 (轉)UI
- 等不及 go 泛型釋出,我先實現了(類似 C++ 的 template)Go泛型C++
- 用 hyperf websocket 實現,類似 qq 單機登入功能Web
- 用C++ Builder在桌面上畫圖 (轉)C++UI
- MySQL的字首索引及Oracle的類似實現MySql索引Oracle
- 用C++模板描述的連結串列、棧、佇列(宣告與實現) (轉)C++佇列
- 類似咻一咻,水波紋實現
- SQLite中中實現 if not exist 類似功能SQLite
- go如何實現類似java的動態代理GoJava
- c++ builder中的ado使用 (轉)C++UI
- Borland C++ Builder的API後門 (轉)C++UIAPI
- 用C++ Builder來定製系統選單(轉)C++UI
- 【譯】用 JavaScript 和 Emoji 做位址列動畫JavaScript動畫
- 在C++中實現變長陣列 (轉)C++陣列
- 面試最常問的陣列轉樹,樹轉陣列 c++ web框架paozhu實現面試陣列C++Web框架
- 也用 C++ 實現 Property 功能 (轉)C++
- 用 C++BUILDER 實現 POP3 電子郵件的接收 (轉)C++UI