本示例询问用户是否将文档窗口设为蓝底白字,并提供了“是”和“否”两个按钮来响应。

If MsgBox("确认使用蓝底白字?", 36, "蓝底白字") = vbYes Then
    Options.BlueScreen = True
Else
    Options.BlueScreen = False
End If