【问题标题】:issue in order controls in excel userformexcel用户表单中的顺序控制问题
【发布时间】:2013-12-03 13:24:06
【问题描述】:

我在 excel 用户表单中的订单控件有问题。我需要在 listbox 上方制作框架。我正在使用代码:

With Frame7
.Visible = True
.ZOrder msoBringToFront
End With

【问题讨论】:

  • 我可以让您重新描述手头的问题吗?您应该可以在 ListBox 上执行 .ZOrder msoSendBackward,但我可能需要更多信息。
  • fmtop 和 fmbottom,根据微软帮助
  • 这对我有用。在表单上工作得很好

标签: excel vba


【解决方案1】:

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

With Frame7
    .Visible = True
    .ZOrder (0)
End With

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2013-08-08
    • 2011-02-07
    • 1970-01-01
    • 1970-01-01
    • 2019-04-12
    • 2017-04-23
    • 1970-01-01
    相关资源
    最近更新 更多