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.
|
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
- <html>
- <head>
- <title>Find / Replace</title>
- <script language="javascript" src="findDlg.js"></script>
- </head>
- <body style="FONT-SIZE: 9pt; FONT-FAMILY: Arial" bgColor="#dbd8d1" leftMargin="5" topMargin="5">
- <table width="100%" style="FONT-SIZE: 9pt; FONT-FAMILY: Arial" align="center" cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
- <tr>
- <td width="100">
- Fi<u>n</u>d what:</td>
- <td align="left"><input type="text" id="txtFindWhat" size="25" accessKey="n" tabIndex="1"></td>
- <td rowspan="4" align="center" valign="top">
- <table align="center">
- <tr>
- <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>
- </tr>
- <tr id="trReplace">
- <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>
- </tr>
- <tr id="trReplaceAll">
- <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>
- </tr>
- <tr>
- <td><input type="button" id="btnClose" value="Close" style="width:90px; FONT-FAMILY: Arial" onclick="window.close();" tabIndex="11"></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr id="trReplaceWhat">
- <td width="100">
- Re<u>p</u>lace with:</td>
- <td align="left"><input type="text" id="txtReplaceWith" size="25" accessKey="p" tabIndex="2"></td>
- </tr>
- <tr>
- <td valign="top" width="100" style="padding-top:6px;">
- Find options:</td>
- <td align="left">
- <input type="checkbox" id="ckbCase" accessKey="c" tabIndex="3"> Match <u>c</u>ase
- <br>
- <input type="checkbox" id="ckbWord" accessKey="w" tabIndex="4"> Match <u>w</u>hole
- word
- <br>
- <input type="checkbox" id="ckbDirection" accessKey="u" tabIndex="5"> Search <u>u</u>p
- <br>
- <input type="checkbox" id="ckbRegular" accessKey="e" tabIndex="6"> Regular <u>e</u>xpression
- <br>
- <label>Find<u>i</u>n</label>
- <select id="ddlFindIn" accessKey="i" tabIndex="7" style="FONT-FAMILY: Arial">
- <option value="1" selected>
- Formulas
- <option value="2">
- Values
- </select>
- </td>
- </tr>
- </table>
- </body>
- </html>
|