I made a dll for Windows Shell Extension integration, following this tutorial http://blogs.msdn.com/b/codefx/archive/2010/09/14/writing-windows-shell-extension-with-net-framework-4-c-vb-net-part-1.aspx[^]
Now, I added a Windows form in that dll, I'm doing the following:
void OnVerbDisplayFileName(IntPtr hWnd)
{
ShowSelectedFiles form = new ShowSelectedFiles();
form.Show(selectedFiles);
}
Everything works fine, just the Forms icon is not shown in task bar and I can't find the process that runs my form.
Any tip on how to solve this problem? Maybe by starting a new process and then showing the form?
Thanks