⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 register.htm

📁 The TAdrockSearchExpert is a utility designed to help you locate references o...
💻 HTM
📖 第 1 页 / 共 4 页
字号:
            <option>Upgrade to Full source, $31 USD</option>
            <option selected>Full Source, $55 USD</option>
          </select></font></td>
        </tr>
      </table>
      <table border="0" cellpadding="0" cellspacing="0" width="96%">
        <tr>
          <td width="240"><div align="left"><p><font size="2" face="Arial"><strong>Message Dialogue
          Class</strong></font><br>
          <font color="#0000FF" size="1" face="Arial">(TAdrockMessageDialog)</font></td>
          <td align="center" width="35"><input type="text" size="3" name="QuantityMessageDialog" value="0"></td>
          <td width="275"><font size="3"><select name="ProductMessageDialog" size="1">
            <option>Standard (no source), $29 USD</option>
            <option>Upgrade to Full source, $26 USD</option>
            <option selected>Full Source, $55 USD</option>
          </select></font></td>
        </tr>
      </table>
      <table border="0" cellpadding="0" cellspacing="0" width="96%">
        <tr>
          <td width="240"><div align="left"><p><font size="2" face="Arial"><strong>SaveForm Settings
          Control</strong></font><br>
          <font color="#0000FF" size="1" face="Arial">(TAdrockSaveForm)</font></td>
          <td align="center" width="35"><input type="text" size="3" name="QuantitySaveForm" value="0"></td>
          <td width="275"><font size="3"><select name="ProductSaveForm" size="1">
            <option>Standard (no source), $29 USD</option>
            <option>Upgrade to Full source, $26 USD</option>
            <option selected>Full Source, $55 USD</option>
          </select></font></td>
        </tr>
      </table>
      <table border="0" cellpadding="0" cellspacing="0" width="96%">
        <tr>
          <td width="240"><div align="left"><p><font size="2" face="Arial"><strong>SaveGrid Settings
          Control</strong></font><br>
          <font color="#0000FF" size="1" face="Arial">(TAdrockSaveGrid)</font></td>
          <td align="center" width="35"><input type="text" size="3" name="QuantitySaveGrid" value="0"></td>
          <td width="275"><font size="3"><select name="ProductSaveGrid" size="1">
            <option>Standard, (no source) $29 USD</option>
            <option>Upgrade to Full source, $30 USD</option>
            <option selected value="Full Source, $59 USD">Full Source, $59 USD</option>
          </select></font></td>
        </tr>
        <tr>
          <td width="240"><font size="2" face="Arial"><strong>Source Code Finder / Loader Expert</strong></font><br>
          <font color="#0000FF" size="1" face="Arial">(TAdrockSourceCodeFinder)</font></td>
          <td align="center" width="35"><input type="text" size="3" name="QuantitySourceCodeFinder" value="0"></td>
          <td width="275"><font size="3"><select name="ProductSourceCodeFinder" size="1">
            <option>Standard (no source), $29 USD</option>
            <option>Upgrade to Full source, $26 USD</option>
            <option selected>Full Source, $55 USD</option>
          </select></font></td>
        </tr>
      </table>
      <table border="0" cellpadding="0" cellspacing="0" width="96%">
        <tr>
          <td></td>
          <td></td>
          <td></td>
        </tr>
        <tr>
          <td width="240"><a name="Update Registration"><font size="2" face="Arial"><strong>Update
          old Registration</strong></font></a><br>
          <font color="#0000FF" size="1" face="Arial">(for existing single copy (16 <em><strong>or </strong></em>32bit)
          registered users of: </font><font color="#008000" size="2"><strong>Alarm List, Analogue
          Clock, Bitmap Property Editor, Date Function Class, Gradient Fill, Group Box, Message
          Dialogue, Save Form, Save Grid and Source Code Finder</strong></font><font color="#0000FF" size="1" face="Arial">) - all at $15 USD onetime update each. (The Calculate Total Price
          Button will not add up these selections)</font></td>
          <td width="200"><input type="checkbox" name="UpdateAlarmList" value="ON">Alarm List<br>
          <input type="checkbox" name="UpdateAnalogueClock" value="ON">Analogue Clock<br>
          <input type="checkbox" name="UpdateBitmapPropertyEditor" value="ON">Bitmap Property Editor<br>
          <input type="checkbox" name="UpdateDateFunctionClass" value="ON">Date Function Class<br>
          <input type="checkbox" name="UpdateGradientFill" value="ON">Gradient Fill</td>
          <td width="200"><input type="checkbox" name="UpdateGroupBox" value="ON">Group Box<br>
          <input type="checkbox" name="UpdateMessageDialogue" value="ON">Message Dialogue<br>
          <input type="checkbox" name="UpdateSaveForm" value="ON">Save Form<br>
          <input type="checkbox" name="UpdateSaveGrid" value="ON">Save Grid<br>
          <input type="checkbox" name="UpdateSourceCodeFinder" value="ON">Source Code Finder</td>
        </tr>
      </table>
      <p><script language="JavaScript"><!--
