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

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

قام بنشر

ارجوا من الاساتذة الكرام اختصار عدد التكسات في كود واحد خاصة وانه لدي 30 تكست ومرشحة للزيادة وهذا الكود كمثال 


Dim Last As Integer
Last = Sheet4.Range("A100000").End(xlUp).Row + 1
Sheet4.Cells(Last, "A").Value = Me.TextBox2.Value
Sheet4.Cells(Last, "B").Value = Me.TextBox3.Value
Sheet4.Cells(Last, "C").Value = Me.TextBox4.Value
Sheet4.Cells(Last, "D").Value = Me.TextBox5.Value
Sheet4.Cells(Last, "E").Value = Me.TextBox6.Value
Sheet4.Cells(Last, "F").Value = Me.TextBox7.Value
Sheet4.Cells(Last, "G").Value = Me.TextBox8.Value

 

قام بنشر
Sub Test()
    Dim Last As Long, i As Long
    Last = Sheet4.Range("A100000").End(xlUp).Row + 1
    For i = 1 To 7
        Sheet4.Cells(Last, i).Value = Me.Controls("TextBox" & i + 1).Value
    Next i
End Sub

 

  • Like 5
قام بنشر

شكراً وبارك الله فيك . جعله الله في ميزان حسناتك . وزادك علماً ومعرفة .

  • Like 1

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