Link to home
Start Free TrialLog in
Avatar of ILPowerSoft
ILPowerSoft

asked on

Refresh Windows

if I have write to the reg how can I refresh windows.
write to change the windows icons,wallpaper,mouse,colors.....
Avatar of Radler
Radler

Try this

.....
SendMessage( HWND_BROADCAST, WM_SETTINGCHANGE, 0, 0 );
Application.ProcessMessages; //Reload you too

T++, Radler.
Radler's sug. should work, I would also think you should be able to call:

invalidateRect(0,nil,true);



GL
Mike
Because the finallity was ignored by me.
I gave a heavy sledghammer in the problem.
I imagine that the shell( Windows Explorer ) wouldn't forget about repaint the Desktop.

T++, Radler.
Avatar of ILPowerSoft

ASKER

Sorry it didnt work
ASKER CERTIFIED SOLUTION
Avatar of Radler
Radler

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial