1.is numal
2.When I search a long char ,then I click this image’s “3”
show images 3
3.old search don’t see Because long char’s length>window.length :oops: :cry:
Drop down the history list and use “Delete” key to delete the item directly.
Maybe this method is better.
Just as GreenBrowser’s. http://www.morequick.com/Download.htm
That may use a “CutStr” function to solve the problem!
vbscript sample code:
Function CutStr(byVal Str,byVal StrLen)
Dim l,t,c,i
l=Len(str)
t=0
For i=1 To l
c=AscW(Mid(str,i,1))
If c255 Then t=t+2 Else t=t+1
IF t>=StrLen Then
CutStr=left(Str,i)&”…”
Exit For
Else
CutStr=Str
End If
Next
End Function