Private Sub combo1_Click()
If Combo1.Text = "储能" Then
Label11.Caption = "弹簧等"
End If
If Combo1.Text = "固定" Then
Label11.Caption = "螺钉、螺母、垫圈、挡圈、轴承、套筒、键、销等"
End If
End Sub
combobox是不是有类似selectitemchanged事件呢?就是在选择项发生改变后触发的那个事件.在那事件里面写
Label11.Caption = "弹簧等"