Click here to Skip to main content
15,893,594 members
Articles / Programming Languages / C#

Album Surfer

Rate me:
Please Sign up or sign in to vote.
3.83/5 (3 votes)
19 Jun 20054 min read 50.4K   472   23  
An app for easy image scrolling.
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
 <head>
  <meta name="vs_showGrid" content="True">
  <title>Keyboard Shortcuts</title>
  <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
  <link rel="stylesheet" type="text/css" href="AlbumSurfer.css">
  <script language="VBScript">
   Sub vbsKeyPress()
     select case ( window.event.keyCode )
      case 44:  window.navigate "Main.htm"  ','
      case 46:  window.navigate "ImageTypes.htm"  '.'
     end select
   End Sub
  </script>
 </head>
 <body onkeypress="vbsKeyPress">
  <h1>Keyboard Shortcuts</h1>
  <table border="1" cellspacing="1" cellpadding="1" width="700">
   <tr>
    <td colspan="9">There are numerous keyboard shortcuts to facilate image 
     navigation.</td>
   </tr>
   <tr>
    <td colspan="3">Escape</td>
    <td colspan="6">Exit Application</td>
   </tr>
   <tr>
    <td colspan="3">F1</td>
    <td colspan="6">Help</td>
   </tr>
   <tr>
    <td colspan="3">F2</td>
    <td colspan="6">Full Screen Toggle</td>
   </tr>
   <tr>
    <td colspan="3">F3</td>
    <td colspan="6">Minimize Form</td>
   </tr>
   <tr>
    <td colspan="3">F11</td>
    <td colspan="6">Previous Image</td>
   </tr>
   <tr>
    <td colspan="3">F12</td>
    <td colspan="6">Next Image</td>
   </tr>
   <tr>
    <td colspan="3">Home</td>
    <td colspan="6">Zoom In (25% increments)</td>
   </tr>
   <tr>
    <td colspan="3">End</td>
    <td colspan="6">Zoom Out (25% increments)</td>
   </tr>
   <tr>
    <td colspan="3">PageUp</td>
    <td colspan="6">Previous Image</td>
   </tr>
   <tr>
    <td colspan="3">PageDown</td>
    <td colspan="6">Next Image</td>
   </tr>
   <tr>
    <td colspan="3">"`" Forward single quote (tilde key)</td>
    <td colspan="6">Fit image to window</td>
   </tr>
   <tr>
    <td colspan="3">1</td>
    <td colspan="6">Show image actualsize</td>
   </tr>
   <tr>
    <td colspan="3">2</td>
    <td colspan="6">show image 2X</td>
   </tr>
   <tr>
    <td colspan="3">3</td>
    <td colspan="6">ShowImage 3X</td>
   </tr>
   <tr>
    <td colspan="3">4</td>
    <td colspan="6">Show Image 4X</td>
   </tr>
   <tr>
    <td colspan="3">5</td>
    <td colspan="6">Show Image 5X</td>
   </tr>
   <tr>
    <td colspan="3">6</td>
    <td colspan="6">Show Image 6X</td>
   </tr>
   <tr>
    <td colspan="3">+ ( = key)</td>
    <td colspan="6">Zoom in (25% increments)</td>
   </tr>
   <tr>
    <td colspan="3">-</td>
    <td colspan="6">Zoom Out (25% increments)</td>
   </tr>
   <tr>
    <td colspan="3">Space</td>
    <td colspan="6">Previous Image</td>
   </tr>
   <tr>
    <td colspan="3">Enter</td>
    <td colspan="6">Next Image</td>
   </tr>
   <tr>
    <td colspan="3">Up Arrow</td>
    <td colspan="6">Scroll Up in Image (Shift = larger scroll)</td>
   </tr>
   <tr>
    <td colspan="3">Down Arrow</td>
    <td colspan="6">Scroll Down in Image (Shift = larger scroll)</td>
   </tr>
   <tr>
    <td colspan="3">Rigth Arrow</td>
    <td colspan="6">Scroll Right in Image (Shift = larger scroll)</td>
   </tr>
   <tr>
    <td colspan="3">Left Arrow</td>
    <td colspan="6">Scroll Left in Image (Shift = larger scroll)</td>
   </tr>
   <tr>
    <td colspan="9">&nbsp;</td>
   </tr>
  </table>
  <table border="0" cellspacing="1" cellpadding="1" width="700">
   <tr>
    <td class="footer">
     MS Tools. V05.06.18.05</td>
   </tr>
  </table>
 </body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here



Comments and Discussions