VB为报表盖电子图章
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VB为报表盖电子图章相关的知识,希望对你有一定的参考价值。
图中右下角是电子图章,VB代码如下:
Dim shp As Object
Dim DZTZ As String
DZTZ = ThisWorkbook.Path & "\\" & "YWTJTZ.JPG"
If Dir(DZTZ) = "" Then
MsgBox "目录下没有电子图章。", vbInformation, "提示"
End If
Set shp = ActiveSheet.Pictures.Insert(DZTZ)
With shp
.Left = ActiveCell.Left + Int((ActiveCell.Width - 40) / 2)
.Top = ActiveCell.Top + Int((ActiveCell.Height - 40) / 2)
.Height = 40
.Width = 40
End With
Set shp = Nothing
以上是关于VB为报表盖电子图章的主要内容,如果未能解决你的问题,请参考以下文章