سؤال

I have issue in order controls in excel user form . I need to make the frame above the listbox . Am using the code :

With Frame7
.Visible = True
.ZOrder msoBringToFront
End With

لا يوجد حل صحيح

نصائح أخرى

Not sure if the msoBringToFront is an integer, but the code below works sets the frame in front of every item

With Frame7
    .Visible = True
    .ZOrder (0)
End With
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top