我目前有一些代码可以在worksheet_selectionchange上运行,以匹配用户在列表中输入的内容,并且效果很好。
但是,我希望用户能够匹配字符串中的各个单词,以便如果他们尝试匹配“我的示例”并通过键入“ examp ...”开始,那么这将产生一个匹配项。这可能吗?
谢谢!
<DllImport("user32.dll")>
Private Shared Function EnableWindow(ByVal hWnd As IntPtr, bEnable As Boolean) As Boolean
End Function
For Each processId As Integer In _processIds
Dim currentProcess As Process = Process.GetProcessById(processId)
EnableWindow(currentProcess.MainWindowHandle, False)
Next