Hi,
I show the relevant form, like
Public Class MyFunction
Public Shared frm As New Form1()
Public Shared s_ret As String = ""
Public Function Func1(ByVal Value1 As String, ByVal Value2 As String, ByVal Value3 As String) As String
frm.ShowDialog()
...
within the class above, that is on the same project. How to close the form
Public Class Form1
Protected Sub n_Click(ByVal sender As Object, ByVal e As EventArgs)
...
within the code-behind event of the form above?
Go to the complete details ...