How can i do this? I tried IsWindowVisible(), but that doesn't seem to work.
IsWindowVisible()
To check if a window is minimized, use IsIconic(HWND).
IsIconic(HWND)
windowsx.h It has #define IsMinimized(hwnd) IsIconic(hwnd)
windowsx.h
#define IsMinimized(hwnd) IsIconic(hwnd)
So the answer if (IsMinimized(hwnd)) { }
if (IsMinimized(hwnd)) { }
Source: https://habr.com/ru/post/1715038/More articles:JPA joins a table with multiple objects - javaКак избежать конфликтов SVN при слиянии ветки обратно в магистраль - branchУдаление файлов, не относящихся к проекту, из SVN в Visual Studio - svnIs it possible to programmatically debug one native .NET process - debuggingЯркость/экспозиция с помощью vb.net - vb.netto remove [] and memory leaks - c ++Invalid syntax next to 'nvarchar' in an ASP.NET Gridview update - sqlConvert a number to the corresponding Excel column - letterComplex model binding - asp.net-mvcIs it possible to output routines that are printed in FILE * to build a string in C? - c99All Articles