excel用户窗体中的订单控件问题 [英] issue in order controls in excel userform

查看:37
本文介绍了excel用户窗体中的订单控件问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在以excel用户形式进行订单控制时遇到问题.我需要使框在列表框上方.我正在使用代码:

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

推荐答案

不确定msoBringToFront是否为整数,但是下面的代码可以将每个项目前面的框架设置为

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

这篇关于excel用户窗体中的订单控件问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