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

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

قام بنشر

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

رجاء من خبراء الاكسل

عندي ملف به يوزر فورم به كود  في حدث اليوزر فورم لملاء بيانات CoboBox4  بدون تكرار

محتاجه اضافه كلمة ( الكل ) مع القائمه التى تظهر في CoboBox4 

كما ظاهر في الصورة

58a0cf2f9cad3_.JPG.7fe3e6d3c267aeb01c30c95a15f269fc.JPG

يوجد ملف للتطبيق

فورم.rar

     .......... ولكم منى الف تحبه ..........

 

قام بنشر

وعليكم السلام

جرب الكود بالشكل التالي

Option Explicit

Private Sub UserForm_Initialize()
    Dim sh          As Worksheet
    Dim i           As Integer
    Dim valeurs1    As Variant
    Dim sDic1       As Object

    Set sh = Sheets("add")
    Set sDic1 = CreateObject("Scripting.Dictionary")

    With Application
        .ScreenUpdating = False
        .DisplayAlerts = False
    End With
        With sh
            valeurs1 = .Range("C2:C" & .Cells(Rows.Count, 3).End(xlUp).Row).Value
            valeurs1(1, 1) = "الكل"
            For i = LBound(valeurs1) To UBound(valeurs1)
                If Not IsEmpty(valeurs1(i, 1)) Then sDic1(valeurs1(i, 1)) = ""
            Next i
        End With
        If IsArray(valeurs1) Then Me.ComboBox4.List = sDic1.keys
    With Application
        .ScreenUpdating = True
        .DisplayAlerts = True
    End With
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