Microsoft Documentation Minimum supported client question (WM_NOTIFY)

NorthernSun 101 Reputation points
2021-08-08T15:29:56.007+00:00

Good evening. I am looking to create a simple win32 application that can (also) run on Windows XP using Visual Studio 2015. Up till now I have just been assuming that WM_NOTIFY can be used for developing apps for Windows XP. But I just noticed that on the Microsoft Win32 documentation it says "Minimum supported client: Windows Vista [desktop apps only]". Does that mean that I cannot use WM_NOTIFY to receive for example TVN_SELCHANGED on Windows XP?

Microsoft documentation link: https://learn.microsoft.com/en-us/windows/win32/controls/wm-notify

Windows development | Windows API - Win32
{count} votes

Accepted answer
  1. Castorix31 90,686 Reputation points
    2021-08-08T16:23:40.687+00:00

    No, the doc is wrong

    WM_NOTIFY works on XP (used a lot in Common Controls)

    If I search in MSDN archives, there is even :

    Minimum operating systems Windows NT 3.51, Windows 95

    WM_NOTIFY Message

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Viorel 122.6K Reputation points
    2021-08-08T20:02:35.993+00:00

    I think, it means that Windows XP is not a supported Operating System. (It is not the version of Windows that introduced this message).

    But the support for Windows Vista has ended too, therefore the documentation seems obsolete.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.