Simontelescopium,
Actually, you can detects wide-screen devices. See this thread:
http://www.basic4ppc.com/forum/quest...detection.html
A simple way to do it is to have a global variable (say WideScreen) and then in Sub App_Start have the line If Form1.Height/Form1.Width > 1.4 then WideScreen = True else WideScreen = False.
You could also test for a square device if desired (the above ratio would be less than 1).
Of course I don't mind people modifying code to meet their own needs. That's one of the reasons I post code with my programs.