בקשת מידע | בקשת קודים של טעמי המקרא לחיפוש והחלפה
עזרה הדדית - וורד
4
פוסטים
3
כותבים
161
צפיות
4
Watching
-
למי יש את הקודים של טעמי המקרא כדי שאוכל להסיר אותם ממסמך וורד שיש בו טעמי המקרא?
ואיך באמת אני יכול למצוא קוד של תו מסויים שאני מחפש והוא אינו שיגרתי?@ZVULON @pcinfogmach יש לך מסתמא מה לומר בנידון.
-
למי יש את הקודים של טעמי המקרא כדי שאוכל להסיר אותם ממסמך וורד שיש בו טעמי המקרא?
ואיך באמת אני יכול למצוא קוד של תו מסויים שאני מחפש והוא אינו שיגרתי?@ZVULON
עיין כאן
https://www.prog.co.il/threads/תווים-כלליים.585301/#post-8161589וכאן
https://mitmachim.top/post/607514כמו"כ בתוסף שלי יש פקודה עבור גילוי תווים
אם אתה מעוניין בקוד עצמו אז הנהSub GetAsciiCode2() Dim myChar As String Dim AsciiCode As Integer Dim myTxt As String Dim i As Integer With Selection.Find .ClearFormatting .Replacement.ClearFormatting .Text = "" .Replacement.Text = "" End With ' Get the selected character myTxt = Selection.Text ' Check if a character is selected If Len(myTxt) = 0 Then Exit Sub For i = 1 To Len(myTxt) myChar = Mid(myTxt, i, 1) ' Get the ASCII code of the selected character AsciiCode = Asc(myChar) If AsciiCode > 223 And AsciiCode < 251 Then AsciiCode = AsciiCode - 96 ' Open the search and replace dialog With Selection.Find .Text = .Text & "^" & AsciiCode .MatchWildcards = True End With Next i Application.CommandBars.ExecuteMso ("ReplaceDialog") End Sub