S SHaul Feb 22, 2006 #1 Hi I need to show the today screen on ppc 2003se by c#. is it possible? Many Tahnks Shauly
G Guest Feb 22, 2006 #2 You'll have to use P/Invokes: SendMessage(GetDesktopWindow(), WM_ACTIVATE, 0x1, 0); SetForegroundWindow(GetDesktopWindow());
You'll have to use P/Invokes: SendMessage(GetDesktopWindow(), WM_ACTIVATE, 0x1, 0); SetForegroundWindow(GetDesktopWindow());
S SHaul Feb 22, 2006 #4 show desktop exsample: --------------------------------- SetForegroundWindow (GetDesktopWindow ()); [DllImport("coredll.dll")] public static extern Int32 SetForegroundWindow(int hWnd); [DllImport("coredll.dll", EntryPoint="GetDesktopWindow")] public static extern int GetDesktopWindow(); Thanks again!!
show desktop exsample: --------------------------------- SetForegroundWindow (GetDesktopWindow ()); [DllImport("coredll.dll")] public static extern Int32 SetForegroundWindow(int hWnd); [DllImport("coredll.dll", EntryPoint="GetDesktopWindow")] public static extern int GetDesktopWindow(); Thanks again!!