//- hide script from old browsers



function addup(theform) {
  if (theform.QuantityAlarmList.value == "")
  {
    alert("Please enter a value for the \"Quantity for Alarm List\" field.");
    theform.QuantityAlarmList.focus();
  }
  var checkOK = "0123456789-,";
  var checkStr = theform.QuantityAlarmList.value;
  var allValid = true;
  var decPoints = 0;
  var allNum = "";

  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
    if (ch != ",")
      allNum += ch;
  }
  if (!allValid)
  {
    alert("Please enter only digit characters in the \"Quantity for Alarm List\" field.");
    theform.QuantityAlarmList.focus();
  }

  var chkVal = allNum;
  var prsVal = parseInt(allNum);
  if (chkVal != "" && !(prsVal >= "0" && prsVal <= "999"))
  {
    alert("Please enter a value greater than or equal to \"0\" and less than or equal to \"999\" in the \"Quantity for Alarm List\" field.");
    theform.QuantityAlarmList.focus();
  }

  if (theform.QuantityAnalogueClock.value == "")
  {
    alert("Please enter a value for the \"Quantity for the Analogue Clock\" field.");
    theform.QuantityAnalogueClock.focus();
  }
  var checkOK = "0123456789-,";
  var checkStr = theform.QuantityAnalogueClock.value;
  var allValid = true;
  var decPoints = 0;
  var allNum = "";
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
    if (ch != ",")
      allNum += ch;
  }
  if (!allValid)
  {
    alert("Please enter only digit characters in the \"Quantity for the Analogue Clock\" field.");
    theform.QuantityAnalogueClock.focus();
  }

  var chkVal = allNum;
  var prsVal = parseInt(allNum);
  if (chkVal != "" && !(prsVal >= "0" && prsVal <= "999"))
  {
    alert("Please enter a value greater than or equal to \"0\" and less than or equal to \"999\" in the \"Quantity for the Analogue Clock\" field.");
    theform.QuantityAnalogueClock.focus();
  }
  if (theform.QuantityBitmapPropertyEditor.value == "")
  {
    alert("Please enter a value for the \"Quantity for the Bitmap Property Editor\" field.");
    theform.QuantityBitmapPropertyEditor.focus();
  }
  var checkOK = "0123456789-,";
  var checkStr = theform.QuantityBitmapPropertyEditor.value;
  var allValid = true;
  var decPoints = 0;
  var allNum = "";
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
    if (ch != ",")
      allNum += ch;
  }
  if (!allValid)
  {
    alert("Please enter only digit characters in the \"Quantity for the Bitmap Property Editor\" field.");
    theform.QuantityBitmapPropertyEditor.focus();
  }

  var chkVal = allNum;

  var prsVal = parseInt(allNum);

  if (chkVal != "" && !(prsVal >= "0" && prsVal <= "999"))

  {

    alert("Please enter a value greater than or equal to \"0\" and less than or equal to \"999\" in the \"Quantity for the Bitmap Property Editor\" field.");

    theform.QuantityBitmapPropertyEditor.focus();

  }





  if (theform.QuantityDateTimeSuite.value == "")

  {

    alert("Please enter a value for the \"Quantity for the DateTime Suite\" field.");

    theform.QuantityDateTimeSuite.focus();

  }

  var checkOK = "0123456789-,";

  var checkStr = theform.QuantityDateTimeSuite.value;

  var allValid = true;

  var decPoints = 0;

  var allNum = "";

  for (i = 0;  i < checkStr.length;  i++)

  {

    ch = checkStr.charAt(i);

    for (j = 0;  j < checkOK.length;  j++)

      if (ch == checkOK.charAt(j))

        break;

    if (j == checkOK.length)

    {

      allValid = false;

      break;

    }

    if (ch != ",")

      allNum += ch;

  }

  if (!allValid)

  {

    alert("Please enter only digit characters in the \"Quantity for the DateTime Suite\" field.");

    theform.QuantityBitmapPropertyEditor.focus();

  }



  var chkVal = allNum;

  var prsVal = parseInt(allNum);

  if (chkVal != "" && !(prsVal >= "0" && prsVal <= "999"))

  {

    alert("Please enter a value greater than or equal to \"0\" and less than or equal to \"999\" in the \"Quantity for the Bitmap Property Editor\" field.");

    theform.QuantityDateTimeSuite.focus();

  }





  if (theform.QuantityDateTimeBaselevelSource.value == "")

  {

    alert("Please enter a value for the \"Quantity for the DateTime Baselevel Source\" field.");

    theform.QuantityDateTimeBaselevelSource.focus();

  }

  var checkOK = "0123456789-,";

  var checkStr = theform.QuantityDateTimeBaselevelSource.value;

  var allValid = true;

  var decPoints = 0;

  var allNum = "";

  for (i = 0;  i < checkStr.length;  i++)

  {

    ch = checkStr.charAt(i);

    for (j = 0;  j < checkOK.length;  j++)

      if (ch == checkOK.charAt(j))

        break;

    if (j == checkOK.length)

    {

      allValid = false;

      break;

    }

    if (ch != ",")

      allNum += ch;

  }

  if (!allValid)

  {

    alert("Please enter only digit characters in the \"Quantity for the DateTime Baselevel Source\" field.");

    theform.QuantityDateTimeBaselevelSource.focus();

  }



  var chkVal = allNum;

  var prsVal = parseInt(allNum);

  if (chkVal != "" && !(prsVal >= "0" && prsVal <= "999"))

  {

    alert("Please enter a value greater than or equal to \"0\" and less than or equal to \"999\" in the \"Quantity for the DateTime Baselevel Source\" field.");

    theform.QuantityDateTimeBaselevelSource.focus();

  }





  if (theform.QuantityDateTimeCrossgrade.value == "")

  {

    alert("Please enter a value for the \"Quantity for the DateTime Crossgrade\" field.");

    theform.QuantityDateTimeCrossgrade.focus();

  }

  var checkOK = "0123456789-,";

  var checkStr = theform.QuantityDateTimeCrossgrade.value;

  var allValid = true;

  var decPoints = 0;

  var allNum = "";

  for (i = 0;  i < checkStr.length;  i++)

  {

    ch = checkStr.charAt(i);

    for (j = 0;  j < checkOK.length;  j++)

      if (ch == checkOK.charAt(j))

        break;

    if (j == checkOK.length)

    {

      allValid = false;

      break;

    }

    if (ch != ",")

      allNum += ch;

  }

  if (!allValid)

  {

    alert("Please enter only digit characters in the \"Quantity for the DateTime Crossgrade\" field.");

    theform.QuantityDateTimeCrossgrade.focus();

  }



  var chkVal = allNum;

  var prsVal = parseInt(allNum);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -