请问PowerPoint中制作控件的代码是什么意思?

2025-04-23 12:50:16
推荐回答(2个)
回答1:

checkbox是多项选择框。

第一、二项正确:
if checkbox1.value=true and checkbox2.value=true and checkbox3.value=false and checkbox4.value=false then
msgbox …………

第二、三、四项正确:
If CheckBox2.Value = Ture And CheckBox3.Value = True And CheckBox4.Value = True And CheckBox1.Value = False Then
msgbox ……

checkbox.value=true(就表示是选中)
checkbox.value=false(就表示没有选中)

回答2:

根据四个输入窗体CheckBox的值,
符合条件的话,弹出“太棒了”了的对话框,否则弹出“再想一想,不对哦!”