Nov 3, 2002 #1 jvff Programmer Apr 1, 2001 64 BR Hello, I want to get the screen Width and Screen Height. How can I do that? ThanQ, ;-) JVFF (Janito Vaqueiro Ferreira Filho)
Hello, I want to get the screen Width and Screen Height. How can I do that? ThanQ, ;-) JVFF (Janito Vaqueiro Ferreira Filho)
Nov 3, 2002 #2 earlrainer Programmer Mar 1, 2002 170 IN hi, Screen.Width Screen.Height will give you the screen resolution for example showmessage(inttostr(Screen.Width) +'x'+inttostr( Screen.Height) ); Upvote 0 Downvote
hi, Screen.Width Screen.Height will give you the screen resolution for example showmessage(inttostr(Screen.Width) +'x'+inttostr( Screen.Height) );
Nov 5, 2002 #3 Roderich Programmer Sep 11, 2001 58 DE hi, to get the available work space without the Windows task bar use this code: var sgScreen: TRect; begin SystemParametersInfo(SPI_GETWORKAREA, 0, @sgScreen, 0); this gives you the workspace coordinates in sgScreen wbr Rod Upvote 0 Downvote
hi, to get the available work space without the Windows task bar use this code: var sgScreen: TRect; begin SystemParametersInfo(SPI_GETWORKAREA, 0, @sgScreen, 0); this gives you the workspace coordinates in sgScreen wbr Rod