Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/vba/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
excel用户窗体中的按订单发出控件_Excel_Vba - Fatal编程技术网

excel用户窗体中的按订单发出控件

excel用户窗体中的按订单发出控件,excel,vba,Excel,Vba,我有excel用户表单中的订单控件问题。我需要制作列表框上方的框架。我正在使用代码: With Frame7 .Visible = True .ZOrder msoBringToFront End With 不确定msoBringToFront是否为整数,但下面的代码可以设置每个项目前面的帧 With Frame7 .Visible = True .ZOrder (0) End With 我能让你重新描述一下手头的问题吗?您应该可以在列表框上执行.ZOrder msoSend

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

With Frame7
.Visible = True
.ZOrder msoBringToFront
End With

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

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

我能让你重新描述一下手头的问题吗?您应该可以在列表框上执行.ZOrder msoSendBackward,但我可能需要更多信息。根据microsoft帮助,这对我很有效。在一个表格上工作得很好