chiuchimuN
Programmer
I have a search function that finds a listview match from a textbox and scrolls to show this match. The function works fine when placed in a buttons click event but won't start when placed in the textbox keypress event.
Command1_Click()
SearchShow
end sub
Text1_KeyPress(keyascii as integer)
SearchShow
end sub
SearchShow()
Dim S$
S=Text1.Text
//code that searches here(Works fine)
...
end sub
I want this search to behave like the MSDN help index so that is why I want to place function in Keypress.
Command1_Click()
SearchShow
end sub
Text1_KeyPress(keyascii as integer)
SearchShow
end sub
SearchShow()
Dim S$
S=Text1.Text
//code that searches here(Works fine)
...
end sub
I want this search to behave like the MSDN help index so that is why I want to place function in Keypress.