اذهب الي المحتوي
أوفيسنا
بحث مخصص من جوجل فى أوفيسنا
Custom Search

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

قام بنشر

مساء النور 

عندي label وtextbox اريد كود بمجرد ان يكون الشيت اكتف يختفي textbox اذا كان label لا يوجد به نص 

انا استخدمت الكود

 If label1. Caption= "" then 
Textbox1. Visible = false 
Else
Textbox1. Visible = true 
 End if 

اريد الكود ان يكون في label لكن ما اعلم ايش الحدث بمجرد تكون الصفحه نشطه يتنفذ الكود

 

برنامج_تحكيم_تجربه.xlsm

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

هذه تجربة ولكن ليس في ملفك 

ملفك لايريد ان يفتح عندي

 

Book1.xlsm

او ضع هذا الكود في حدث الفورم

Private Sub UserForm_Initialize()
If Label1.Caption = "" Then
TextBox1.Visible = False
Else
TextBox1.Visible = True
End If

End Sub

 

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

وهذا في حدث الشيت ان كان اليبل والتيكست بوكس على صفحة العمل

Private Sub Worksheet_Activate()
If Label1.Caption = "" Then
TextBox1.Visible = False
Else
TextBox1.Visible = True
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