I have got Skype configured to launch minimized on windows starts.
Now I need to bring Skype to front from a button from my full screen application button. I have got this code:
For Each p As Process In Process.GetProcessesByName("skype")
ShowWindow(p.MainWindowHandle, SHOW_WINDOW.SW_NORMAL)
Next p
It works but, when I clicked the button my application is minimized and I need it to remain in this original state.
Any help?
thanks in advance
Hope this helps? http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/9bde4870-1599-4958-9ab4-902fa98ba53a/