无法使我的图像和框架高度匹配

时间:2017-08-02 15:05:57

标签: excel vba excel-vba

我在一个框架内有一个图像,框架上有一个滚动条。我无法获得相同高度的图像和帧。它工作得很好,但我在图像下面的框架底部有这个巨大的空间。不确定如何解决这个问题?

希望这是足够的信息:userform = RejectSamples(H 606,W 708);帧=帧1(H 540,W 684); Image = Image2(H 800,W 612)

 Private Sub UserForm_Activate()
'Name of the frame
 With Me.Frame1
'This will create a vertical scrollbar
.ScrollBars = fmScrollBarsVertical

'Change the values of 2 as Per your requirements
.ScrollHeight = .InsideHeight * 2
.ScrollWidth = .InsideWidth * 5
 End With
 End Sub

0 个答案:

没有答案