I did a notifier app in C# that sits on the taskbar and display a balloon when i get something from it, similar to Google Talk when you receive a new email but at the momment it ignores if i am running an application on fullscreen or not and just do it is job.
How can i detect and make sure an application is in fullscreen mode ? I dont mean maximized(as an app could be maximized on your screen but still not in fullscreen) mode but true fullscreen.
For example when you run a game most will run in fullscreen mode.
Initially GetForegroundWindow() and GetWindowRect() came to my mind but even so i could make a window go larger then my screen if i am not on fullscreen which would'nt help me so i am wondering if there are other flags or ways to approch this.
Best regards.