I have created a Window in C++ using CreateWindowEx function of WinAPI and it contains a ListView control with Items and SubItems. I want to update this Window from an external process. What I want to achieve is that based on some conditions, I want to change the color of specific SubItem of a specific Item in that ListView control.
I have searched a lot but have not found the solution to update a specific cell(Item,SubItem) of ListView. What is the solution for this problem?