|
|
|
Click here to copy the following block |
Sub ComboBoxExtendedMatching(cbo As ComboBox, KeyAscii As Integer, _ Optional CompareMode As VbCompareMethod = vbTextCompare) Dim index As Long Dim Text As String If KeyAscii <= 32 Then Exit Sub Text = Left$(cbo.Text, cbo.SelStart) & Chr$(KeyAscii) & Mid$(cbo.Text, _ cbo.SelStart + 1 + cbo.SelLength) KeyAscii = 0 For index = 0 To cbo.ListCount - 1 If InStr(1, cbo.List(index), Text, CompareMode) = 1 Then cbo.ListIndex = index Exit For End If Next If index = cbo.ListCount Then cbo.Text = Text End If cbo.SelStart = Len(Text) cbo.SelLength = 9999 End Sub |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
 |

|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|