用C++ Builder 實現類似ie位址列的ComboBox (轉)

worldblog發表於2008-01-31
用C++ Builder 實現類似ie位址列的ComboBox (轉)[@more@]

大家一定對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; iCount - 1;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/,如需轉載,請註明出處,否則將追究法律責任。

相關文章