您好我正在寻求帮助。我创建了一个类,并在其中添加了一个函数,现在我想将该函数用作按钮的事件。
Public Class Professor
Inherits Person
Public m_publications As Integer
Public Function IsOutstanding() As Boolean
If m_publications >= 100 Then
Return True
End If
Return m_publications
End Function
End Class
因此,当您点击按钮时,结果将弹出messagebox