.Net and WinToolbar (updated) Written on August 30, 2005, by akafazov.
As far as the problem with the windows taskbar is concerned there is a better solution to the problem. The Win32 API function SetForegroundWindow(IntPtr hWnd) is very useful. To use it you need the window handle which in .Net could be easily obtained:
Process myProcess = Process.GetProcessByName(“ProcessName”);
IntPtr hWnd = myProcess.MainWindowHandle;
SetForegroundWindow( hWnd );
Before that you have to [...]
.Net & Windows Toolbar Written on August 24, 2005, by akafazov.
I wonder if there is any way to access windows toolbar from .Net without calling the Win32 API. Recently I tried to do something like this, because I needed to focus or activate an application which basically mimics the Alt + Tab functionality. The only solution I came across was to send message to with [...]


