Hello,
I have WCF service with:
MessageBox.Show(...);
But, they're not displaying in Windows Forms client application. How can I make it work?
Thank you in advance.
Regards,
Goran
Printable View
Hello,
I have WCF service with:
MessageBox.Show(...);
But, they're not displaying in Windows Forms client application. How can I make it work?
Thank you in advance.
Regards,
Goran
The WCF Service runs Server Side. It has no associated "Window" and therefore displaying child MessageBox(es) does not make sense. I assume you are doing this for debugging purposes??
If you are, consider using System.Diagnostics.Debug.WriteLine() and its similar members.
Use any logging framework to log such exception/messages. You cannot / should not use messagebox at service end.