fodev.net

FOnline Development => Questions and Answers => Topic started by: Slowhand on September 11, 2017, 03:50:44 pm

Title: How to get the resolution used by client.
Post by: Slowhand on September 11, 2017, 03:50:44 pm
I want to position stuff on screen, and knowing the resolution might be crucial, as I want to place it top right corner. How to acquire the max width/height of the screen?
Title: Re: How to get the resolution used by client.
Post by: devis on September 11, 2017, 09:10:34 pm
int __ScreenWidth;
int __ScreenHeight;
Title: Re: How to get the resolution used by client.
Post by: Slowhand on September 11, 2017, 10:24:24 pm
ty