スレッドで実行されるインスタンス化されたクラスからメインフォームページで関数を呼び出す方法を知っている人はいますか?
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
関数内で文字列を返すようにしますが、例外がある場合にのみテキストボックスメッセージを呼び出します。お時間をいただきありがとうございます!