53 lines
3.5 KiB
HTML
53 lines
3.5 KiB
HTML
|
|
<html><head><title>Actions</title>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
<!--
|
||
|
|
font.link { color: blue; text-decoration: underline; CURSOR: hand }
|
||
|
|
-->
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<script language="javascript"><!--
|
||
|
|
function ExpandCollapse(e)
|
||
|
|
{
|
||
|
|
if (e.style.display == "")
|
||
|
|
e.style.display = "none";
|
||
|
|
else
|
||
|
|
e.style.display = "";
|
||
|
|
}
|
||
|
|
function ExpandCollapseKeyboard(e)
|
||
|
|
{
|
||
|
|
if (event.keyCode == 33) //Page Up collapses
|
||
|
|
{
|
||
|
|
if (e.style.display == "")
|
||
|
|
ExpandCollapse(e);
|
||
|
|
}
|
||
|
|
else if (event.keyCode == 34) //Page Down Expands
|
||
|
|
{
|
||
|
|
if (e.style.display == "none")
|
||
|
|
ExpandCollapse(e);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
--></script>
|
||
|
|
|
||
|
|
<BODY topmargin="2" leftmargin="4">
|
||
|
|
|
||
|
|
<div id="contextitems" style="font-style: normal; font-variant: normal; font-weight: normal; line-height: 11pt; font-size: 8pt; font-family: Tahoma, Verdana; color: #000000; background-color: window; text-align: Left; text-indent: 0; margin-left: 0; margin-right: 0; margin-top: 0">
|
||
|
|
<div id="help_s">
|
||
|
|
<div onkeydown="ExpandCollapseKeyboard(help);" style="CURSOR: default" onclick="ExpandCollapse(help); if (help.style.display == "") { help_img_exp.style.display = ""; help_img_col.style.display = "none"; } else { help_img_exp.style.display = "none"; help_img_col.style.display = ""; }" tabIndex="0"><img id="help_img_exp" src="ctxhelp_show.gif" width="16" height="16"><img id="help_img_col" style="DISPLAY: none" src="ctxhelp_hide.gif" onload="style.display="none";" width="16" height="16"> <b>Help</b></div>
|
||
|
|
<div id="help" style="margin-left: 15"><font class="link">Solution Explorer<br>Managing Solutions, Projects, and Files</font><br></div>
|
||
|
|
</div>
|
||
|
|
<div id="samples_s">
|
||
|
|
<div onkeydown="ExpandCollapseKeyboard(samples);" style="CURSOR: default" onclick="ExpandCollapse(samples); if (samples.style.display == "") { samples_img_exp.style.display = ""; samples_img_col.style.display = "none"; } else { samples_img_exp.style.display = "none"; samples_img_col.style.display = ""; }" tabIndex="0"><img id="samples_img_exp" src="ctxsample_show.gif" width="16" height="16"><img id="samples_img_col" style="DISPLAY: none" src="ctxsample_hide.gif" onload="style.display="none";" width="16" height="16"> <b>Samples</b></div>
|
||
|
|
<div id="samples" style="margin-left: 15"><font class="link">Visual Studio Samples</font></div>
|
||
|
|
</div>
|
||
|
|
<div id="GettingStarted_s">
|
||
|
|
<div onkeydown="ExpandCollapseKeyboard(GettingStarted);" style="CURSOR: default" onclick="ExpandCollapse(GettingStarted); if (GettingStarted.style.display == "") { GettingStarted_img_exp.style.display = ""; GettingStarted_img_col.style.display = "none"; } else { GettingStarted_img_exp.style.display = "none"; GettingStarted_img_col.style.display = ""; }" tabIndex="0"><img id="GettingStarted_img_exp" src="ctxhelp_show.gif" width="16" height="16"><img id="GettingStarted_img_col" style="DISPLAY: none" src="ctxhelp_hide.gif" onload="style.display="none";" width="16" height="16"> <b>Getting Started</b></div>
|
||
|
|
<div id="GettingStarted" style="margin-left: 15"><font class="link">Upgrading Existing Code<br>Creating New Solutions and Projects<br>Programming Languages<br>Source Control Basics<br>Installing Help for Visual Studio<br>Customizing Dynamic Help<br>Visual Studio .NET<br>Customizing the Development Environment<br>What's New in Visual Studio .NET<br>Introducing Visual Studio .NET<br>Visual Studio Walkthroughs<br></font></div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|