Software:Unregistered Server
Version Number:49.6 beta1
________________________________________________________________________
Location
That place
________________________________________________________________________
Description:
When you close explorer, and re-open it, the server doesn't re-appear in the taskbar.
Because you can't get to it by opening again ('You can only run one instance of this program at a time'), you'll have to crash the program to close it.
________________________________________________________________________
Steps to Replicate:
(needs Windows NT or later)
1. Start up the World Server.
2. Minimize the World Server.
3. Press CTRL+ALT+DEL, and choose Task Manager.
4. Choose the tab Processes.
5. Click explorer.exe in the list.
6. Click 'End process'.
7. Click Applications (or whatever it is in the english windows).
8. Click New Task (or whatever that is in the english windows...).
9. Type explorer and press enter.
All icons re-appear on the taskbar, except the world server.
World Server doesn't re-appear when re-opening explorer
- Magicfinger
- Staff
- Posts: 1078
- Joined: Tue Sep 30, 2003 10:38 am
- Location: here,there and everywhere
it could be said that if explorer.exe is crahing then the server icon is probabbly the least of your worries
any...
@mit would look at this at this but i find that section of the code a tad scary
anyway a bit of research suggests that the following is the answer...
any...
@mit would look at this at this but i find that section of the code a tad scary
anyway a bit of research suggests that the following is the answer...
Code: Select all
LRESULT CALLBACK WndProc(HWND hWnd, UINT uMessage, WPARAM wParam,
LPARAM lParam)
{
static UINT s_uTaskbarRestart;
switch(uMessage)
{
case WM_CREATE:
s_uTaskbarRestart = RegisterWindowMessage(TEXT("TaskbarCreated"));
break;
default:
if(uMessage == s_uTaskbarRestart)
AddTaskbarIcons();
break;
}
return DefWindowProc(hWnd, uMessage, wParam, lParam);
}
- Magicfinger
- Staff
- Posts: 1078
- Joined: Tue Sep 30, 2003 10:38 am
- Location: here,there and everywhere
- Magicfinger
- Staff
- Posts: 1078
- Joined: Tue Sep 30, 2003 10:38 am
- Location: here,there and everywhere