Excel Userform Iframe Autoscroll

时间:2015-06-04 15:12:03

标签: excel-vba vba excel

我所拥有的是一个用户表单,其中包含带有多个输入字段的iframe图像。我创建了一个可滚动区域,因为所有输入字段都不适合用户窗体。当我点击图像的某个部分时,iframe将向下滚动到适用于设置foceu的输入框。使用下面的脚本,这很好用,现在我的问题是如何将它设置为现在而不是垂直的

Sub scrollFrame(topVisibleControl As Object)
' Declares sub named scrollFrame and (procedure scoped) variable named topVisibleControl
Frame10.ScrollLeft = ScrollTop = topVisibleControl.Top
End Sub

我用

调用该函数
Call scrollFrame(ComboBoxga37)

1 个答案:

答案 0 :(得分:0)

试错了我弄清楚是否有人对此感兴趣的是下面的脚本

Sub scrollFrame(leftVisibleControl As Object)
' Declares sub named scrollFrame and (procedure scoped) variable named topVisibleControl
Frame10.ScrollLeft = leftVisibleControl.Left
End Sub