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

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

قام بنشر (معدل)

السلام عليكم ورحمة الله وبركاتة
تحية طيبة لجميع أعضاء المنتدي

اذا كان لدينا فورم بها عدد 11 TextBox واريد عند حدوث اي تغيير في أي من TextBox1 الي TextBox10 يتم كتابة كلمة "تم التغيير" في TextBox11

جزاكم الله خيرا

تم تعديل بواسطه Akram Galal
قام بنشر

لإنشاء هذا التأثير باستخدام VBA، يجب عليك استخدام برنامج المعالجة المخصص للإجراء الذي يسمى "Change"، الذي ينفذ في الوقت الذي تغير الحقل النصي. يمكنك إنشاء هذا الإجراء باستخدام التالي:

 

Private Sub TextBox1_Change() TextBox11.Value = "تم التغيير" End Sub

 

Private Sub TextBox2_Change() TextBox11.Value = "تم التغيير" End Sub

 

Private Sub TextBox3_Change() TextBox11.Value = "تم التغيير" End Sub

 

Private Sub TextBox4_Change() TextBox11.Value = "تم التغيير" End Sub

 

Private Sub TextBox5_Change() TextBox11.Value = "تم التغيير" End Sub

 

Private Sub TextBox6_Change() TextBox11.Value = "تم التغيير" End Sub

 

Private Sub TextBox7_Change() TextBox11.Value = "تم التغيير" End Sub

 

Private Sub TextBox8_Change() TextBox11.Value = "تم التغيير" End Sub

 

Private Sub TextBox9_Change() TextBox11.Value = "تم التغيير" End Sub

 

Private Sub TextBox10_Change() TextBox11.Value = "تم التغيير" End Sub

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