如何通过labview实现禁止excel关闭
时间:10-02
整理:3721RD
点击:
excel中在thisworkbook中加入以下代码就可以实现excel的关闭被禁用,如何通过labview实现,我用了report generation toolkit中的关于excel的运行宏命令的VI,但是无法实现。
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Cancel = True
End Sub
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Cancel = True
End Sub