用按钮的话,要写很多按钮事件
如果用选项组的话,也许代码会简单点
比如
Private Sub Frame34_Click()
Dim str As String
If Not IsNull(Me.Frame34) Then
str = Me.Frame34
End If
Me.Text15 = Me.Text15 & str
End Sub
Private Sub Frame34_AfterUpdate()
Dim str As String
If Not IsNull(Me.Frame34) Then
str = Me.Frame34
End If
Me.Text15 = Me.Text15 & str
End Sub
Private Sub Frame34_Click()
Me.Frame34 = Null
End Sub