12-02-2014، 01:52 PM
یافتم
میشه واسه حروف کوچیک و بزرگ هم استفاده کرد
میشه واسه حروف کوچیک و بزرگ هم استفاده کرد
نقل قول:[ltr] Dim StartPos, Counter As Integer
Dim FindString, ReplaceText As String
FindString = "زمين"
ReplaceText = "آسمان"
For Counter = 1 To Len(Text1.Text)
StartPos = InStr(Text1.Text, FindString)
If StartPos > 0 Then
Text1.SelStart = StartPos - 1
Text1.SelLength = Len(FindString)
Text1.SelText = "" + ReplaceText
End If
Next
SendKeys "{END}"[/ltr]