B
bnaya
How can I raise WinForm from WinService ?
I cannot use remoting because i need the WinForm on the same process as the
Win Service.
I tried the followings:
MyForm m_frmDetails = new MyForm();
m_frmDetails.Show();
and
MyForm m_frmDetails = new MyForm();
Application.Run(m_frmDetails);
I cannot use remoting because i need the WinForm on the same process as the
Win Service.
I tried the followings:
MyForm m_frmDetails = new MyForm();
m_frmDetails.Show();
and
MyForm m_frmDetails = new MyForm();
Application.Run(m_frmDetails);