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

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

قام بنشر

السلام عليكم ورحمة الله وبركاته : مثال عندما اكتب في التكست بوكس1 رقم (2 او 5 او 8 ) يعرض لي في (تكست بوكس2) كلمة " العراق" وعندما اكتب رقم (7 او 4 او 3) يظهر لي في تكست بوكس 2 كلمة " مصر" وهكذا 

 

() Private Sub TextBox1_Change
If Me.TextBox1.Value = "2" Then
  "العراق"= TextBox2.Value
Else
"" = TextBox2.Value
End If
End Sub

mmmmu.PNG

فورم.xlsm

  • Like 1
  • أفضل إجابة
قام بنشر

يمكنك استعمال هذا الكود

Private Sub TextBox1_Change()
txt = Val(Me.TextBox1.Value)
If txt = 2 Or txt = 5 Or txt = 8 Then
Me.TextBox2.Value = "العراق"
ElseIf txt = 3 Or txt = 4 Or txt = 7 Then
Me.TextBox2.Value = "مصر"
Else
Me.TextBox2.Value = ""
End If
End Sub

بالتوفيق

  • 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