Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
2.0 KiB

  1. <HTML xmlns:ctls>
  2. <HEAD>
  3. <META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
  4. <META http-equiv="MSThemeCompatible" content="Yes">
  5. <LINK REL="stylesheet" TYPE="text/css" HREF="arp.css">
  6. <STYLE TYPE="text/css">
  7. BODY {
  8. background: infobackground;
  9. color: infotext;
  10. }
  11. BUTTON {
  12. width: 7em; /* this is == 50dlus and should be the default */
  13. }
  14. TD {
  15. xborder: '1px solid burlywood'; /* Used for debugging the layout */
  16. }
  17. ctls\:ACCEL { behavior: url(accel.htc); }
  18. </STYLE>
  19. <SCRIPT LANGUAGE="JavaScript" SRC="util.js"></SCRIPT>
  20. <SCRIPT LANGUAGE="JavaScript">
  21. function Body_Load()
  22. {
  23. idBtnOK.focus();
  24. }
  25. function Body_KeyPress()
  26. {
  27. // Was this the escape key?
  28. if (KC_ESCAPE == window.event.keyCode || KC_RETURN == window.event.keyCode)
  29. {
  30. // Yes; close the window
  31. window.close();
  32. }
  33. }
  34. </SCRIPT>
  35. <TITLE>Definition: Frequency Of Use</TITLE>
  36. </HEAD>
  37. <BODY>
  38. <TABLE style='height:auto; width:100%'>
  39. <TR>
  40. <TD valign=top>
  41. <H1 id=idHFreqHeader>Frequency of Use</H1>
  42. <P id=idPDefn1>
  43. Windows measures the number of times the program has been run in the past 30
  44. days and labels it accordingly.
  45. <P id=idPDefn2>
  46. Frequency is divided into three areas:
  47. <UL>
  48. <LI id=idLiRarely>Rarely - the program is rarely or never run.
  49. <LI id=idLiSometimes>Occasionally - the program is run sometimes.
  50. <LI id=idLiFrequently>Frequently - the program is run often.
  51. </UL>
  52. </TD>
  53. </TR>
  54. <TR>
  55. <TD style='padding:0px; margin:0px'>
  56. <HR style='width:100%' noshade size=2>
  57. </TD>
  58. </TR>
  59. <TR>
  60. <TD id=idTdClose align=right valign=bottom>
  61. <BUTTON id=idBtnOK>
  62. <ctls:ACCEL id=idLblOK forElem=idBtnOK>&Close</ctls:ACCEL>
  63. </BUTTON>
  64. </TD>
  65. </TR>
  66. </TABLE>
  67. <SCRIPT LANGUAGE="JavaScript">
  68. // Events
  69. document.body.onload = Body_Load;
  70. document.body.onkeypress = Body_KeyPress;
  71. idBtnOK.onclick = window.close;
  72. </SCRIPT>
  73. </BODY>
  74. </HTML>