Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

depending on screen res

Status
Not open for further replies.

jdeane

IS-IT--Management
Sep 21, 2001
229
GB
How can I check what the screen resoloution is set to. I am planning to deploying a standard desktop background across a site.

Any pointers would be welcome.

Thanks

Jonathan
 
if (screen) then
theWidth = screen.width
theHeight = screen.height
else
theWidth= 800
theHeight
end if -----------------------------------------------------------------
"Whether you think that you can, or that you can't, you are usually right."
- Henry Ford (1863-1947)

mikewolf@tst-us.com
 
OOPPSS

if (screen) then
theWidth = screen.width
theHeight = screen.height
else
theWidth = 800
theHeight = 600
end if -----------------------------------------------------------------
"Whether you think that you can, or that you can't, you are usually right."
- Henry Ford (1863-1947)

mikewolf@tst-us.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top