B
bnaya
How can I open WinForm from Windows Service
I was tring the following options but it didn't work for me:
MyForm m_frmDetails = new MyForm();
m_frmDetails.Show();
or
MyForm m_frmDetails = new MyForm();
Application.Run(m_frmDetails);
does anyone know how to do it?
(I cannot use remoting)
I was tring the following options but it didn't work for me:
MyForm m_frmDetails = new MyForm();
m_frmDetails.Show();
or
MyForm m_frmDetails = new MyForm();
Application.Run(m_frmDetails);
does anyone know how to do it?
(I cannot use remoting)