דילוג לתוכן
  • חוקי הפורום
  • פופולרי
  • לא נפתר
  • משתמשים
  • חיפוש גוגל בפורום
  • צור קשר
עיצובים
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • ברירת מחדל (ללא עיצוב (ברירת מחדל))
  • ללא עיצוב (ברירת מחדל)
כיווץ
מתמחים טופ
  1. דף הבית
  2. מחשבים וטכנולוגיה
  3. עזרה הדדית - מחשבים וטכנולוגיה
  4. בקשת מידע | המרת אותיות למספרים באקסל

בקשת מידע | המרת אותיות למספרים באקסל

מתוזמן נעוץ נעול הועבר עזרה הדדית - מחשבים וטכנולוגיה
12 פוסטים 3 כותבים 136 צפיות 2 עוקבים
  • מהישן לחדש
  • מהחדש לישן
  • הכי הרבה הצבעות
תגובה
  • תגובה כנושא
התחברו כדי לפרסם תגובה
נושא זה נמחק. רק משתמשים עם הרשאות מתאימות יוכלו לצפות בו.
  • P pcinfogmach

    @ח-ש
    תעלה את הקובץ (אפשר גם בפרטי או במייל) ובלי נדר אשתדל לעזור. בוורד כבר יש לי משהו דומה רק צריך להתאים לאקסל.

    ח מנותק
    ח מנותק
    ח.ש.
    כתב ב נערך לאחרונה על ידי
    #3

    @pcinfogmach ישר כח.
    בלנ"ד מחר אביא את הקובץ ואשלח לך.

    תגובה 1 תגובה אחרונה
    0
    • P מנותק
      P מנותק
      pcinfogmach
      מדריכים
      כתב ב נערך לאחרונה על ידי pcinfogmach
      #4

      קוד מאקרו (לאקסל) להמיר מספור אותיות למספרים ולהוסיף/להפחית מספר קבוע ואח"כ להמיר שוב לאותיות.
      עריכה:
      המאקרו עובר בלולאה על כל התאים המסומנים לפי בחירה

      בלי לשון נקיה

       Sub הגדל_מספור_אותיות()
      
          Dim MyArray() As Variant
          Dim MyaArray() As Variant
          Dim inputString As String
          Dim outputNumber As Long
          Dim plusNumber As Integer
          
          Dim i As Integer
          Dim j As Integer
          
          plusNumber = InputBox("הזן במפרים בכמה רצונך להגדיל את המספור")
          
          Dim cell As Range
          For Each cell In Selection
      
          ' replacement arrays
          MyArray = Array("ת", "ש", "ר", "ק", "צ", "פ", "ע", "ס", "נ", "מ", "ל", "כ", "י", "ט", "ח", "ז", "ו", "ה", "ד", "ג", "ב", "א")
          MyaArray = Array("400", "300", "200", "100", "90", "80", "70", "60", "50", "40", "30", "20", "10", "9", "8", "7", "6", "5", "4", "3", "2", "1")
          
          
              inputString = cell.Value
      '        If IsNumeric(inputString) Then GoTo nxt
              
              ' Loop through each character in the input string
              For i = 1 To Len(inputString)
                  ' Loop through the MyArray to find a match for the character
                  For j = LBound(MyArray) To UBound(MyArray)
                      If Mid(inputString, i, 1) = MyArray(j) Then
                          outputNumber = outputNumber + MyaArray(j)
                          Exit For
                      End If
                  Next j
              Next i
              
              outputNumber = outputNumber + plusNumber
              
              ' Replace the word with the output number
             
             cell.Value = ConvertToHebrew(outputNumber)
             
             outputNumber = 0
             
             Next cell
             
      End Sub
      
      Function ConvertToHebrew(ByVal ftnoteNumber As Long) As String
          Dim MyArray As Variant
          Dim MyaArray As Variant
          Dim v As Long
          Dim s As String
          Dim i As Long
      
      s = ""
      
      MyArray = Array(400, 300, 200, 100, 90, 80, 70, 60, 50, 40, 30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1)
      MyaArray = Array("ת", "ש", "ר", "ק", "צ", "פ", "ע", "ס", "נ", "מ", "ל", "כ", _
      "י", "ט", "ח", "ז", "ו", "ה", "ד", "ג", "ב", "א")
      v = Val(ftnoteNumber)
      Do While v > 0
      If v = 15 Or v = 16 Then
      s = s & "ט"
      v = v - 9
      End If
        For i = 0 To UBound(MyArray)
          If v >= MyArray(i) Then
            s = s & MyaArray(i)
            v = v - MyArray(i)
            Exit For
          End If
        Next i
      Loop
      
      ConvertToHebrew = s
      
      End Function
      

      עם לשון נקיה

      
       Sub הגדל_מספור_אותיות()
      
          Dim MyArray() As Variant
          Dim MyaArray() As Variant
          Dim inputString As String
          Dim outputNumber As Long
          Dim plusNumber As Integer
          
          Dim i As Integer
          Dim j As Integer
          
          plusNumber = InputBox("הזן במפרים בכמה רצונך להגדיל את המספור")
          
          Dim cell As Range
          For Each cell In Selection
      
          ' replacement arrays
          MyArray = Array("ת", "ש", "ר", "ק", "צ", "פ", "ע", "ס", "נ", "מ", "ל", "כ", "י", "ט", "ח", "ז", "ו", "ה", "ד", "ג", "ב", "א")
          MyaArray = Array("400", "300", "200", "100", "90", "80", "70", "60", "50", "40", "30", "20", "10", "9", "8", "7", "6", "5", "4", "3", "2", "1")
          
          
              inputString = cell.Value
      '        If IsNumeric(inputString) Then GoTo nxt
              
              ' Loop through each character in the input string
              For i = 1 To Len(inputString)
                  ' Loop through the MyArray to find a match for the character
                  For j = LBound(MyArray) To UBound(MyArray)
                      If Mid(inputString, i, 1) = MyArray(j) Then
                          outputNumber = outputNumber + MyaArray(j)
                          Exit For
                      End If
                  Next j
              Next i
              
              outputNumber = outputNumber + plusNumber
              
              ' Replace the word with the output number
             
             cell.Value = ConvertToHebrew(outputNumber)
             
             outputNumber = 0
             
             Next cell
             
      End Sub
      
      Function ConvertToHebrew(ByVal ftnoteNumber As Long) As String
          Dim MyArray As Variant
          Dim MyaArray As Variant
          Dim v As Long
          Dim s As String
          Dim i As Long
      
      s = ""
      
      MyArray = Array(400, 300, 200, 100, 90, 80, 70, 60, 50, 40, 30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1)
      MyaArray = Array("ת", "ש", "ר", "ק", "צ", "פ", "ע", "ס", "נ", "מ", "ל", "כ", _
      "י", "ט", "ח", "ז", "ו", "ה", "ד", "ג", "ב", "א")
      v = Val(ftnoteNumber)
      Do While v > 0
      If v = 15 Or v = 16 Then
      s = s & "ט"
      v = v - 9
      End If
        For i = 0 To UBound(MyArray)
          If v >= MyArray(i) Then
            s = s & MyaArray(i)
            v = v - MyArray(i)
            Exit For
          End If
        Next i
      Loop
      
      If s = "רצח" Then s = "רחצ"
      If s = "רע" Then s = "ער"
      If s = "רעב" Then s = "ערב"
      If s = "שד" Then s = "דש"
      If s = "שמד" Then s = "שדמ"
      If s = "תשמד" Then s = "תדשם"
      If s = "רעה" Then s = "ערה"
      If s = "רעד" Then s = "עדר"
      
      ConvertToHebrew = s
      
      End Function
      

      גמ"ח עזרה וייעוץ בנושאי מחשבים

      P שמואל ש.ש 2 תגובות תגובה אחרונה
      3
      • P pcinfogmach

        קוד מאקרו (לאקסל) להמיר מספור אותיות למספרים ולהוסיף/להפחית מספר קבוע ואח"כ להמיר שוב לאותיות.
        עריכה:
        המאקרו עובר בלולאה על כל התאים המסומנים לפי בחירה

        בלי לשון נקיה

         Sub הגדל_מספור_אותיות()
        
            Dim MyArray() As Variant
            Dim MyaArray() As Variant
            Dim inputString As String
            Dim outputNumber As Long
            Dim plusNumber As Integer
            
            Dim i As Integer
            Dim j As Integer
            
            plusNumber = InputBox("הזן במפרים בכמה רצונך להגדיל את המספור")
            
            Dim cell As Range
            For Each cell In Selection
        
            ' replacement arrays
            MyArray = Array("ת", "ש", "ר", "ק", "צ", "פ", "ע", "ס", "נ", "מ", "ל", "כ", "י", "ט", "ח", "ז", "ו", "ה", "ד", "ג", "ב", "א")
            MyaArray = Array("400", "300", "200", "100", "90", "80", "70", "60", "50", "40", "30", "20", "10", "9", "8", "7", "6", "5", "4", "3", "2", "1")
            
            
                inputString = cell.Value
        '        If IsNumeric(inputString) Then GoTo nxt
                
                ' Loop through each character in the input string
                For i = 1 To Len(inputString)
                    ' Loop through the MyArray to find a match for the character
                    For j = LBound(MyArray) To UBound(MyArray)
                        If Mid(inputString, i, 1) = MyArray(j) Then
                            outputNumber = outputNumber + MyaArray(j)
                            Exit For
                        End If
                    Next j
                Next i
                
                outputNumber = outputNumber + plusNumber
                
                ' Replace the word with the output number
               
               cell.Value = ConvertToHebrew(outputNumber)
               
               outputNumber = 0
               
               Next cell
               
        End Sub
        
        Function ConvertToHebrew(ByVal ftnoteNumber As Long) As String
            Dim MyArray As Variant
            Dim MyaArray As Variant
            Dim v As Long
            Dim s As String
            Dim i As Long
        
        s = ""
        
        MyArray = Array(400, 300, 200, 100, 90, 80, 70, 60, 50, 40, 30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1)
        MyaArray = Array("ת", "ש", "ר", "ק", "צ", "פ", "ע", "ס", "נ", "מ", "ל", "כ", _
        "י", "ט", "ח", "ז", "ו", "ה", "ד", "ג", "ב", "א")
        v = Val(ftnoteNumber)
        Do While v > 0
        If v = 15 Or v = 16 Then
        s = s & "ט"
        v = v - 9
        End If
          For i = 0 To UBound(MyArray)
            If v >= MyArray(i) Then
              s = s & MyaArray(i)
              v = v - MyArray(i)
              Exit For
            End If
          Next i
        Loop
        
        ConvertToHebrew = s
        
        End Function
        

        עם לשון נקיה

        
         Sub הגדל_מספור_אותיות()
        
            Dim MyArray() As Variant
            Dim MyaArray() As Variant
            Dim inputString As String
            Dim outputNumber As Long
            Dim plusNumber As Integer
            
            Dim i As Integer
            Dim j As Integer
            
            plusNumber = InputBox("הזן במפרים בכמה רצונך להגדיל את המספור")
            
            Dim cell As Range
            For Each cell In Selection
        
            ' replacement arrays
            MyArray = Array("ת", "ש", "ר", "ק", "צ", "פ", "ע", "ס", "נ", "מ", "ל", "כ", "י", "ט", "ח", "ז", "ו", "ה", "ד", "ג", "ב", "א")
            MyaArray = Array("400", "300", "200", "100", "90", "80", "70", "60", "50", "40", "30", "20", "10", "9", "8", "7", "6", "5", "4", "3", "2", "1")
            
            
                inputString = cell.Value
        '        If IsNumeric(inputString) Then GoTo nxt
                
                ' Loop through each character in the input string
                For i = 1 To Len(inputString)
                    ' Loop through the MyArray to find a match for the character
                    For j = LBound(MyArray) To UBound(MyArray)
                        If Mid(inputString, i, 1) = MyArray(j) Then
                            outputNumber = outputNumber + MyaArray(j)
                            Exit For
                        End If
                    Next j
                Next i
                
                outputNumber = outputNumber + plusNumber
                
                ' Replace the word with the output number
               
               cell.Value = ConvertToHebrew(outputNumber)
               
               outputNumber = 0
               
               Next cell
               
        End Sub
        
        Function ConvertToHebrew(ByVal ftnoteNumber As Long) As String
            Dim MyArray As Variant
            Dim MyaArray As Variant
            Dim v As Long
            Dim s As String
            Dim i As Long
        
        s = ""
        
        MyArray = Array(400, 300, 200, 100, 90, 80, 70, 60, 50, 40, 30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1)
        MyaArray = Array("ת", "ש", "ר", "ק", "צ", "פ", "ע", "ס", "נ", "מ", "ל", "כ", _
        "י", "ט", "ח", "ז", "ו", "ה", "ד", "ג", "ב", "א")
        v = Val(ftnoteNumber)
        Do While v > 0
        If v = 15 Or v = 16 Then
        s = s & "ט"
        v = v - 9
        End If
          For i = 0 To UBound(MyArray)
            If v >= MyArray(i) Then
              s = s & MyaArray(i)
              v = v - MyArray(i)
              Exit For
            End If
          Next i
        Loop
        
        If s = "רצח" Then s = "רחצ"
        If s = "רע" Then s = "ער"
        If s = "רעב" Then s = "ערב"
        If s = "שד" Then s = "דש"
        If s = "שמד" Then s = "שדמ"
        If s = "תשמד" Then s = "תדשם"
        If s = "רעה" Then s = "ערה"
        If s = "רעד" Then s = "עדר"
        
        ConvertToHebrew = s
        
        End Function
        
        P מנותק
        P מנותק
        pcinfogmach
        מדריכים
        כתב ב נערך לאחרונה על ידי pcinfogmach
        #5

        כדי להקטין את המספור יש להחליף שורה זו

        outputNumber = outputNumber + plusNumber
        

        ב-

        outputNumber = outputNumber - plusNumber
        

        גמ"ח עזרה וייעוץ בנושאי מחשבים

        תגובה 1 תגובה אחרונה
        0
        • P pcinfogmach

          קוד מאקרו (לאקסל) להמיר מספור אותיות למספרים ולהוסיף/להפחית מספר קבוע ואח"כ להמיר שוב לאותיות.
          עריכה:
          המאקרו עובר בלולאה על כל התאים המסומנים לפי בחירה

          בלי לשון נקיה

           Sub הגדל_מספור_אותיות()
          
              Dim MyArray() As Variant
              Dim MyaArray() As Variant
              Dim inputString As String
              Dim outputNumber As Long
              Dim plusNumber As Integer
              
              Dim i As Integer
              Dim j As Integer
              
              plusNumber = InputBox("הזן במפרים בכמה רצונך להגדיל את המספור")
              
              Dim cell As Range
              For Each cell In Selection
          
              ' replacement arrays
              MyArray = Array("ת", "ש", "ר", "ק", "צ", "פ", "ע", "ס", "נ", "מ", "ל", "כ", "י", "ט", "ח", "ז", "ו", "ה", "ד", "ג", "ב", "א")
              MyaArray = Array("400", "300", "200", "100", "90", "80", "70", "60", "50", "40", "30", "20", "10", "9", "8", "7", "6", "5", "4", "3", "2", "1")
              
              
                  inputString = cell.Value
          '        If IsNumeric(inputString) Then GoTo nxt
                  
                  ' Loop through each character in the input string
                  For i = 1 To Len(inputString)
                      ' Loop through the MyArray to find a match for the character
                      For j = LBound(MyArray) To UBound(MyArray)
                          If Mid(inputString, i, 1) = MyArray(j) Then
                              outputNumber = outputNumber + MyaArray(j)
                              Exit For
                          End If
                      Next j
                  Next i
                  
                  outputNumber = outputNumber + plusNumber
                  
                  ' Replace the word with the output number
                 
                 cell.Value = ConvertToHebrew(outputNumber)
                 
                 outputNumber = 0
                 
                 Next cell
                 
          End Sub
          
          Function ConvertToHebrew(ByVal ftnoteNumber As Long) As String
              Dim MyArray As Variant
              Dim MyaArray As Variant
              Dim v As Long
              Dim s As String
              Dim i As Long
          
          s = ""
          
          MyArray = Array(400, 300, 200, 100, 90, 80, 70, 60, 50, 40, 30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1)
          MyaArray = Array("ת", "ש", "ר", "ק", "צ", "פ", "ע", "ס", "נ", "מ", "ל", "כ", _
          "י", "ט", "ח", "ז", "ו", "ה", "ד", "ג", "ב", "א")
          v = Val(ftnoteNumber)
          Do While v > 0
          If v = 15 Or v = 16 Then
          s = s & "ט"
          v = v - 9
          End If
            For i = 0 To UBound(MyArray)
              If v >= MyArray(i) Then
                s = s & MyaArray(i)
                v = v - MyArray(i)
                Exit For
              End If
            Next i
          Loop
          
          ConvertToHebrew = s
          
          End Function
          

          עם לשון נקיה

          
           Sub הגדל_מספור_אותיות()
          
              Dim MyArray() As Variant
              Dim MyaArray() As Variant
              Dim inputString As String
              Dim outputNumber As Long
              Dim plusNumber As Integer
              
              Dim i As Integer
              Dim j As Integer
              
              plusNumber = InputBox("הזן במפרים בכמה רצונך להגדיל את המספור")
              
              Dim cell As Range
              For Each cell In Selection
          
              ' replacement arrays
              MyArray = Array("ת", "ש", "ר", "ק", "צ", "פ", "ע", "ס", "נ", "מ", "ל", "כ", "י", "ט", "ח", "ז", "ו", "ה", "ד", "ג", "ב", "א")
              MyaArray = Array("400", "300", "200", "100", "90", "80", "70", "60", "50", "40", "30", "20", "10", "9", "8", "7", "6", "5", "4", "3", "2", "1")
              
              
                  inputString = cell.Value
          '        If IsNumeric(inputString) Then GoTo nxt
                  
                  ' Loop through each character in the input string
                  For i = 1 To Len(inputString)
                      ' Loop through the MyArray to find a match for the character
                      For j = LBound(MyArray) To UBound(MyArray)
                          If Mid(inputString, i, 1) = MyArray(j) Then
                              outputNumber = outputNumber + MyaArray(j)
                              Exit For
                          End If
                      Next j
                  Next i
                  
                  outputNumber = outputNumber + plusNumber
                  
                  ' Replace the word with the output number
                 
                 cell.Value = ConvertToHebrew(outputNumber)
                 
                 outputNumber = 0
                 
                 Next cell
                 
          End Sub
          
          Function ConvertToHebrew(ByVal ftnoteNumber As Long) As String
              Dim MyArray As Variant
              Dim MyaArray As Variant
              Dim v As Long
              Dim s As String
              Dim i As Long
          
          s = ""
          
          MyArray = Array(400, 300, 200, 100, 90, 80, 70, 60, 50, 40, 30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1)
          MyaArray = Array("ת", "ש", "ר", "ק", "צ", "פ", "ע", "ס", "נ", "מ", "ל", "כ", _
          "י", "ט", "ח", "ז", "ו", "ה", "ד", "ג", "ב", "א")
          v = Val(ftnoteNumber)
          Do While v > 0
          If v = 15 Or v = 16 Then
          s = s & "ט"
          v = v - 9
          End If
            For i = 0 To UBound(MyArray)
              If v >= MyArray(i) Then
                s = s & MyaArray(i)
                v = v - MyArray(i)
                Exit For
              End If
            Next i
          Loop
          
          If s = "רצח" Then s = "רחצ"
          If s = "רע" Then s = "ער"
          If s = "רעב" Then s = "ערב"
          If s = "שד" Then s = "דש"
          If s = "שמד" Then s = "שדמ"
          If s = "תשמד" Then s = "תדשם"
          If s = "רעה" Then s = "ערה"
          If s = "רעד" Then s = "עדר"
          
          ConvertToHebrew = s
          
          End Function
          
          שמואל ש.ש מנותק
          שמואל ש.ש מנותק
          שמואל ש.
          כתב ב נערך לאחרונה על ידי
          #6

          @pcinfogmach מה זה לשון נקיה?

          הקמת מערכות טלפוניות בימות המשיח! 19smuel@gmail.com
          כל לקוחותי מרוצים ויהיו מרוצים בעז"ה!

          P תגובה 1 תגובה אחרונה
          0
          • שמואל ש.ש שמואל ש.

            @pcinfogmach מה זה לשון נקיה?

            P מנותק
            P מנותק
            pcinfogmach
            מדריכים
            כתב ב נערך לאחרונה על ידי
            #7

            @שמואל-ש כתב בבקשת מידע | המרת אותיות למספרים באקסל:

            מה זה לשון נקיה?

            לשון נקיה זה 'ערב' במקום 'רעב' או 'ער' במקום 'רע' וכל כיו"ב

            גמ"ח עזרה וייעוץ בנושאי מחשבים

            ח תגובה 1 תגובה אחרונה
            1
            • P pcinfogmach

              @שמואל-ש כתב בבקשת מידע | המרת אותיות למספרים באקסל:

              מה זה לשון נקיה?

              לשון נקיה זה 'ערב' במקום 'רעב' או 'ער' במקום 'רע' וכל כיו"ב

              ח מנותק
              ח מנותק
              ח.ש.
              כתב ב נערך לאחרונה על ידי
              #8

              @pcinfogmach
              איך אני משתמש בו?

              P תגובה 1 תגובה אחרונה
              0
              • ח ח.ש.

                @pcinfogmach
                איך אני משתמש בו?

                P מנותק
                P מנותק
                pcinfogmach
                מדריכים
                כתב ב נערך לאחרונה על ידי pcinfogmach
                #9

                @ח-ש
                סגור את אקסל

                העתק קובץ זה
                הגדלת מספור עברי.xltm
                אל תוך תיקייה זו

                %AppData%\Microsoft\Word\STARTUP
                

                ואז המאקרו יהיה זמין לך בתפריט המאקרו
                (ייתכן שתצטרך לאשר את המאקרו שלא יהיה חסום במחשב בעת פתיחת excel פעם ראשונה אחרי ההתקנה)

                70a65572-8c59-49e3-b184-be9a9c8b5b86-image.png

                גמ"ח עזרה וייעוץ בנושאי מחשבים

                ח תגובה 1 תגובה אחרונה
                2
                • P pcinfogmach

                  @ח-ש
                  סגור את אקסל

                  העתק קובץ זה
                  הגדלת מספור עברי.xltm
                  אל תוך תיקייה זו

                  %AppData%\Microsoft\Word\STARTUP
                  

                  ואז המאקרו יהיה זמין לך בתפריט המאקרו
                  (ייתכן שתצטרך לאשר את המאקרו שלא יהיה חסום במחשב בעת פתיחת excel פעם ראשונה אחרי ההתקנה)

                  70a65572-8c59-49e3-b184-be9a9c8b5b86-image.png

                  ח מנותק
                  ח מנותק
                  ח.ש.
                  כתב ב נערך לאחרונה על ידי
                  #10

                  @pcinfogmach כתב בבקשת מידע | המרת אותיות למספרים באקסל:

                  %AppData

                  סליחה אך אינני מוצא תיקייה זו.
                  היכן היא נמצאת?

                  P תגובה 1 תגובה אחרונה
                  0
                  • ח ח.ש.

                    @pcinfogmach כתב בבקשת מידע | המרת אותיות למספרים באקסל:

                    %AppData

                    סליחה אך אינני מוצא תיקייה זו.
                    היכן היא נמצאת?

                    P מנותק
                    P מנותק
                    pcinfogmach
                    מדריכים
                    כתב ב נערך לאחרונה על ידי pcinfogmach
                    #11

                    @ח-ש
                    העתק את הכתובת של התיקייה אל תוך השורה העליונה של סייר הקבצים ולחץ אנטר

                    8407d96c-6a0a-47ce-82a3-8b044ef72975-image.png

                    או על ידי 'הפעל'

                    628e2c37-8754-4757-ad2f-c090e74fa2e7-image.png

                    גמ"ח עזרה וייעוץ בנושאי מחשבים

                    ח תגובה 1 תגובה אחרונה
                    2
                    • P pcinfogmach

                      @ח-ש
                      העתק את הכתובת של התיקייה אל תוך השורה העליונה של סייר הקבצים ולחץ אנטר

                      8407d96c-6a0a-47ce-82a3-8b044ef72975-image.png

                      או על ידי 'הפעל'

                      628e2c37-8754-4757-ad2f-c090e74fa2e7-image.png

                      ח מנותק
                      ח מנותק
                      ח.ש.
                      כתב ב נערך לאחרונה על ידי
                      #12

                      @pcinfogmach
                      ישר כח גדול זה עובד ממש נפלא.
                      תבורך מפי עליון בכל הברכות.

                      תגובה 1 תגובה אחרונה
                      1

                      • התחברות

                      • אין לך חשבון עדיין? הרשמה

                      • התחברו או הירשמו כדי לחפש.
                      • פוסט ראשון
                        פוסט אחרון
                      0
                      • חוקי הפורום
                      • פופולרי
                      • לא נפתר
                      • משתמשים
                      • חיפוש גוגל בפורום
                      • צור קשר