有谁知道如何从在线程中运行的实例化类调用主表单页面上的函数?
Public Class Test
Public Sub Temp()
Try
'Operations here
Catch ex as Exception
Form1.Invoke(New Form1.LogMessageDelegate(AddressOf frmIP.LogMessage), "Error Message To Be Outputted to TextBox on Main Form")
End Try
End Sub
End Class
我会让它在函数中返回一个字符串,但我只在出现异常时调用文本框消息。感谢您的时间!