Nov 3, 2002 #1 jvff Programmer Joined Apr 1, 2001 Messages 64 Location 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 Joined Mar 1, 2002 Messages 170 Location 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 Joined Sep 11, 2001 Messages 58 Location 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