Question : Simple? Visual Studio

Got something that's making me crazy.

Tried everything but every time I do a build event my browser NEVER opens in maximized state.  It always opens in the "restore Down" mode...so it doesn't fill the screen.

Any way to do this so the page always opens maximized?

Answer : Simple? Visual Studio

Checkl this :

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
<html><head><script>
	function function1(e) {
		var srcElement = e.srcElement?e.srcElement:e.target;
		if( srcElement.nodeName.toLowerCase() == "td" ) {
			var cells = document.getElementsByTagName("table")[0].getElementsByTagName("td");
			for(var i=0;i<cells.length;i++) cells[i].bgColor = ""; // remove color for all cells
			if( srcElement.bgColor == "" ) {
				srcElement.bgColor = "red";
			}
			else {
				srcElement.bgColor = "";
			}
		}
	}
</script></head>
<body bgcolor="#ccffcc" text="#000000">
<table border="1" onClick="function1(event);">
	<tr>
   <td id="myTD" height="79">Cell 1 content</td>
   <td id="myTD" height="79">Cell 1 content</td>
   <td id="myTD" height="79">Cell 1 content</td>
   <td id="myTD" height="79">Cell 1 content</td>
   <td id="myTD" height="79">Cell 1 content</td>
   <td id="myTD" height="79">Cell 1 content</td>
   <td id="myTD" height="79">Cell 1 content</td>
   <td id="myTD" height="79">Cell 1 content</td>
 </tr>
</table>
</body></html>
Random Solutions  
 
programming4us programming4us