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.
 
 
 
 
 
 

60 regels
2.4 KiB

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
  2. <html>
  3. <head>
  4. <title>Find / Replace</title>
  5. <script language="javascript" src="findDlg.js"></script>
  6. </head>
  7. <body style="FONT-SIZE: 9pt; FONT-FAMILY: Arial" bgColor="#dbd8d1" leftMargin="5" topMargin="5">
  8. <table width="100%" style="FONT-SIZE: 9pt; FONT-FAMILY: Arial" align="center" cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
  9. <tr>
  10. <td width="100">
  11. Fi<u>n</u>d what:</td>
  12. <td align="left"><input type="text" id="txtFindWhat" size="25" accessKey="n" tabIndex="1"></td>
  13. <td rowspan="4" align="center" valign="top">
  14. <table align="center">
  15. <tr>
  16. <td><button id="btnFind" style="width:90px; FONT-FAMILY: Arial" onclick="if(isEnableGo(this)) {find_Next(_activeCell);}" accessKey="f" tabIndex="8"><u>F</u>ind Next</button></td>
  17. </tr>
  18. <tr id="trReplace">
  19. <td><button id="btnReplace" style="width:90px; FONT-FAMILY: Arial" onclick="if(isEnableGo(this)) {replace(0);}" accessKey="r" tabIndex="9"><u>R</u>eplace</button></td>
  20. </tr>
  21. <tr id="trReplaceAll">
  22. <td><button id="btnReplaceAll" style="width:90px; FONT-FAMILY: Arial" onclick="if(isEnableGo(this)) {replaceAll();}" accessKey="a" tabIndex="10">Replace <u>A</u>ll</button></td>
  23. </tr>
  24. <tr>
  25. <td><input type="button" id="btnClose" value="Close" style="width:90px; FONT-FAMILY: Arial" onclick="window.close();" tabIndex="11"></td>
  26. </tr>
  27. </table>
  28. </td>
  29. </tr>
  30. <tr id="trReplaceWhat">
  31. <td width="100">
  32. Re<u>p</u>lace with:</td>
  33. <td align="left"><input type="text" id="txtReplaceWith" size="25" accessKey="p" tabIndex="2"></td>
  34. </tr>
  35. <tr>
  36. <td valign="top" width="100" style="padding-top:6px;">
  37. Find options:</td>
  38. <td align="left">
  39. <input type="checkbox" id="ckbCase" accessKey="c" tabIndex="3"> Match <u>c</u>ase
  40. <br>
  41. <input type="checkbox" id="ckbWord" accessKey="w" tabIndex="4"> Match <u>w</u>hole
  42. word
  43. <br>
  44. <input type="checkbox" id="ckbDirection" accessKey="u" tabIndex="5"> Search <u>u</u>p
  45. <br>
  46. <input type="checkbox" id="ckbRegular" accessKey="e" tabIndex="6"> Regular <u>e</u>xpression
  47. <br>
  48. <label>Find<u>i</u>n</label>
  49. <select id="ddlFindIn" accessKey="i" tabIndex="7" style="FONT-FAMILY: Arial">
  50. <option value="1" selected>
  51. Formulas
  52. <option value="2">
  53. Values
  54. </select>
  55. </td>
  56. </tr>
  57. </table>
  58. </body>
  59. </html>