Feedback form link broken

The Release notes for the Sun App. Server 8, update 1 features several broken links (including that to the Bug Feedback form)
The links are contained here: http://docs.sun.com/source/817-7422/releasenotes.html#wp1024635
The broken links are:
http://java.sun.com/docs/forms/J2EE14SubmittalForm.html
http://archives.java.sun.com/archives/j2ee-interest.html
http://developer.java.sun.com/servlet/SessionServlet?url=/developer/bugParade/index.jshtml

Thanks for the heads up, looks like all three links on the relese notes page are broken. While the links are broken the text that represents the links are correct. Just click on the links in your message and you'll go where you want to go.
Thanks again.

Similar Messages

  • Cannot recover skype account because of of form link broken

    Hi , My skype account was blocked and after i've changed the password and completed the steps regarding the details of my account, skypee sent me a mail for activation inlcuding a link under the word "form" after i click on the link an error message appears that the link is broken

    Hi and welcome to the Skype Community,
    What's the exact error message you see when following this re-activation link? Maybe you can even share a screenshot... That would be very helpful to help you with the right next steps.

  • Help with Dreamweaver CS4 feedback form

    I am trying to get my first feedback form working properly.
    There are two problems:
    1. I can't click in the boxes to enter info. The only way to access them is to tab through.
    2. When I submit, it brings up a second blank feedback page in Safari. In Firefox, it just loops back to the empty feedback page.
    Any help would be appreciated as I running out of hair to pull out.
    Here is the php code:
    <?php /*
    // ------------- CONFIGURABLE SECTION ------------------------
    $mailto = '[email protected]' ;
    $subject = "Feedback Form" ;
    $formurl = "http://www.printit7.com/feedback.html" ;
    $thankyouurl = "http://www.printit7.com/thankyou.html" ;
    $errorurl = "http://www.printit7.com/error.html" ;
    $email_is_required = 1;
    $name_is_required = 1;
    $comments_is_required = 0;
    $uself = 0;
    $forcelf = 0;
    $use_envsender = 0;
    $use_sendmailfrom = 0;
    $smtp_server_win = '' ;
    $use_webmaster_email_for_from = 0;
    $use_utf8 = 1;
    $my_recaptcha_private_key = '' ;
    // -------------------- END OF CONFIGURABLE SECTION ---------------
    define( 'MAX_LINE_LENGTH', 998 );
    $headersep = $uself ? "\n" : "\r\n" ;
    $content_nl = $forcelf ? "\n" : (defined('PHP_EOL') ? PHP_EOL : "\n") ;
    $content_type = $use_utf8 ? 'Content-Type: text/plain; charset="utf-8"' : 'Content-Type: text/plain; charset="iso-8859-1"' ;
    if ($use_sendmailfrom) {
              ini_set( 'sendmail_from', $mailto );
    if (strlen($smtp_server_win)) {
              ini_set( 'SMTP', $smtp_server_win );
    $envsender = "-f$mailto" ;
    $fullname = isset($_POST['fullname']) ? $_POST['fullname'] : $_POST['name'] ;
    $email = $_POST['email'] ;
    $comments = $_POST['comments'] ;
    $http_referrer = getenv( "HTTP_REFERER" );
    if (!isset($_POST['email'])) {
              header( "Location: $formurl" );
              exit ;
    if (($email_is_required && (empty($email) || !preg_match('/@/', $email))) || ($name_is_required && empty($fullname)) || ($comments_is_required && empty($comments))) {
              header( "Location: $errorurl" );
              exit ;
    if ( preg_match( "/[\r\n]/", $fullname ) || preg_match( "/[\r\n]/", $email ) ) {
              header( "Location: $errorurl" );
              exit ;
    if (strlen( $my_recaptcha_private_key )) {
              $resp = recaptcha_check_answer ( $my_recaptcha_private_key, $_SERVER['REMOTE_ADDR'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field'] );
              if (!$resp->is_valid) {
                        header( "Location: $errorurl" );
                        exit ;
    if (empty($email)) {
              $email = $mailto ;
    $fromemail = $use_webmaster_email_for_from ? $mailto : $email ;
    if (function_exists( 'get_magic_quotes_gpc' ) && get_magic_quotes_gpc()) {
              $comments = stripslashes( $comments );
    $messageproper =
              "This message was sent from:" . $content_nl .
              "$http_referrer" . $content_nl .
              "------------------------------------------------------------" . $content_nl .
              "Name of sender: $fullname" . $content_nl .
              "Email of sender: $email" . $content_nl .
              "------------------------- COMMENTS -------------------------" . $content_nl . $content_nl .
              wordwrap( $comments, MAX_LINE_LENGTH, $content_nl, true ) . $content_nl . $content_nl .
              "------------------------------------------------------------" . $content_nl ;
    $headers =
              "From: \"$fullname\" <$fromemail>" . $headersep . "Reply-To: \"$fullname\" <$email>" . $headersep . "X-Mailer: chfeedback.php 2.16.8" .
              $headersep . 'MIME-Version: 1.0' . $headersep . $content_type ;
    if ($use_envsender) {
              mail($mailto, $subject, $messageproper, $headers, $envsender );
    else {
              mail($mailto, $subject, $messageproper, $headers );
    header( "Location: $thankyouurl" );
    exit ;
    ?>
    Here is the form page code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Print It! Quote Form</title>
    <link href="site_styles.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
      var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
          img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
          for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    //-->
    </script>
    <style type="text/css">
    <!--
    p {
              font-size: 135%;
    -->
    </style>
    </head>
    <body onload="MM_preloadImages('images/buttons/home_down.jpg','images/buttons/home_over.jpg','i mages/buttons/about_down.jpg','images/buttons/about_over.jpg','images/buttons/news_down.jp g','images/buttons/news_over.jpg','images/buttons/products_down.jpg','images/buttons/produ cts_over.jpg','images/buttons/contact_down.jpg','images/buttons/contact_over.jpg')">
    <div id="header">
      <div id="logo">
        <div align="center"><img src="images/header.jpg" alt="Welcome to Print It!" width="1024" height="231" border="0" usemap="#Map" />
          <map name="Map" id="Map">
            <area shape="rect" coords="542,125,976,205" href="mailto:[email protected]" alt="Email us!" />
          </map>
        </div>
      </div>
    </div>
    <div id="navigation">
      <div align="center">
        <table width="1024" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr align="center">
            <td><a href="index.html" target="_top" onclick="MM_nbGroup('down','group1','home','images/buttons/home_down.jpg',1)" onmouseover="MM_nbGroup('over','home','images/buttons/home_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/home_up.jpg" alt="Home" name="home" width="144" height="31" border="0" id="home" onload="" /></a></td>
            <td><a href="about.html" target="_top" onclick="MM_nbGroup('down','group1','about','images/buttons/about_down.jpg',1)" onmouseover="MM_nbGroup('over','about','images/buttons/about_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/about_up.jpg" alt="About Print It!" name="about" width="144" height="31" border="0" id="about" onload="" /></a></td>
            <td><a href="news.html" target="_top" onclick="MM_nbGroup('down','group1','news','images/buttons/news_down.jpg',1)" onmouseover="MM_nbGroup('over','news','images/buttons/news_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/news_up.jpg" alt="News" name="news" width="144" height="31" border="0" id="news" onload="" /></a></td>
            <td><a href="products.html" target="_top" onclick="MM_nbGroup('down','group1','products','images/buttons/products_down.jpg',1)" onmouseover="MM_nbGroup('over','products','images/buttons/products_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/products_up.jpg" alt="Products / Services" name="products" width="144" height="31" border="0" id="products" onload="" /></a></td>
            <td><a href="feedback.html" target="_top" onclick="MM_nbGroup('down','group1','contact','images/buttons/contact_down.jpg',1)" onmouseover="MM_nbGroup('over','contact','images/buttons/contact_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/contact_up.jpg" alt="Contact Print It!" name="contact" width="144" height="31" border="0" id="contact" onload="" /></a></td>
          </tr>
        </table>
      </div>
    </div>
    <div id="body-text">
      <h1>Contact us<em></em></h1>
    <p align="center">Call us at the phone number above, email us by clicking on our <br />
      email address above,
      or use this  form to request a quote. </p>
    </div>
    <div id="body-text">
      <form action="feedback.php" method="post" enctype="text/plain" name="form1" target="_blank" class="form_text" id="form1">
        <label>
          <div align="left" class="form_text">
            <p>Name
            <br />
            <input name="name" type="text" id="name" maxlength="50" />
            </p>
            <p>      Company Name <br />
            <input name="company" type="text" id="company" maxlength="50" />
            </p>
            <p>
              <label>Phone Number
                <br />
                <input name="phone" type="text" id="phone" maxlength="50" />
              </label>
            </p>
            <p>
            <label>Email Address
              <br />
              <input name="email" type="text" id="email" maxlength="50" />
            </label>
            </p>
            <p>
            <label>Preferred Response<br />
              <select name="preferred_contact" id="preferred_contact">
                <option>By Email</option>
                <option>By Phone</option>
              </select>
              <br />
              <br />
            </label>
            <strong>PROJECT INFORMATION</strong></p>
            <p>
      <label>Project Name
        <br />
        <input name="project_name" type="text" id="project_name" maxlength="50" />
      </label>
            </p>
            <p>
              <label>Quantities to Quote
                <br />
                <input type="text" name="quantites" id="quantites" />
              </label>
            </p>
            <p>
              <label>Finished Size
                <br />
                <input type="text" name="size" id="size" />
              </label>
            </p>
            <p>
              <label>
                <input type="radio" name="sides" value="one side" id="sides_0" />
              1 Side<br />
              </label>
              <br />
              <label>
                <input type="radio" name="sides" value="two sides" id="sides_1" />
              2 Sides</label>
            </p>
            <p>
              <label>Colors - Side 1
                <br />
                <select name="colors_side1" id="colors_side1">
                  <option value="Black">Black</option>
                  <option value="Spot Color">Spot Color</option>
                  <option value="Black + Spot Color">Black + Spot Color</option>
                  <option value="Full Color">Full Color</option>
                  <option value="Other">Other - Describe Below</option>
                </select>
              </label>         
            </p>
            <p>
              <label>Colors - Side 2<br />
                <select name="colors_side2" id="colors_side2">
                  <option value="Black">Black</option>
                  <option value="Spot Color">Spot Color</option>
                  <option value="Black + Spot Color">Black + Spot Color</option>
                  <option value="Full Color">Full Color</option>
                  <option value="Other">Other - Describe Below</option>
                </select>
              </label>
            </p>
            <p class="form_text">
              <label>Paper Weight
                <br />
                <input name="paper_weight" type="text" id="paper_weight" maxlength="50" />
                <br />
                <br />
                Paper Color
                <br />
                <input name="paper_color" type="text" id="paper_color" maxlength="50" />
                <br />
    <br />
                Paper Type (gloss, plain, carbonless, etc.)
                <br />
                <input name="paper_type" type="text" id="paper_type" maxlength="50" />
                <br />
    <br />
                Bindery Information (folding, perfing, etc.)
                <br />
                <textarea name="bindery" cols="100" rows="5" class="form_text" id="bindery"></textarea>
                <br />
                <br />
                Additional Information <br />
                <textarea name="additional_info" id="additional_info" cols="100" rows="10"></textarea>
                <br />
                <br />
                <input type="submit" name="Submit" id="Submit" value="Send Feedback" />
                <br />
                <br />
              </label>
              <br />
            </p>
          </div>
        </label>
      </form>
    </div>
    </body>
    </html>

    Here is the current code from the feedback page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Print It! Quote Form</title>
    <link href="site_styles.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
      var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
          img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
          for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    //-->
    </script>
    <style type="text/css">
    <!--
    p {
              font-size: 135%;
    -->
    </style>
    </head>
    <body onload="MM_preloadImages('images/buttons/home_down.jpg','images/buttons/home_over.jpg','i mages/buttons/about_down.jpg','images/buttons/about_over.jpg','images/buttons/news_down.jp g','images/buttons/news_over.jpg','images/buttons/products_down.jpg','images/buttons/produ cts_over.jpg','images/buttons/contact_down.jpg','images/buttons/contact_over.jpg')">
    <div id="header">
      <div id="logo">
        <div align="center"><img src="images/header.jpg" alt="Welcome to Print It!" width="1024" height="231" border="0" usemap="#Map" />
          <map name="Map" id="Map">
            <area shape="rect" coords="542,125,976,205" href="mailto:[email protected]" alt="Email us!" />
          </map>
        </div>
      </div>
    </div>
    <div id="navigation">
      <div align="center">
        <table width="1024" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr align="center">
            <td><a href="index.html" target="_top" onclick="MM_nbGroup('down','group1','home','images/buttons/home_down.jpg',1)" onmouseover="MM_nbGroup('over','home','images/buttons/home_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/home_up.jpg" alt="Home" name="home" width="144" height="31" border="0" id="home" onload="" /></a></td>
            <td><a href="about.html" target="_top" onclick="MM_nbGroup('down','group1','about','images/buttons/about_down.jpg',1)" onmouseover="MM_nbGroup('over','about','images/buttons/about_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/about_up.jpg" alt="About Print It!" name="about" width="144" height="31" border="0" id="about" onload="" /></a></td>
            <td><a href="news.html" target="_top" onclick="MM_nbGroup('down','group1','news','images/buttons/news_down.jpg',1)" onmouseover="MM_nbGroup('over','news','images/buttons/news_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/news_up.jpg" alt="News" name="news" width="144" height="31" border="0" id="news" onload="" /></a></td>
            <td><a href="products.html" target="_top" onclick="MM_nbGroup('down','group1','products','images/buttons/products_down.jpg',1)" onmouseover="MM_nbGroup('over','products','images/buttons/products_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/products_up.jpg" alt="Products / Services" name="products" width="144" height="31" border="0" id="products" onload="" /></a></td>
            <td><a href="feedback.html" target="_top" onclick="MM_nbGroup('down','group1','contact','images/buttons/contact_down.jpg',1)" onmouseover="MM_nbGroup('over','contact','images/buttons/contact_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/contact_up.jpg" alt="Contact Print It!" name="contact" width="144" height="31" border="0" id="contact" onload="" /></a></td>
          </tr>
        </table>
      </div>
    </div>
    <div id="body-text">
      <h1>Contact us<em></em></h1>
    <p align="center">Call us at the phone number above, email us by clicking on our <br />
      email address above,
      or use this  form to request a quote. </p>
    </div>
    <div id="body-text">
      <form action="feedback.php" method="post" enctype="text/plain" name="form1" target="_blank" class="form_text" id="form1">
          <div align="left" class="form_text">
            <p>
            <label>Name <br />
            <input name="name" type="text" id="name" maxlength="50" />
            </label>
            </p>
            <p class="form_text">
              <label>Company Name <br />
            <input name="company" type="text" id="company" maxlength="50" />
            </label>
            </p>
            <p class="form_text">
              <label>Phone Number
                <br />
                <input name="phone" type="text" id="phone" maxlength="50" />
              </label>
            </p>
            <p class="form_text">
              <label>Email Address
              <br />
              <input name="email" type="text" id="email" maxlength="50" />
            </label>
            </p>
        <p class="form_text">
              <label>Preferred Response<br />
              <select name="preferred_contact" id="preferred_contact">
                <option>By Email</option>
                <option>By Phone</option>
              </select>
              <br />
              <br />
            </label>
            <strong>PROJECT INFORMATION</strong></p>
            <p class="form_text">
              <label>Project Name
        <br />
        <input name="project_name" type="text" id="project_name" maxlength="50" />
      </label>
            </p>
            <p class="form_text">
              <label>
             Quantities to Quote
                <br />
                <input type="text" name="quantites" id="quantites" />
              </label>
            </p>
            <p class="form_text">
              <label>Finished Size
                <br />
                <input type="text" name="size" id="size" />
              </label>
            </p>
            <p>
              <label>
                <input type="radio" name="sides" value="one side" id="sides_0" />
              1 Side<br />
              </label>
              <br />
              <label>
                <input type="radio" name="sides" value="two sides" id="sides_1" />
              2 Sides</label>
            </p>
            <p class="form_text">
              <label>Colors - Side 1
                <br />
                <select name="colors_side1" id="colors_side1">
                  <option value="Black">Black</option>
                  <option value="Spot Color">Spot Color</option>
                  <option value="Black + Spot Color">Black + Spot Color</option>
                  <option value="Full Color">Full Color</option>
                  <option value="Other">Other - Describe Below</option>
                </select>
              </label>         
            </p>
            <p class="form_text">
              <label>Colors - Side 2<br />
                <select name="colors_side2" id="colors_side2">
                  <option value="Black">Black</option>
                  <option value="Spot Color">Spot Color</option>
                  <option value="Black + Spot Color">Black + Spot Color</option>
                  <option value="Full Color">Full Color</option>
                  <option value="Other">Other - Describe Below</option>
                </select>
              </label>
            </p>
            <p class="form_text">
              <label>Paper Weight
                <br />
                <input name="paper_weight" type="text" id="paper_weight" maxlength="50" />
                </label><br />
               <p class="form_text">
              <label>Paper Color
                <br />
                <input name="paper_color" type="text" id="paper_color" maxlength="50" />
                </label>
                </p>
    <p class="form_text">
              <label>Paper Type (gloss, plain, carbonless, etc.)
                <br />
                <input name="paper_type" type="text" id="paper_type" maxlength="50" />
                </label>
                </p>
                <p class="form_text">
              <label>Bindery Information (folding, perfing, etc.)
                <br />
                <textarea name="bindery" cols="100" rows="5" class="form_text" id="bindery"></textarea>
                </label>
                </p>
                <p class="form_text">
              <label>Additional Information <br />
                <textarea name="additional_info" id="additional_info" cols="100" rows="10"></textarea>
                </label>
                </p>
                <br />
                <input type="submit" name="Submit" id="Submit" value="Send Feedback" />
                <br />
                <br />
              </label>
              <br />
            </p>
          </div>
      </form>
    </div>
    </body>
    </html>

  • I am trying to convert a PDF into a document that can be edited - it's a client feedback form. I am using Adobe forms Central and it's saying that it can't use my document.

    I am trying to convert a PDF into a document that can be edited - it's a client feedback form. I am using Adobe forms Central and it's saying that it can't use my document.

    Hi Michelle ,
    We are extremely sorry that you have had a bad experience with Adobe .
    As far as your issue is concerned ,Acrobat generally prompts for internet connection as it is required to activate the product before you could use it comfortably .Once the product is activated or licensed you would be able to use the software offline .
    This could be the possible reason you are experiencing this .Please check if you have done so and still facing this .And if you have not ,you need to license/activate your product by typing in your credentials ,i.e Adobe ID and password .
    You could also refer the following link to get updated about the activation of your product .
    https://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html#a ctivate-how-to
    Regards
    Sukrit Dhingra

  • Can someone advise me on how to create a feedback form in java??

    hello
    im learning to create a GUI and would like to create a feedback form like the one java website has below
    http://java.sun.com/docs/books/tutorial/forms/sendusmail.html
    could someone advise me or provide any helpful link on how to do that?I just want to learn to do a simple feedback form(just a textbox and a submit button)
    thank you
    tomleo

    That's a Swing tutorial. The idea is you learn Swing, and then use the things you learned about to create the application you want. There is nothing special about a feedback form, it just uses elements common to almost any GUI app.

  • Add a topic name to a feedback form

    Hello.
    I am using RH 10.
    In our help system, I would like to add a feedback link to each topic. When the user clicks the link a feedback from opens. This feedback form should have the name of the topic or the file name (either one) that the user clicked the feedback link on.
    The name can display in a field or be hidden, we just need the information included when the user mails the feedback form.
    I know how to create the form and add the feedback link to the master page.
    A discussion here
    http://forums.adobe.com/message/2238475#2238475
    indicates that the topic or file name could be captured and passed to the feedback form.
    I have seen the grainge article about creating a simple email feedback form ( http://www.grainge.org/pages/snippets/mailto.htm) and it is helpful, but not exactly what I need.
    Has anyone used RH to do this, and if so, how?
    Tbanks for your help.

    Hiya!
     Unfortunately it is only possible to add a signature to an email. You cannot add one to a text message. Sorry
    1). Please thank those who help you by clicking the beside the 'Reply' button.
    2). If your issue has been solved, please resolve it by marking "Accept as Solution" on the correct post!
    3). Remember to have fun! We are all in this together!
    4). Follow me on

  • HT201272 I purchased Season 3 of the Walking Dead.  I cannot download the second episode of the season; corrupted file.  I submitted a feedback form, but they do not send a reply.  I tried to use the online help/support, got an error code for that page.

    I just want my content.  I am frustrated at trying to get on-line help.  Either I will not get a reply to my feedback form, or the online support page has an error code, with "please try again later" or "start over".  I have paid for this content, and cannot download their corrupted file.

    Are you in a country where TV shows can be re-downloaded - if you are then have you tried deleting that copy from your iTunes library and re-downloading it via the Purchased link under Quicklinks on the right-hand side of the iTunes store home page on your computer's iTunes ?
    When you say that you used the feedback page, do you mean the feedback page (which you won't get a reply to) or the 'report a problem' link from your purchase history on your account or the contact iTunes Support page ?
    'report a problem' : log into your account on your computer's iTunes via the Store > View Account menu option and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find that song and use the 'Report a Problem' link and fill in details about the problem (iTunes support should reply within, I think, about 24 hours).
    contact iTunes Support : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption (if this page doesn't work then have you tried clearing your browsers history/cache and/or tried a different browser ?)

  • Feedback form Problem

    Hello Adobe Communities, this is my first time here and I probably will be back here again.
    How do I make my Feedback Form (coding shown below) send an email when the user clicks 'Submit' to '[email protected]'
    Thanks for your help. On a side note if the user clicks 'submit' too many times can you make it so it won't send that email address notifications anymore.
    Note that: I'm using Adobe Dreamweaver CS3
      <p class="style8">Feedback Form</p>
        <form id="form1" name="form1" method="post" action="">
          <label><strong>Suggest Feedback:</strong><br />
          <br />
          <textarea name="textarea" id="textarea" cols="45" rows="5"></textarea>
          </label>
          <p><strong>Rate this site honestly:</strong><br />
    </p>
          <p>
            <label>
            <input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_0" />
    Great</label>
            <br />
            <label>
            <input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_1" />
    Good</label>
            <br />
            <label>
            <input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_2" />
    Average</label>
            <br />
            <label>
            <input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_3" />
    Bad</label>
            <br />
            <label>
            <input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_4" />
    Horrible</label>
            <br />
          </p>
        </form>
        <form id="form2" name="form2" method="post" action="">
          <label>
          <input type="submit" name="Submit" id="Submit" value="Submit" />
          </label>
        </form>
        <h1> </h1>
        <p></p>

    Ok I'm using your code at the moment and I'm having some difficulty - which is probably my own fault as I did not supply you with the whole code initially. Here is the 'complete' code with your coding in bold font, I placed your code slab-bang where my previous feedback form was. I haven't tested this out due to not setting up my webserver at the moment. But anyway here is my problem, for some reason everything doesn't look right. Thanks.
    View image: Error
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <link href="website formatting.css" rel="stylesheet" type="text/css" />
    <!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional comment */
    .thrColFixHdr #sidebar1 { width: 180px; }
    .thrColFixHdr #sidebar2 { width: 190px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .thrColFixHdr #sidebar2, .thrColFixHdr #sidebar1 { padding-top: 30px; }
    .thrColFixHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <style type="text/css">
    <!--
    .style4 {color: #0000FF}
    .style6 {
      color: #000000;
      font-weight: bold;
    .style7 {color: #FFFFFF}
    a:link {
    a:link {
      color: #FF0000;
    #class5 a:link {
      color: #FFFFFF;
    a:link {
      color: #000099;
      text-decoration: none;
    body {
      background-color: #FFFFFF;
    .style8 {
      font-size: xx-large;
      font-weight: bold;
    -->
    </style>
    </head>
    <body class="thrColFixHdr">
    <div id="container">
      <div id="header">
        <h1><img src="Images/expertpcguides current logo.png" alt="Expertpcguides.com" width="557" height="95" /></h1>
      <!-- end #header --></div>
      <div id="sidebar1">
      <h3>Links:</h3>
        <p> Personalizing your PC (6 pages)</p>
        <p>Creating your own website</p>
        <p>Information about Audio Files</p>
        <p>Information about Video Files</p>
        <p><a href="the best pc browser.html">Which internet browser is best?</a></p>
        <p><a href="Adware removal.html">PC Adware Info + Removal</a></p>
        <p><a href="Virus Removal.html">PC Virus info + Removal</a></p>
        <p><a href="recommended Computer Software page 2.html">Recommended computer software</a></p>
        <p><a href="Top 10 Games.html">Best Free Games </a></p>
        <p><a href="Prank your friends.html">Prank your friends!</a></p>
        <p><a href="how to speed up your computer.html">Speeding up your computer</a></p>
        <p><a href="how to speed up your internet speeds.html">Increasing your internet speeds</a></p>
        <p><a href="What to Avoid.html">What to avoid while using the internet</a></p>
        <p>Recommended PC equipment</p>
        <p> </p>
        <p><strong><em>If you have any issues with your PC click the link below:</em></strong></p>
        <p class="style4">Help Me! I have a problem! </p>
      <!-- end #sidebar1 --></div>
    <div id="sidebar2">
        <h3>Latest Updates:</h3>
        <p>12-07-14: Foundations for the website made.</p>
      <!-- end #sidebar2 --></div>
    <?php
    if (isset($_POST['Submit'])) {
    // get feeback
    $textarea = stripslashes(trim($_POST['textarea']));
    // get ratings
    $rating = trim($_POST['RadioGroup1']);
    // get email address
    $email = trim($_POST['email']);
    // build the message
    $to = "[email protected]";
    $subject   = "Comments from website";
    $headers  = "From: $email\r\n";
    $headers .= "Reply-To: $email\r\n";
    $message = "Suggested Feedback: $textarea\n\n";
    $message .= "Rating: $rating\n\n";
    $message .= "Email: $email\n\n";
    mail($to, $subject, $message, $headers);
    $sent = "Mail was sent successfully";
    ?>
    <!DOCTYPE HTML>
    <html>
    <meta charset="UTF-8">
    <title>Website Form</title>
    <body>
    <?phpif(isset($sent)) {
        echo "<h3>$sent</h3>";
        ?>
    <form id="form1" name="form1" method="post" action="feedback.php">
    <label><strong>Suggest Feedback:</strong><br />
    <br />
    <textarea name="textarea" id="textarea" cols="45" rows="5"></textarea>
    </label>
    <p><strong>Rate this site honestly:</strong><br /></p>
    <p>
    <label>
    <input type="radio" name="RadioGroup1" value="Great" id="RadioGroup1_0" />
    Great</label>
    <br />
    <label>
    <input type="radio" name="RadioGroup1" value="Good" id="RadioGroup1_1" />
    Good</label>
    <br />
    <label>
    <input type="radio" name="RadioGroup1" value="Average" id="RadioGroup1_2" />
    Average</label>
    <br />
    <label>
    <input type="radio" name="RadioGroup1" value="Bad" id="RadioGroup1_3" />
    Bad</label>
    <br />
    <label>
    <input type="radio" name="RadioGroup1" value="Horrible" id="RadioGroup1_4" />
    Horrible</label>
    <br />
    <br />
    <label>
    Email Address<br />
    <input type="text" name="email"  id="email" />
    </label>
    </p>
    <p>
    <label>
    <input type="submit" name="Submit" id="Submit" value="Submit" />
    </label>
    </p>
    </form>
    </body>
    </html></label>
    </p>
    </form>
    </body>
    </html>
      <!-- end #mainContent --></div>
      <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --><br class="clearfloat" />
      <div id="footer">
        <div id="class5">
          <p align="center"><span class="style7"><a href="website moderators.html">List of Website Moderators</a></span></p>
        </div>
        <p align="center"><span class="style6 style7"> © 2014 Expertpcguides.com</span>
          <!-- end #footer -->
        </p>
      </div>
    <!-- end #container --></div>
    </body>
    </html>

  • Feedback form not working.

    I am trying to do a simple feedback form to send an email to me when a button is pressed. I get an email, but all of the contents are blank. anyone might know the issue here?
    http://www.testmeserver.site90.net/feedback.html
    Here is my php Code
    <?php
    $msg = "Name:$namen";
    $msg .= "Email:$emailn";
    $msg .= "Comments:$commentsn";
    $recipient = "[email protected]";
    $subject = "$subject";
    $mailheaders = "From: $email";
    $mailheaders .= "Reply-To: $email";
    mail($recipient, $subject, $msg, $mailheaders);
    header("Location: http://www.testmeserver.site90.net/thankyou.html");
    ?>

    This is the code to which the form is being submitted?
    Can we see the form?
    The problem is that there is nothing in this code that relates to any POSTed data from the form.  You are using some PHP variables ($namen, $emailn, etc.) but there is no link between those variables and the form.  You would need to have something like this -
    $namen = $_POST['namen']; // where "namen" is the name of the field in the form
    $emailn = $_POST['emailn'];
    $subject = $_POST['subject'];
    and so on....
    This would then bind the posted data to the PHP variables.

  • Feedback Form problems.

    I made a feedback form in my contact page, upload everything
    is fine. But when i typw my name, email , the message, and press
    the button SEND FEEDBACK, instead of going to my thank you page, it
    goes to 500 Server Error.
    My host has php, etc...
    I dont know if i have to do something in the server or ,
    really i dont know what to do.
    The tutorial i read about how to make a feedback form didnt
    say anything else.
    Sure, i need a step by step explanation, please.....
    Thanks.

    Do you actually *get* the email at this address -
    '[email protected]'?
    Is this form processor script actually located where you say
    it is?
    http://www.klaybervarela.com/feedback.php
    The header on the error page says this -
    HTTP/1.1 500 Internal Server Error
    Do you have access to the sendmail program on the server?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Klayber" <[email protected]> wrote in
    message
    news:[email protected]...
    > <?php
    > /*
    > CHFEEDBACK.PHP Feedback Form PHP Script Ver 2.08
    > Generated by thesitewizard.com's Feedback Form Wizard.
    > Copyright 2000-2007 by Christopher Heng. All rights
    reserved.
    > thesitewizard and thefreecountry are trademarks of
    Christopher Heng.
    >
    > Get the latest version, free, from:
    >
    http://www.thesitewizard.com/wizards/feedbackform.shtml
    >
    > You can read the Frequently Asked Questions (FAQ) at:
    >
    http://www.thesitewizard.com/wizards/faq.shtml
    >
    > I can be contacted at:
    >
    http://www.thesitewizard.com/feedback.php
    > Note that I do not normally respond to questions that
    have
    > already been answered in the FAQ, so *please* read the
    FAQ.
    >
    > LICENCE TERMS
    >
    > 1. You may use this script on your website, with or
    > without modifications, free of charge.
    >
    > 2. You may NOT distribute or republish this script,
    > whether modified or not. The script can only be
    > distributed by the author, Christopher Heng.
    >
    > 3. THE SCRIPT AND ITS DOCUMENTATION ARE PROVIDED
    > "AS IS", WITHOUT WARRANTY OF ANY KIND, NOT EVEN THE
    > IMPLIED WARRANTY OF MECHANTABILITY OR FITNESS FOR A
    > PARTICULAR PURPOSE. YOU AGREE TO BEAR ALL RISKS AND
    > LIABILITIES ARISING FROM THE USE OF THE SCRIPT,
    > ITS DOCUMENTATION AND THE INFORMATION PROVIDED BY THE
    > SCRIPTS AND THE DOCUMENTATION.
    >
    > If you cannot agree to any of the above conditions, you
    > may not use the script.
    >
    > Although it is not required, I would be most grateful
    > if you could also link to thesitewizard.com at:
    >
    >
    http://www.thesitewizard.com/
    >
    > */
    >
    > // ------------- CONFIGURABLE SECTION
    >
    > // $mailto - set to the email address you want the form
    > // sent to, eg
    > //$mailto = "[email protected]" ;
    >
    > $mailto = '[email protected]' ;
    >
    > // $subject - set to the Subject line of the email, eg
    > //$subject = "Feedback Form" ;
    >
    > $subject = "Feedback Form" ;
    >
    > // the pages to be displayed, eg
    > //$formurl = "
    http://www.example.com/feedback.html"
    > //$errorurl = "
    http://www.example.com/error.html"
    > //$thankyouurl = "
    http://www.example.com/thankyou.html"
    >
    > $formurl = "
    http://www.klaybervarela.com/feedback.html"
    > $errorurl = "
    http://www.klaybervarela.com/error.html"
    > $thankyouurl = "
    http://www.klaybervarela.com/thankyou.html"
    >
    > $uself = 1;
    >
    > // -------------------- END OF CONFIGURABLE SECTION
    >
    > $headersep = (!isset( $uself ) || ($uself == 0)) ?
    "\r\n" : "\n" ;
    > $name = $_POST['name'] ;
    > $email = $_POST['email'] ;
    > $comments = $_POST['comments'] ;
    > $http_referrer = getenv( "HTTP_REFERER" );
    >
    > if (!isset($_POST['email'])) {
    > header( "Location: $formurl" );
    > exit ;
    > }
    > if (empty($name) || empty($email) || empty($comments)) {
    > header( "Location: $errorurl" );
    > exit ;
    > }
    > if ( ereg( "[\r\n]", $name ) || ereg( "[\r\n]", $email )
    > header( "Location: $errorurl" );
    > exit ;
    > }
    >
    > if (get_magic_quotes_gpc()) {
    > $comments = stripslashes( $comments );
    > }
    >
    > $messageproper =
    >
    > "This message was sent from:\n" .
    > "$http_referrer\n" .
    >
    "------------------------------------------------------------\n" .
    > "Name of sender: $name\n" .
    > "Email of sender: $email\n" .
    > "------------------------- COMMENTS
    -------------------------\n\n" .
    > $comments .
    >
    "\n\n------------------------------------------------------------\n"
    >
    > mail($mailto, $subject, $messageproper,
    > "From: \"$name\" <$email>" . $headersep .
    "Reply-To: \"$name\" <$email>"
    > .
    > $headersep . "X-Mailer: chfeedback.php 2.08" );
    > header( "Location: $thankyouurl" );
    > exit ;
    >
    > ?>
    >
    >

  • Feedback Form for SAP NetWeaver Gateway development tools

    Hi all, if you wish to send your feedback (bug, new feature, and general feedback) to SAP NetWeaver Gateway development tools u2013 Xcode, Visual Studio, Blackberry, Search console, please use the attached feedback forms:
    For Xcode and Visual Studio tools please use Feedback form XC&VS.rtf
    For Eclipse, Blackberry and Search console please use Feedback form BB&SC.rtf

    Hi Michal,
      While installing the Netweaver gateway plugin for eclipse Juno version through the following link
    https://tools.hana.ondemand.com/juno   under Help -> Install New Software... I have encountered below error.
    Can you please help me in resolving it.
    An error occurred while collecting items to be installed
    session context was:(profile=epp.package.jee, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=).
    Unknown Host: https://tools.hana.ondemand.com/juno/features/com.sap.core.editor.feature_1.0.6.jar
    tools.hana.ondemand.com
    Many thanks in advance.
    Regards,
    Parthi

  • How To: Install a Client Agent link broken

    I wanted to know if there was a new version of the agent and found the link broken
    [Quote]
    When you select an agent from the table of sync groups and sync agents on the SQL Data Sync landing page, you go to the sync agent page.
    SQL Data Sync Client Agent
    When you select a client agent from the SQL Data Sync landing page, three buttons appear at the bottom of the page.
    REFRESH
    MANAGE KEY
    Create a new agent key. After you create an agent key, launch the agent and submit the new key value.
    DELETE
    Delete the selected client agent.
    For more information on Client Agents, see the topics
    How To: Install a Client Agent,
    How To: Register a SQL Server database with a Client Agent, and
    How To: Change an Agent's Key on MSDN.
    [/Quote]
    I keep getting redirected to http://www.microsoft.com/fr-fr/default.aspx

    Hi,
    Thank you for the feedback. I will have the relevant team notified.
    You can have a check on the below link for SQL Data Sync (Preview) Client Agent.
    http://msdn.microsoft.com/en-us/library/azure/jj823137.aspx
    Regards,
    Mekh.

  • Feedback forms to be developed for services: Performance development

    Hi Experts,
    There is a requirement for creating a feedback forms for services (say A, B, C, D...J). These forms/template will have few questions and would be more like surveys.
    These feedback will be given by only few users.
    Can you please suggest/direct me on how to proceed with this requirement?
    Is there any standard feedback form template available which can be modified for this purpose?
    Many thanks for your help
    Best Regards,
    Kanika

    Hi Ram,
    NACE is the Tcode used to link the Application type, Output Types and its processing Routines like ( Driver programs and attached Script forms or Smartforms).
    You should know the Application of a document first Like:
    for PO it is EF, for sales Doc's it is V1, for Delivery docs it is V2, for billing Doc's it is V3 etc.
    so first select the Application type (ex: EF) for PO and press OUtput types
    then a list will come in that you should know the related output type for PO.
    in this case it is NEU,
    select that and click on the processing Routines button on the lft side
    it will display the Medium, Driver Program and the Script form or smartform related to that document..
    Check thses sites...
    for Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    Check these step-by-step links
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/ccab6730-0501-0010-ee84-de050a6cc287
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/3c5d9ae3-0501-0010-0090-bdfb2d458985
    Reward points if it is helpful..
    Regards,
    Omkar.

  • HTML Snippet for FEEDBACK FORM does not work the way I expected

    Hello folks,
    I have used following code as a Snippet to create a FEEDBACK FORM, so people can send their comments. I was hoping that when people write their comments and click Send, the comment will be sent directly to my e-mail. Instead, after clicking Send button, the Mail Manager pops up. So it is pretty much the same as if they click on the e-mail address link. Is this normal? I thought, that these comments will be sent directly via that FEEDBACK FORM, not via Mail Manager.
    Thank you so much for any tip or response.
    This is the Snippet Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN">
    <html>
    <head>
    <title>form</title>
    </head>
    <body>
    <FORM METHOD="POST" ACTION="mailto:[email protected]?subject=Please email me with your feedback"ENCTYPE="text/plain">
    Please enter your name
    <INPUT TYPE="text" NAME="name" SIZE="30">
    Please enter your email address
    <INPUT TYPE="text" Name="usermail" size="50">
    Add any comments below
    <TEXTAREA NAME="comment" ROWS=6 COLS=60></TEXTAREA>
    Clicking "Send it" will launch your mail application
    <INPUT TYPE=submit VALUE="Send it!">
    <INPUT TYPE=reset VALUE="Reset Form">
    </FORM>
    </body>
    </html>

    The action is usually a php file.
    Otherwise, simply create a button and make it a mail link in the Inspector.
    If you cannot figure this out, you'd better refrain from using it.
    Or start learning how to use forms.

  • Feeback Form link

    Good morning,
    I created a feedback form and saw the link come up at the top of each page. I had some problems with the form so I deleted it and recreated it.
    Now I have 2 links at the top of each of the forms in my application *(Welcome: UserName Logout Feedback Feedback)* and don't know how to remove one or even where to look to find the code for it.
    I would appreciate any assistance that can be provided
    Thanks in advance

    Hello!
    I can't provide you exactly where to look for it as I don't have any access to a workspace at this moment.
    I think it is defined into a List ( navigation bar entry ). You can remove it there.
    Regards,
    Arnaud

Maybe you are looking for

  • HP DV -6 1161 tx 16inch support no longer available

    Hi All,           Im using the HP DV6 1161 tx model purchased in 2009. I updated the OS to wndows 7 home premium. Now my bluetooth and webcam dont seem to work. Also my device manager shows the following : The Hp Website no longer supports my model f

  • How do I install Photoshop CS6 on a second computer?

    How do I install Photoshop CS6 on a second computer? I got the serial number etc. but with the new Photoshop CC and the Cloud I cannot download a Trial Version of Photoshop CS6! What shall I do?

  • IWeb page loads half white, please help!

    Hello everyone, I have a very annoying problem. I have the background on my iWeb page set to black, but nine times out of ten when I visit it online, the bottom part of the page loads white. I refresh and I refresh and it keeps doing it, then eventua

  • Format mask display ### while querying..

    hi, i have a field which stores the following format 12-1234-123, to get the format i am using FMXX"-"XXXX"-"XXX, the length of the column is 11, after the data is entered when i query the info. the value in the form is displayed as ######...what cou

  • Where should I put the DB?

    I have been working on a local instance of RoboHelp - copying files to my laptop to work on them, then uploading to the server for someone else to download and work with. Now finally have a server environmen set up and was able to successfully connec