Windows with Delphi Windows API (94) Windows Filesystem (41) Windows Forms (69) Windows Graphics (38)
Exchange Links About this site Links to us 
New related comments Number of comments in the last 48 hoursPlay WAV files 1 new comments
|
Changes in WIN.INI / the registry
This article has not been rated yet. After reading, feel free to leave comments and rate it.
"Windows 95: The WM_WININICHANGE message is implemented on the Windows NT
platform, but not on the Windows 95 platform. Windows 95 applications
should use the WM_SETTINGCHANGE message, which provides equivalent
functionality."
 | |  | |
if isWinNT then
SendMessage(HWND_BROADCAST, WM_WININICHANGE, 0, 0)
else
SendMessage(HWND_BROADCAST, WM_SETTINGCHANGE, 0, 0);
| |  | |  |
Comments:
|