Dim strfind As RibbonMenu.TextBox = RibbonTabs("日常工作")("功能组1")("日常")("strfind")
Dim val As String = strfind.Text
With CurrentTable
Dim nm As String = .Cols(.Colsel).Name
Dim Index As Integer = .FindRow(nm & " like '%" & val & "%'", .Position +1,True)
If Index >=0 Then
.Position = Index
End If
End With