我无法获得复选框的值..
我已经搜索了很多,但我真的无法找到错误。
无论如何这是我的代码:
If printa.Checked = True Then
objDoc.PrintOut
Else
bjDoc.Close
End If
用户形式中的chechbox的名称是" printa"。
我收到的错误是它无法找到方法或对象。
有什么建议吗?
由于 丹尼斯
答案 0 :(得分:1)
您要使用的属性是Value
:
If printa.Value = True Then
objDoc.PrintOut
Else
objDoc.Close
End If
(你的objDoc.Close
还有一个拼写错误