문제

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