اذهب الي المحتوي
أوفيسنا

الردود الموصى بها

قام بنشر

السلام عليكم ورحمة الله 

 

كود يقوم بترحيل من التكست بوكس الى نطاق محدد 

والمرفق يوضح الطلب 

ولكم جزيل الشكر مسبقا وجزاكم الله خيرا 

test.rar

قام بنشر

أخي الفاضل زوهير

إليك الملف المرفق عله يفي بالغرض

Private Sub CommandButton2_Click()
    Unload Me
End Sub

Private Sub btnOK_Click()
    Dim WS As Worksheet
    Dim newRow As Long
    Set WS = Worksheets("Feuil1")
    
    With WS
        newRow = .Cells(Rows.Count, 1).End(3).Row + 1
        .Cells(newRow, 1).Value = Cells(newRow, 1).Row - 8
        .Cells(newRow, 2).Value = Me.TextBox1.Value
        .Cells(newRow, 3).Value = Me.TextBox2.Value
        .Cells(newRow, 4).Value = Me.TextBox3.Value
        .Cells(newRow, 5).Value = Me.TextBox4.Value
    End With
    Clear_Form
End Sub

Sub Clear_Form()
    Dim ctrl As Control
    Dim I As Long
    For Each ctrl In Me.Controls
        Select Case TypeName(ctrl)
            Case "TextBox"
                ctrl.Text = ""
        End Select
    Next ctrl
End Sub

تقبل تحياتي

UserForm TextBox Input YasserKhalil.rar

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

زائر
اضف رد علي هذا الموضوع....

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • تصفح هذا الموضوع مؤخراً   0 اعضاء متواجدين الان

    • لايوجد اعضاء مسجلون يتصفحون هذه الصفحه
×
×
  • اضف...

Important Information