VB 程序设计
发布网友
发布时间:2022-06-02 07:27
我来回答
共1个回答
热心网友
时间:2023-10-09 16:13
代码如下
宋体单选框名称是option1
宋体单选框名称是option2
下划线复选框名称是check1
斜体复选框名称是check2
确定按钮名称是command1
Private Sub Command1_Click()
If Me.Check1.Value = 0 And Me.Check2.Value = 0 Then
MsgBox "请至少选择一个复选框"
Exit Sub
End If
If Me.Option1.Value = True Then
Me.Text1.Font = "宋体"
End If
If Me.Option2.Value = True Then
Me.Text1.Font = "黑体"
End If
If Me.Check1.Value = 1 Then
Me.Text1.FontUnderline = True
End If
If Me.Check2.Value = 1 Then
Me.Text1.FontItalic = True
End If
End Sub