Email form shows code

Hello,
I was wondering if I could get some help with a issue on my
flash site.
www.tiszawine.com.
In the "contact" section of this site is a contact form. In
the form its self you will see this code.
Name
_level0.gates.pages.instance104.form.name
Email
_level0.gates.pages.instance104.form.email
and Message
_level0.gates.pages.instance104.form.message
I can not figure out how to remove or hide this code. Could
anyone help.
I would like for the boxes to be black so someone can fill
the form out.
Thank you,
David

Hello Aniebel,
Here is what I have in the AS window.
onClipEvent(data){
// show welcome screen
_root.nextFrame();
The send button has this
on (release) {
form.loadVariables("email.php", "POST");
So what do you think?

Similar Messages

  • Email form - new field

    Hi Gurus!
    Is it possible and if so how to add new object/attribute or just new field in email form (t-code CRMD_EMAIL) ?
    Regards
    Piotr

    Hi Piotr,
    You must create a structure in SE11 t-code, and assign it to a new scenario (for example) in the path indicated by Dipesh.
    Then, on your email form, choose the scenario you created for it. It will make available the fields that you add in your structure to your email form. Drag it to desired position in e-mail form.
    Then, to fill those values, you are right. You must implement CRM_IM_ADD_DATA_BADI and method CRM_IM_BPSELE.
    There, the fields that you dragged into your email form will became available at changing parameter ct_att_values.
    All you have to do is to fill each line of that internal table by looping them, according your logic. Something like this:
          LOOP AT ct_att_values ASSIGNING <line>.
            CASE <line>-name.
              WHEN 'ZCRMST_EMAIL_FORMS-USER_ID.
                <line>-value = sy-uname.
              WHEN 'ZCRMST_EMAIL_FORMS-OTHER_FIELD.
                <line>-value = lv_other_field.
            ENDCASE.
          ENDLOOP.
    Hope that this helps you going a little further.
    Kind regards,

  • I have an iPad 1.  I filled out a PDF questionaire in adobe reader. When I send it to Dropbox, iBooks,mercury browser the form shows up without the answers .  My objective is to email the completed form. Please advise as to how to do thisThanks. Big Jake

    I have an iPad 1.  I filled out a PDF questionaire in adobe reader. When I send it to Dropbox, iBooks,mercury browser the form shows up without the answers .  My objective is to email the completed form. Please advise as to how to do thisThanks.
    Big Jake

    If the PDF is a form fillable PDF, which I assume that it is, email it to yourself or send it to DropBox and open it on your computer. You should see the fields filled in there. It works for me if I do it that way.
    Adobe Reader supports it, but the other apps don't. I assume that if you email the PDF to a computer user it would be readable in Adode Reader.

  • Help! My form which requires email and zip code is arriving without data. How is that possible?

    An HTML form design with Dreamweaver CS5 requires the zip code and email to be entered prior to Submitting the form. We tested the form prior to going live and it worked great. The Zip Code and Email are required entries. Today, we received our first completed form from a customer and it worked and looked great. The problem is ... we have also received two forms that are blank. No data results at all; no email or zip code either. I don't know how this can be. The form cannot Submit unless the email and zip code are present.
    Suggestions?
    This is the webpage that has the form (scroll toward the bottom to view it).
    http://www.catchaghostparanormalequipment.com/paranormaltriggerprops.html

    The PHP code is:
    <?php
    //--------------------------Set these paramaters--------------------------
    // Subject of email sent to you.
    $subject = 'Trigger Prop Contact Form';
    // Your email address. This is where the form information will be sent.
    $emailadd = '[email protected]';
    // Where to redirect after form is processed.
    $url = 'http://www.catchaghostparanormalequipment.com/confirmation.html';
    // Makes all fields required. If set to '1' no field can not be empty. If set to '0' any or all fields can be empty.
    $req = '0';
    // --------------------------Do not edit below this line--------------------------
    $text = "Results from form:\n\n";
    $space = ' ';
    $line = '';
    foreach ($_POST as $key => $value)
    if ($req == '1')
    if ($value == '')
    {echo "$key is empty";die;}
    $j = strlen($key);
    if ($j >= 40)
    {echo "Name of form element $key cannot be longer than 40 characters";die;}
    $j = 40 - $j;
    for ($i = 1; $i <= $j; $i++)
    {$space .= ' ';}
    $value = str_replace('\n', "$line", $value);
    $conc = "{$key}:$space{$value}$line";
    $text .= $conc;
    $space = ' ';
    mail($emailadd, $subject, $text, 'From: '.$emailadd.'');
    echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
    ?>
    The form code is:
    <form action="result.php" method="post" name="Trigger Prop Form" id="Trigger Prop Form">
          <p><strong>Trigger Prop Quote/Information Request Form</strong></p>
      <p><span class="welcomesmaller">Trigger props can be sold with or without accessories. You can select more than one item. </span></p>
      <p><span class="props" id="sprycheckbox13">
        <input type="checkbox" name="Antique Style Tin Train Engine" id="Antique Style Tin Train Engine" />
        <label for="Antique Style Tin Train Engine">Antique Style Tin Train Engine</label>
    </span></p>
      <p><span class="props" id="sprycheckbox14">
        <input type="checkbox" name="Tin Merry-Go-Round" id="Tin Merry-Go-Round" />
        <label for="Tin Merry-Go-Round">Antique Style Tin Merry-Go-Round</label>
    </span></p>
      <p><span class="props" id="sprycheckbox15">
        <input type="checkbox" name="Period Lantern" id="Period Lantern" />
        <label for="Period Lantern">Period Lantern</label>
    </span></p>
      <p><span class="props" id="sprycheckbox16">
        <input type="checkbox" name="Bisque Head China Dolls" id="Bisque Head China Dolls" />
        <label for="Bisque Head China Dolls">Bisque Head China Dolls (Variety Similar to Photos)</label>
    </span></p>
      <p><span class="props" id="sprycheckbox17">
        <input type="checkbox" name="Grungy Primitive Rag Doll" id="Grungy Primitive Rag Doll" />
        <label for="Grungy Primitive Rag Doll">Grungy Primitive Rag Doll</label>
    </span></p>
      <p><span class="props" id="sprycheckbox18">
        <input type="checkbox" name="Pocket Watch" id="Pocket Watch" />
        <label for="Pocket Watch">Pocket Watch with Chain</label>
    </span></p>
      <p><span id="sprycheckbox1">
        <input type="checkbox" name="Pirate Gold Coins" id="Pirate Gold Coins" />
        <label for="Pirate Gold Coins" class="props">Pirate Gold Coins</label>
    </span>  </p>
      <p><span class="props" id="sprycheckbox2">
        <input type="checkbox" name="Indian Artifacts with Rabbit Hide" id="Indian Artifacts with Rabbit Hide" />
        <label for="Indian Artifacts with Rabbit Hide">Indian Artifacts with Rabbit Hide</label>
      </span></p>
      <p><span class="props" id="sprycheckbox7">
        <input type="checkbox" name="Prop Pirate Gun" id="Prop Pirate Gun" />
        <label for="Prop Pirate Gun">Prop Pirate Gun</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox4">
        <input type="checkbox" name="Prop Pirate Sword" id="Prop Pirate Sword" />
        <label for="Prop Pirate Sword">Prop Pirate Sword</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox5">
        <input type="checkbox" name="Civil War Medals" id="Civil War Medals" />
        <label for="Civil War Medals">Civil War Medals</label>
    </span></p>
      <p class="props"><span id="sprycheckbox3">
        <input type="checkbox" name="West Lantern" id="West Lantern" />
        <label for="Western Style Lantern">Western Style Lantern</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox8">
        <input type="checkbox" name="Small Teddy Bear in Basket" id="Small Teddy Bear in Basket" />
        <label for="Small Teddy Bear in Basket">6" Small Teddy Bear in Basket</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox9">
        <input type="checkbox" name="Small Rag Doll in Basket" id="Small Rag Doll in Basket" />
        <label for="Small Rag Doll in Basket">6" Small Rag Doll in Basket</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox10">
        <input type="checkbox" name="Large Primitive Rag Doll in Basket" id="Large Primitive Rag Doll in Basket" />
        <label for="Large Primitive Rag Doll in Basket">Large Primitive Rag Doll in Basket</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox11">
        <input type="checkbox" name="Knitting Basket with Needles" id="Knitting Basket with Needles" />
        <label for="Knitting Basket with Needles">Knitting Basket with Knitting Needles</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox12">
        <input type="checkbox" name="Metal Needle Point Loom Doile" id="Metal Needle Point Loom Doile" />
        <label for="Metal Needle Point Loom Doile">Metal Needle Point Loom with Antique Doile</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox19">
        <input type="checkbox" name="Accessories" id="Accessories" />
        <label for="Accessories">Accessories (Chairs, Wagons, Buggy, Sleds, etc.)</label>
    </span></p>
      <p class="props"><span id="sprytextarea1">
        <label for="Custom Request">Custom Request, Questions, and/or Comments</label>
        <textarea name="Custom Request" id="Custom Request" cols="45" rows="5"></textarea>
    </span></p>
      <p class="props"><span id="sprytextfield2">
      <label for="Email Contact">Email Contact</label>
      <input type="text" name="Email Contact" id="Email Contact" />
      <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Invalid format.</span></span></p>
      <p class="props"><span id="sprytextfield3">
      <label for="Shipping Zip Code">Shipping Zip Code for Quote</label>
      <input type="text" name="Shipping Zip Code" id="Shipping Zip Code" />
      <span class="textfieldInvalidFormatMsg">Invalid format.</span><span class="textfieldRequiredMsg">A value is required.</span></span></p>
      <p>
        <input name="submit2" type="submit" id="submit" value="Submit" />
          <input type="reset" name="Reset" id="Reset" value="Reset Form" />
      </p>
      <p>  </p>
        </form>

  • Many of my my emails are only showing code in the text. Same email at home reads fine

    Many of my my emails are only showing code in the text.  Same email at home reads fine

    Martin,you should take a look here:
    https://talk.sonymobile.com/t5/Xperia-M2-M2-dual-M2-Aqua/Email-app-display-problems/td-p/947681/page...
    All we have to decide is what to do with the time that is given to us - J.R.R. Tolkien

  • Creating an email form in iweb

    Hello,
    I would like to create an email form in one of my websites, the type in which you ask a question and sends you an email directly to your email address without having to open mail.
    How do I go about it?
    Thank you
    Message was edited by: Allanfrance

    Hello
    I checked the services other members posted. All looks cool, but I would recommend you if you are interested to create this form yourself.
    My idea is to create a predesigned form, converted to your needs and post it on the web then use simply an iframe to display at your iweb.
    1-download trial Rapid Weaver.
    create a contact form and publish to a folder.
    open it in dream weaver. delete everything you don't need. -Side bars etc.
    and save it.
    2- upload contact folder on your site
    3-IWEB
    open iweb widgets
    copy and paste following code
    <IFRAME SRC = "*<a class="jive-link-external-small" href="http://www.YOURSITE/Contact/index.php">http://www.YOURSITE/Contact/index.php" WIDTH="460px" HEIGHT="405px" FRAMEBORDER="0" --if "0" no border, otherwise "1" with border MARGINWIDTH ="0px" MARGINHEIGHT="0px" SCROLLING="no" --"no" no scrolling bar, "yes" show always, "auto" showed when need > Your browser does not support IFRAME </IFRAME>
    Change bold, and enhance width and height.
    it is very simple, fast you can be done in 10 minutes. advantage is that you don't have to pay for any services.
    It is not the best solution, but next version of Iweb should have more enhancements like this
    Regards
    MIKE

  • Email Form Troubles

    Hi folks,
    Happy Thursday!
    A client recently sent me an email she received from her
    online form (code below). It reads:
    I wish I could have chosen the \"I\'d like you to write for
    my publication\" subject. But, I\'m just here to let you know your
    website is outstanding and beautiful... peaceful and curious at the
    same time. I think it\'s the cool colors and the intricate image
    that make me feel that way. I read several of your architect
    articles. You\'re very talented.
    When I contacted GoDaddy about it, as I'd never seen that
    before, they said:
    "Unfortunately looking into the file it seems there is a
    scripting error with your form. We are unable to assist customers
    with scripting issues."
    I went to my normal I-cant-figure-this-out code guy, and he
    tinkered with some things but to no avail. I also contacted another
    client to see if they had the same issue, and they do. If the issue
    is with my form, would someone please explain what I'm
    missing/doing wrong? I'd be greatly appreciative. Many thanks.
    =========================

    Hi,
    Can you please show me your .php page? What you need to do is
    find the place
    where you're writing the fields into the e-mail, and add:
    stripslashes()
    around those values.
    HTH, take care,
    Shane H
    [email protected]
    http://www.avenuedesigners.com
    =============================================
    Back for 2007, close-up magic:
    http://deceptivemagic.com
    Web dev articles, photography, and more:
    http://sourtea.com
    =============================================
    Proud GAWDS member
    http://www.gawds.org/showmember.php?memberid=1495
    Delivering accessible websites to all ...
    =============================================
    "Jim Nee" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi folks,
    >
    > Happy Thursday!
    >
    > A client recently sent me an email she received from her
    online form (code
    > below). It reads:
    > -----
    > I wish I could have chosen the \"I\'d like you to write
    for my
    > publication\"
    > subject. But, I\'m just here to let you know your
    website is outstanding
    > and
    > beautiful... peaceful and curious at the same time. I
    think it\'s the
    > cool
    > colors and the intricate image that make me feel that
    way. I read several
    > of
    > your architect articles. You\'re very talented.
    > -----
    >
    > When I contacted GoDaddy about it, as I'd never seen
    that before, they
    > said:
    > -----
    > "Unfortunately looking into the file it seems there is a
    scripting error
    > with
    > your form. We are unable to assist customers with
    scripting issues."
    > -----
    >
    > I went to my normal I-cant-figure-this-out code guy, and
    he tinkered with
    > some
    > things but to no avail. I also contacted another client
    to see if they had
    > the
    > same issue, and they do. If the issue is with my form,
    would someone
    > please
    > explain what I'm missing/doing wrong? I'd be greatly
    appreciative. Many
    > thanks.
    >
    > =========================
    >
    >
    > <form id="contact2" name="contact" method="post"
    action="../gdform.php">
    > <input type="hidden" name="redirect"
    value="contact/thankyou/" />
    > <table width="453" height="300" border="0"
    cellpadding="0"
    > cellspacing="5" summary="use this form to email Emily
    Lowe.">
    > <caption>
    > <strong>Email Form</strong>
    > </caption>
    > <tr>
    > <td width="130" height="20" align="right"
    valign="top"><div
    > class="contactSplash">
    > <label for="name"> your name: </label>
    > </div></td>
    > <td width="308" height="20" align="left"
    valign="top"><input
    > name="name" type="text" id="name" size="20"
    maxlength="60" />
    > </td>
    > </tr>
    > <tr>
    > <td width="130" height="20" align="right"
    valign="top"><div
    > class="contactSplash">
    > <label for="email"> your email: </label>
    > </div></td>
    > <td width="308" height="20" align="left"
    valign="top"><input
    > name="email" type="text" id="email" size="25"
    maxlength="60" /></td>
    > </tr>
    > <tr>
    > <td width="130" height="20" align="right"
    valign="top"><div
    > class="contactSplash">
    > <label for="subject"> subject: </label>
    > </div></td>
    > <td width="308" height="20" align="left"
    valign="top"><select
    > name="SUBJECT">
    > <option selected="selected">Please choose a
    > subject:</option>
    > <option>I'd like you to write for my
    publication.</option>
    > <option>I'd like to reprint something you've
    > written.</option>
    > <option>I have a general question about your
    > work.</option>
    > <option>I'm having trouble with this
    site.</option>
    > </select>
    > </td>
    > </tr>
    > <tr>
    > <td width="130" height="204" align="right"
    valign="top"><div
    > class="contactSplash">
    > <label for="message"> your message: </label>
    > </div></td>
    > <td width="308" align="left"
    valign="top"><textarea
    > name="message"
    > cols="35" rows="10" id="message"></textarea>
    > <input class="button" name="submit" type="submit"
    > id="redirect"
    > value="send email" />
    > <input class="button" name="reset" type="reset"
    id="reset"
    > value="reset form" /></td>
    > </tr>
    > </table>
    > </form>
    >

  • Email Form Not Collecting Data

    I have an email form on my index page. The form is not
    collecting data. Any suggestions?
    Here's the 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>Home Page</title>
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: medium;
    body {
    background-color: #FF0099;
    a {
    font-size: 90%;
    color: #33FFCC;
    a:link {
    text-decoration: none;
    -->
    </style>
    <link href="/css/layout.css" rel="stylesheet"
    type="text/css" />
    </head>
    <body>
    <div id="container">
    <div id="top">
    <p><!--content for ID top goes here
    --></p>
    <p> </p>
    <p>Rocking Horse Video</p>
    </div>
    <div id="nav">
    <ul>
    <li><a
    href="/pages/index.html">Home</a></li>
    <li><a
    href="/pages/pricing.html">Pricing</a></li>
    <li><a href="/pages/SEHJ 8-08.html">Browse Your
    Rides</a></li>
    <li><a href="/pages/To Order.html">To
    Order</a></li>
    <li><a href="
    http://shop.rockinghorsevideo.com">Shopping
    Cart</a></li>
    </ul>
    <!--content for nav div goes here -->
    </div>
    <!--content for container goes here -->
    <div id="main">
    <div id="story">
    <h1 class="style1">Rocking Horse Video</h1>
    <h2 class="style2">High-Definition DVDs</h2>
    <h4><img src="/images/Rocking Horse Video.jpg"
    width="100" height="70" class="image-left" />How was your last
    “Horse Shows In The Park?”  Wasn’t it
    fabulous?  Wasn’t it a total blast?  How was your
    horse over the jumps?  Weren’t those little girls with
    their pigtails and ponies adorable?  (Well, I guess they were
    cute when they weren’t beating you.)  Did you take home
    something (besides all those ribbons)  that truly captured the
    magic of that weekend , something that was yours to keep
    forever?</h4>
    That’s what Rocking Horse Video is all about. 
    Rocking Horse Video creates high-definition DVDs of you and your
    horse that you can enjoy for years to come.  Check out those
    rides.  Feel the exciting ambience of the show every time you
    watch your DVD.  These DVDs are more than a two minute ride to
    classical music.  Rocking Horse Video edits raw footage with
    state-of-the-art software to high-light your horse’s
    performance and reproduce more than a ride.   Every time
    you watch you get to experience the whole horse show all over
    again.
    <h2>Critique Your Rides</h2>
    <p>Rocking Horse Video gives you high-definition DVDs
    that entertain, educate, and sell.  See you and your horse in
    action and make your next horse show an even better one.  (You
    just have to beat those ponies next time.)  This is an
    affordable way to improve your performance for competitions to
    come.   Go over the video with your trainer and get
    double the benefit.</p>
    <h2>Sell Your Horse</h2>
    <p>Order a marketing video to show prospective buyers
    hands down how well your horse performs in the show ring.</p>
    <!--content for story div goes here --></div>
    <!--content for div main goes here -->
    <div id="sidebar"><h2><img src="/images/L'il
    Mite and Peanutbutter.jpg" width="150" height="113"
    class="image-left" />Capture Your Precious Memories</h2>
    Get a DVD at every show.
    <h5 align="left"><span
    class="style2"> Contact Rocking Horse
    Video</span><img src="/images/Rocking Horse Video.jpg"
    width="100" height="70" class="image-right" /></h5>
    <p>By Email: <a href="mailto:[email protected]"
    class="style3">[email protected]</a><a
    href="mailto:[email protected]"></a><br />
    By Phone: (352)281-0322<br />
    By Mail: Rocking Horse Video<br />
    6714 NW 34th Drive Gainesville, FL 32653</p>
    <p>
    <!-- End Sign-Up Form -->
    <!-- End Sign-Up Form -->
    </p>
    <form action="gdform.asp" method="post"
    enctype="text/plain" name="email" id="email">
    <p>Would you like to subscribe to our email list so
    you can be notified of upcoming events?
    yes
    <input type="radio" name="subscribe" id="radio"
    value="radio" />
    no
    <input type="radio" name="subscribe" id="radio2"
    value="radio2" />
    </p>
    <p>email address:
    <input name="email address" type="text" id="email
    address" size="40" />
    </p>
    <p>
    <input type="submit" name="button" id="button"
    value="Subscribe" />
    <input name="recipient" type="hidden" id="recipient"
    value="[email protected]" />
    </p>
    </form>
    </div>
    </div>
    </div><!--end container div -->
    </body>
    </html>
    Thanks!
    Kate

    > <h4><img src="/images/Rocking Horse Video.jpg"
    width="100" height="70"
    > class="image-left" />How was your last ?Horse Shows
    In The Park??? Wasn?t
    > it
    > fabulous?? Wasn?t it a total blast?? How was your horse
    over the jumps??
    > Weren?t those little girls with their pigtails and
    ponies adorable??
    > (Well, I
    > guess they were cute when they weren?t beating you.)?
    Did you take home
    > something (besides all those ribbons) ?that truly
    captured the magic of
    > that
    > weekend , something that was yours to keep
    forever?</h4>
    That's a big chunk of <h4>!
    > That?s what Rocking Horse Video is all about.? Rocking
    Horse Video
    > creates
    > high-definition DVDs of you and your horse that you can
    enjoy for years
    > to
    > come.? Check out those rides.? Feel the exciting
    ambience of the show
    > every
    > time you watch your DVD.? These DVDs are more than a two
    minute ride to
    > classical music.? Rocking Horse Video edits raw footage
    with
    > state-of-the-art
    > software to high-light your horse?s performance and
    reproduce more than a
    > ride.?? Every time you watch you get to experience the
    whole horse show
    > all
    > over again.
    That's a big chunk of nothing. You cannot have bare text like
    that on a
    page. It would have to be within a <p> tag, or
    something.
    > <form action="gdform.asp" method="post"
    enctype="text/plain"
    > name="email"
    > id="email">
    You are sending your form to a file called "gdform.asp" that
    is at the same
    folder level as this file. Is that file *there*?
    (it has nothing to do with a scripts folder)
    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
    ==================
    "dreamer spiderwoman1" <[email protected]>
    wrote in message
    news:[email protected]...
    >I have an email form on my index page. The form is not
    collecting data.
    >Any
    > suggestions?
    >
    > Here's the code:
    >
    ...snip...
    >
    > <!--content for container goes here -->
    >
    > <div id="main">
    > <div id="story">
    > <h1 class="style1">Rocking Horse Video</h1>
    > <h2 class="style2">High-Definition DVDs</h2>
    > <h4><img src="/images/Rocking Horse Video.jpg"
    width="100" height="70"
    > class="image-left" />How was your last ?Horse Shows
    In The Park??? Wasn?t
    > it
    > fabulous?? Wasn?t it a total blast?? How was your horse
    over the jumps??
    > Weren?t those little girls with their pigtails and
    ponies adorable??
    > (Well, I
    > guess they were cute when they weren?t beating you.)?
    Did you take home
    > something (besides all those ribbons) ?that truly
    captured the magic of
    > that
    > weekend , something that was yours to keep
    forever?</h4>
    > That?s what Rocking Horse Video is all about.? Rocking
    Horse Video
    > creates
    > high-definition DVDs of you and your horse that you can
    enjoy for years
    > to
    > come.? Check out those rides.? Feel the exciting
    ambience of the show
    > every
    > time you watch your DVD.? These DVDs are more than a two
    minute ride to
    > classical music.? Rocking Horse Video edits raw footage
    with
    > state-of-the-art
    > software to high-light your horse?s performance and
    reproduce more than a
    > ride.?? Every time you watch you get to experience the
    whole horse show
    > all
    > over again.
    > <h2>Critique Your Rides</h2>
    > <p>Rocking Horse Video gives you high-definition
    DVDs that entertain,
    > educate, and sell.? See you and your horse in action and
    make your next
    > horse
    > show an even better one.? (You just have to beat those
    ponies next
    > time.)?
    > This is an affordable way to improve your performance
    for competitions to
    > come.?? Go over the video with your trainer and get
    double the
    > benefit.</p>
    > <h2>Sell Your Horse</h2>
    > <p>Order a marketing video to show prospective
    buyers hands down how
    > well
    > your horse performs in the show ring.</p>
    > <!--content for story div goes here
    --></div>
    >
    > <!--content for div main goes here -->
    >
    > <div id="sidebar"><h2><img
    src="/images/L'il Mite and Peanutbutter.jpg"
    > width="150" height="113" class="image-left" />Capture
    Your Precious
    > Memories</h2>
    > Get a DVD at every show.
    > <h5 align="left"><span
    class="style2">?Contact Rocking Horse
    > Video</span><img src="/images/Rocking Horse
    Video.jpg" width="100"
    > height="70"
    > class="image-right" /></h5>
    > <p>By Email: <a
    href="mailto:[email protected]"
    > class="style3">[email protected]</a><a
    > href="mailto:[email protected]"></a><br
    />
    > By Phone: (352)281-0322<br />
    > By Mail: Rocking Horse Video<br />
    > 6714 NW 34th Drive Gainesville, FL 32653</p>
    > <p>
    >
    > <!-- End Sign-Up Form -->
    > <!-- End Sign-Up Form -->
    > </p>
    > <form action="gdform.asp" method="post"
    enctype="text/plain"
    > name="email"
    > id="email">
    > <p>Would you like to subscribe to our email list
    so you can be
    > notified of
    > upcoming events?
    > yes
    > <input type="radio" name="subscribe" id="radio"
    value="radio" />
    > no
    > <input type="radio" name="subscribe" id="radio2"
    value="radio2" />
    > </p>
    > <p>email address:
    > <input name="email address" type="text" id="email
    address" size="40"
    > />
    >
    > </p>
    > <p>
    > <input type="submit" name="button" id="button"
    value="Subscribe" />
    > <input name="recipient" type="hidden" id="recipient"
    > value="[email protected]" />
    > </p>
    > </form>
    >
    > </div>
    > </div>
    > </div><!--end container div -->
    > </body>
    > </html>
    >
    > Thanks!
    >
    > Kate
    >

  • Spry, Mousover-Buttons and Email-Form problem. Site is 100% error free.

    My site: http://www.wientjesvoegwerk.nl/
    Its xhtml1.0 and css validated.
    I have a few problems however.
    This was how i did it first:
    <li class="TabbedPanelsTab" tabindex="0">
              <style>#Home a{display:block;color:transparent;} #Home a:hover{background-position:left bottom;}a#Home {display:none}</style>
              <table id="Home" width=0 cellpadding=0 cellspacing=0 border=0><tr>
              <td style="padding-right:0px" title ="Home">
            <a href="javascript:TabbedPanels1.showPanel(1);" title="Home" style="background-image:url(../Buttons/Home.png);width:172px;height:75px;display:block;"><br/></a></td>
              </tr></table>
              </li>
    As you see i use Spry tabbed panels. In a tab i put code wich shows a button with mouse over.
    Changing the code so my site would be 100% validated resulted in a broken button.
    The button works but loses its mouseover function.
    This is it now:
    <li class="TabbedPanelsTab">
            <table id="THome" >
              <tr>
                <td style="padding-right:0px" title ="Home"><a href="javascript:TabbedPanels1.showPanel(1);" title="Home" style="background-image:url(Buttons/Home.png);width:172px;height:75px;display:block;"><br/>
                </a></td>
              </tr>
            </table>
          </li>
    I tried everything. When using the code above the validator has errors, when using the one below, i lose mouseover...
    The validator says <style> tag isnt allowed.
    How do i solve this problem? I hope someone can help me out...
    Also i have another problem.
    I searched for safe email forms and hit this site: http://www.webbyzone.com/2010/01/10/make-xajax-phpmailer-contact-forms-work/
    It looks pro but i cant get it working. A little help would be appreciated...
    And i cant get my footer down to the bottom since i used Spry. Any help here also would be nice.
    xhtml site:
    <!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>Wientjes Voegwerk &amp; Renovatie - Home</title>
        <script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
        <link href="CSS/Style.css" rel="stylesheet" type="text/css" />
         <meta http-equiv="Content-Language" content="NL" />
         <meta http-equiv="imagetoolbar" content="no" />
         <meta name="MSSmartTagsPreventParsing" content="true" />
        <meta name="description" content="Wientjes Voegwerk en Renovatie is een voeg- en renovatiebedrijf gespecialiseerd in gevelrenovatie. Dagelijkse werkzaamheden zijn het voegen van nieuwbouwwerk, en alle voorkomende vormen van gevelrenovatie. Ik geef uw woning, garage of schoorsteen de aandacht die het verdient en ben trots op het resultaat van mijn werk!"/>
        <meta name="keywords" content="Voegwerk, Renovatie, Reinigen, Impregneren, Muur, Voegen, Steen, Woning, Garage, Schoorsteen, Bedrijf, Gevel, Wientjes, Uitslijten, Kappen, Fundering, Vorstschade, Metselen, Metselwerk, Vocht" />
        <meta name="author" content="Rob Nijlaan" />
    </head>
    <body>
    <div id="WContainer">
           <div id="WHeader" align="center">
             <img src="Pictures/VoegenRenLos.png" width="540" height="58" alt="Voeg en Renovatiebedrijf" /><br />
        <img src="Pictures/WientLogo.png" width="600" height="136" alt="Wientjes Voegwerk &amp; Renovatie" /></div>
         <div id="TabbedPanels1" class="VTabbedPanels">
           <ul class="TabbedPanelsTabGroup">
           <li class="TabbedPanelsTab">
            <table id="THome" >
              <tr>
                <td style="padding-right:0px" title ="Home"><a href="javascript:TabbedPanels1.showPanel(1);" title="Home" style="background-image:url(Buttons/Home.png);width:172px;height:75px;display:block;"><br/>
                </a></td>
              </tr>
            </table>
          </li>
          <li class="TabbedPanelsTab" >
            <table id="TInfo" >
              <tr>
                <td style="padding-right:0px" title ="Info"><a href="javascript:TabbedPanels1.showPanel(2);" title="Info" style="background-image:url(Buttons/Info.png);width:172px;height:75px;display:block;"><br/>
                </a></td>
              </tr>
            </table>
          </li>
          <li class="TabbedPanelsTab" >
            <table id="TGallerij" >
              <tr>
                <td style="padding-right:0px" title ="Gallerij"><a href="javascript:TabbedPanels1.showPanel(3);" title="Gallerij" style="background-image:url(Buttons/Gallerij.png);width:172px;height:75px;display:block;"><br/>
                </a></td>
              </tr>
            </table>
          </li>
          <li class="TabbedPanelsTab" >
            <table id="TContact" >
              <tr>
                <td style="padding-right:0px" title ="Contact"><a href="javascript:TabbedPanels1.showPanel(4);" title="Contact" style="background-image:url(Buttons/Contact.png);width:172px;height:75px;display:block;"><br/>
                </a></td>
              </tr>
            </table>
          </li>
          <li>
            <p class="footer"><br />
              <br />
              <br />
              <br />
              <br />
              Wientjes Voegwerk en Renovatie<br />
              <br />
              tel; 06 - 221 464 28<br />
              <br />
              kvk; <br />
              <br />
              <a href="http://jigsaw.w3.org/css-validator/check/referer"> <img style="border:0;width:88px;height:31px"
            src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
            alt="Valide CSS!" /> </a><br />
            <a href="http://validator.w3.org/check?uri=referer"><img
            src="http://www.w3.org/Icons/valid-xhtml10-blue"
            alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a> </p>
           </li>
          </ul>
           <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent" id="Home">
                       <h1>Welkom Bij Wientjes Voegwerk en Renovatie!</h1>
          <p>Wientjes Voegwerk en Renovatie is een voeg- en renovatiebedrijf gespecialiseerd in gevelrenovatie.<br />Dagelijkse werkzaamheden zijn het voegen van nieuwbouwwerk, en alle voorkomende vormen van gevelrenovatie.<br />Ik geef uw woning, garage of schoorsteen de aandacht die het verdient en ben trots op het resultaat van mijn werk!<br /><br />Wientjes, J </p>
          <h2>Voegen/Renovatie/Reinigen &amp; Impregneren. </h2>
    <table border="0" align="right"><tr><td>
    <a href="Foto/Foto's telefoon1 075.jpg"><img src="Foto/Foto's telefoon1 075.jpg" alt="Muur met Steiger" width="379" height="354" align="right" />
    </a></td></tr><tr><td><center>klik op de foto voor een groter voorbeeld</center></td></tr></table>
      <p>Vaak wordt er bij het kopen van een woning weinig aandacht besteed aan het voegwerk. Er wordt alleen gekeken naar hoe een woning is gebouwd.<br />Een voeg bepaalt echter wel het aanzicht van een woning. Van een goed aangebrachte voeg heeft u uiteraard veel langer plezier. <br />Renovatie bestaat voornamelijk uit het uitslijpen of kappen van het oude voegwerk. Waar nodig het verwijderen van scheuren die zijn ontstaan door:</p>
      <ul>
        <li>
          <p>
            Verzakking van de fundering
          </p>
        </li>
        <li>
          <p>
            Slecht voegwerk
          </p>
        </li>
        <li>
          <p>
            Vorstschade
          </p>
        </li>
        <li>
          <p>
            Doorhangen of ontbreken van ...
          </p>
        </li>
      </ul>
      <p>Bij gevelvervuiling van uw woning kunnen er problemen ontstaan die het wooncomfort negatief kunnen beïnvloeden.<br />Wanneer de voeg is aangetast of het metselwerk is door vorstschade beschadigd, kunnen er vochtproblemen in huis ontstaan.<br />Mos en alg hechten zich goed aan beschadigde stenen en voegwerk. <br /><br />Door middel van impregnering wordt een woning waterafstotend gemaakt.<br />Dit betekent dat het voeg- en metstelwerk jarenlang wordt beschermd tegen weersinvloeden. <br />Ook is impregnering beter voor de isolatie van de woning.</p>
    <p align="left"><img src="Pictures/TelnrLos.png" width="525" height="49" align="top" alt="Telefoonnummer"/></p>
                             </div>
                       <div class="TabbedPanelsContent" id="Info">
                    test2
                       </div>
                       <div class="TabbedPanelsContent" id="Gallerij">
                    test3
                       </div>
                            <div class="TabbedPanelsContent" id="Contact">
                    <?php echo '<div id="contact_result">'.$form.'</div>'; ?>
                    </div>
        </div>
        </div>
        <script type="text/javascript">
    <!--
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    //-->
    </script>
         <div id="WFooter" align="center">
             <p class="footer">Wientjes Voegwerk &amp; Renovatie     ,    03- '02         »        Site by ;    <b>Rob Nijlaan</b>        »        Problemen of vragen over deze site?    -    <b><a href="mailto:[email protected]">[email protected]</a></b></p>
         </div>
    </div>
    </body>
    </html>
    CSS script:
    @charset "utf-8";
    /* CSS Document */
    html,body {
         height:100%; /* needed for container min-height */
         width:100%;
         background: #FFFFFF url(../Pictures/Background.png) no-repeat center;
         color:#000;
    h1{
    font-family: "Trebuchet MS", verdana, arial, helvetica, sans-serif; color: #595999;
    font-weight: bold;
    font-style:italic;
    font-size: 230%;
    h2{
    font-family: "Trebuchet MS", verdana, arial, helvetica, sans-serif; color: #595999;
    font-weight: bold;
    font-size: 180%;
    p{
    font-family: "Verdana", verdana, arial, helvetica, sans-serif;
    font-size: 100%;
    .footer{
    font-family: "Trebuchet MS", verdana, arial, helvetica, sans-serif;
    font-size: 70%;
    text-align:center;
    #WContainer{
         position:absolute;
         margin:0 auto;
         width:80%;
         background:none;
         height:auto;
         height:100%;
         min-height:100%;
         margin-left: 10%;
         margin-right: 10%;
    #WHeader{
         height: 195px;
         width:100%;
         margin-bottom: 10px;
         margin-left: 0px;
         margin-right: 10px;
    .VTabbedPanels .TabbedPanelsTabGroup {
         float: left;
         width: 172px;
         height: 75px;
         background-color: #FFF;
         position: relative;
         border-top: solid 0px #FFF;
         border-right: solid 0px #FFF;
         border-left: solid 0px #FFF;
         border-bottom: solid 0px #FFF;
    .VTabbedPanels .TabbedPanelsTab {
         float: none;
         margin: 0px;
         border-top: none;
         border-left: none;
         border-right: none;
    .VTabbedPanels .TabbedPanelsContentGroup {
         margin-left: 220px;
         width: auto;
         height: auto;
         min-height:50%;
         max-width:83%;
         min-width:500px;
         padding: 20px 20px 20px 20px;
         border-left: solid 1px #999;
         border-bottom: solid 2px #999;
         border-top: solid 1px #999;
         border-right: solid 2px #999;
    #WFooter{
         clear:both;
         height: 30px;
         margin-top:1px;
    ul
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    li
    list-style-type: none;
    padding: 0px;
    margin: 0px;

    I finnaly knew what was wrong with the buttons.
    This is my renewed code:
    HTML:
    <li class="TabbedPanelsTab">
         <table class="Button">
              <tr>
                   <td style="padding-right:0px" title ="Home">
                        <a href="javascript:TabbedPanels1.showPanel(1);" title="Home" style="background-image:url(../Buttons/Home.png);width:172px;height:75px;display:block;"><br /></a>
                   </td>
              </tr>
         </table>
    </li>
    CSS:
    .Button a{display:block;}
    .Button a:hover{background-position:left bottom;}
    a.Button {display:none}
    My only problem is the Footer that is in top instead bottom.
    And the mail form from: http://www.webbyzone.com/2010/01/10/make-xajax-phpmailer-contact-forms-work/
    wich wont work so far...

  • I CANNOT GET EMAIL FORM MY HOTMAIL TO MY bb; CANYOU HELP

    i CANNOT GET EMAIL FORM MY HOTMAIL TO MY bb; CANYOU HELP

    Hi there!
    There are a multitude of questions/answers to go through to help you out, but those won't work unless you come to the forums and register an account. Please come to:
    http://supportforums.blackberry.com/rim/
    and register an account. Then post to the applicable forum.
    Thanks!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Why won't my Embedded forms show up at all?

    I've followed directions exactly on how to embed forms to my website. I'm using iWeb and pasting the code into HTML snippet widgets. I've built a few website before using this procedure, and Adobe Forms worked great in the past. Recenly, I've updated a website and created new pages.  Is there something I have missed? Did Adobe change protocol? Is there something wrong with my account? Is there additional code needed? The form dispays in my website editor, however: Why won't my embedded forms show up at all in any browser,(IE, Safari, Firefox, or Chrome) whether the browser is pulling files from a local folder, or from a hosted server?

    Hi,
    Will you be able to provide the link to your web page? you can either paste it here or you can send it to [email protected]
    Thanks,
    Lucia

  • Why Outlook email messages show unreadable characters

    When you receive a new email in Outlook, you may see unreadable characters in the email message body. This issue could be caused by one of the following reasons on Outlook client side:
    The email you received is converted to plain text format or a different encoding by a virus scanner. 
    This always happens when you are using characters (Such as apostrophes, double quotes, dashes, and ellipsis) supported by the "Smart Quotes" feature. When the email you received is converted to plain text format or a different encoding by a virus
    scanner, the character is converted from the ASCII character to a Unicode character, which is not supported on the recipient’s side.
    To prevent this issue from happening, we can turn off the “Smart Quotes” Feature in Outlook:
    1. Open Outlook 2013.
    2. Click File > Options > Mail.
    3. Click Spelling and AutoCorrect button.
    4. In the Editor Options window, click AutoCorrect Options button to open the AutoCorrect dialog.
    5. Click AutoFormat tab, and then clear the check box before “Straight quotes” with “smart quotes” under Replace heading.
    6. Click OK.
    The issue may be related to font substitution when a change is made to the Web Options in Microsoft Word. 
    If a change is made to the Web Options in Microsoft Word, registry data under the following key may be configured incorrectly:
    HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Word\Internet\Fonts
    This problem has been seen to occur when the Latin string value under the \Fonts key was empty (no value). 
    We can check the Web Options setting in Word via:
    1. Start Word.
    2. Go to File > Options > Advanced.
    3. Scroll down to the General section, click Web Options button.
    4. Switch to Font tab.
    To resolve the problem, we need to delete the \Fonts registry key. To do this, please follow:
    1. Exit Word.
    2. Press Windows key + R to open the Run command, type regedit and press Enter.
    3. Navigate to:
    HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Word\Internet\Fonts
    4. Right-click the Font key and select Delete.
    5. Click Yes and exit Registry Editor.
    The sender used an e-mail program that did not mark messages with a language encoding (character set), or marked messages with an incorrect encoding setting.
    In this case, we will see unreadable characters when we open the received message in our Outlook. For example, European regional characters (like German) require UTF-8 encoding protocol. So if the encoding in your environment is set to ASCII, the regional
    characters will not be available. 
    To resolve this issue, we need to change the encoding in Outlook to which will display your message correctly.
    1. Double-click to open the message you received.
    2. Click Actions button in the Move group under Message tab.
    3. Click Other Actions > Encoding.
    4. Click More and select the correct encoding setting for the email.
    5. After you finish reading the message, close the message, and click Yes button to save changes to the message.
    When we send an email with Outlook, we can set Outlook to automatically select encoding for outgoing email messages to increase the possibility that the recipient receiving the message will see all the characters rendered properly, even if they run older
    e-mail programs. By default, Outlook 2013 will automatically select an optimal encoding for outgoing e-mail messages. We can change the settings here in Outlook 2013: File > Options > Advanced > International Options section.
    Something you may need to know when you set the encoding settings:
    * The Unicode (UTF-8) character enables the complete range of characters on all computers. It’s the official IANA code for the UTF-8 character encoding.
    * Western European (ISO) and Western European (Windows) character set can be read by almost all computers.
    * If you are using a language other than English, you must choose the correct character set for that language, or the characters you need will not be displayed correctly.
    If you have any comments on this article, please feel free to post here.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    The "problem" is not really a problem. I send and receive emails fine. But the in the panel between the Inbox (message queue) and the reading pane this is displayed:
    From Mozilla Support Forum <[email protected]> (white star)
    Subject Toad-Hall posted an answer to your question "Why do received email messages show they are addressed to an address other than my own?"
    Reply to [email protected] (white star)
    To [email protected] yellow star)
    cfortso@gmail is the address of one of my contacts.
    This glitch is not really bothersome, I just can't imagine why it happens.

  • BP address data in  Email form

    Hello,
    When I create a campaign with communication channel as "email", how can I automatically add business partner address data ( Those BP's which are in the target group) when sending emails?
    Is there a standard functionality available?
    thanks in advance.

    Hi,
    You can use the Personalized mail functionality of the CRM for adding BP address in the email form. This is the standard functionality of the CRM 5.0.
    In t code CRMD_EMAIL while creating the text of the mail form drag and drop address attributes from the left hand side Object / Attribute Business partner.
    In Business partner Object you will get all the fields of the Business Partner including Street1 street2 City, POBox etc. Drag and drop these attributes wherever you want on the mail form text.
    Hope this will help.....
    Rgds
    Mallikrjun

  • While running the form-showing some error

    hi,
    while running the form-showing some error... I mentioned Below
    # An unexpected error has been detected by Java Runtime Environment:
    # Internal Error (safepoint.cpp:583), pid=3512, tid=4932
    # Error: Illegal threadstate encountered: 4
    # Java VM: Java HotSpot(TM) Client VM (11.3-b02 mixed mode windows-x86)
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x16788400): JavaThread "Thread-6" [_thread_in_native, id=4932, stack(0x1d7d0000,0x1d9d0000)]
    Stack: [0x1d7d0000,0x1d9d0000]
    <<<<<<<<<<<<<<<<<<<This is Another One Error>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0c307fd3, pid=5880, tid=6964
    # Java VM: Java HotSpot(TM) Client VM (11.3-b02 mixed mode windows-x86)
    # Problematic frame:
    # V [jvm.dll+0x57fd3]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x17926000): JavaThread "Thread-14" [_thread_in_native, id=6964, stack(0x04be0000,0x04de0000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0xfffffffc
    Registers:
    EAX=0x00000000, EBX=0x00000000, ECX=0x00000000, EDX=0x04ddcf8c
    ESP=0x04ddcf58, EBP=0x00000000, ESI=0x04ddcf8c, EDI=0x00000400
    EIP=0x0c307fd3, EFLAGS=0x00010246
    Top of Stack: (sp=0x04ddcf58)
    0x04ddcf58: 04ddcf8c 0c3087a6 00000000 00000000
    0x04ddcf68: 00000000 0c37d855 04ddcf8c 1790e61c
    0x04ddcf78: 1790e61c 04ddd2f8 04ddd238 00000958
    0x04ddcf88: 00000000 00000000 00000001 00000000
    0x04ddcf98: 00000000 00000000 00000000 ffffffff
    0x04ddcfa8: 75966ce9 75966d91 00040000 17895c08
    0x04ddcfb8: 179b9f08 179b9f10 179ba2fc 00000400
    0x04ddcfc8: 178e9f70 0e563a98 0e563ab0 0e563b40
    Instructions: (pc=0x0c307fd3)
    0x0c307fc3: 04 56 8b f1 8b 4c 24 0c 89 06 89 46 14 89 4e 10
    0x0c307fd3: 8b 40 fc 50 89 46 04 e8 91 09 02 00 83 c4 04 85
    Stack: [0x04be0000,0x04de0000], sp=0x04ddcf58, free space=2035k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x57fd3]
    [error occurred during error reporting (printing native stack), id 0xc0000005]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x17924000 JavaThread "Flush Queue" [_thread_blocked, id=5624, stack(0x1fb80000,0x1fc80000)]
    0x17928000 JavaThread "Busy indicator" daemon [_thread_blocked, id=5324, stack(0x1f9f0000,0x1faf0000)]
    0x17924800 JavaThread "HeartBeat" [_thread_blocked, id=5576, stack(0x1f8d0000,0x1f9d0000)]
    0x17928400 JavaThread "Forms-StreamMessageWriter" [_thread_blocked, id=5696, stack(0x1f4b0000,0x1f5b0000)]
    0x17926c00 JavaThread "Forms-StreamMessageReader" [_thread_blocked, id=5412, stack(0x1f2d0000,0x1f3d0000)]
    0x17925000 JavaThread "thread applet-oracle.forms.engine.Main" [_thread_blocked, id=3904, stack(0x1e980000,0x1ea80000)]
    0x17926800 JavaThread "Thread-16" [_thread_in_vm, id=5080, stack(0x1d100000,0x1d300000)]
    0x17921c00 JavaThread "TaskScheduler timer" [_thread_blocked, id=6188, stack(0x1cef0000,0x1cff0000)]
    0x17927400 JavaThread "Flush Queue" [_thread_blocked, id=5620, stack(0x0a600000,0x0a700000)]
    0x17922800 JavaThread "CursorIdler" [_thread_blocked, id=6120, stack(0x1bf10000,0x1c010000)]
    0x17925400 JavaThread "Busy indicator" daemon [_thread_blocked, id=5428, stack(0x1c300000,0x1c400000)]
    0x17924400 JavaThread "HeartBeat" [_thread_blocked, id=480, stack(0x1cc70000,0x1cd70000)]
    0x17929000 JavaThread "Forms-StreamMessageWriter" [_thread_blocked, id=6288, stack(0x1c050000,0x1c150000)]
    0x17922c00 JavaThread "Forms-StreamMessageReader" [_thread_blocked, id=3932, stack(0x0a1d0000,0x0a2d0000)]
    0x17927800 JavaThread "thread applet-oracle.forms.engine.Main" [_thread_blocked, id=6708, stack(0x0b570000,0x0b670000)]
    0x17928800 JavaThread "SunToolkit.PostEventQueue-6" [_thread_blocked, id=4140, stack(0x1be10000,0x1bf10000)]
    0x17922000 JavaThread "AWT-EventQueue-6" [_thread_blocked, id=6524, stack(0x0b6d0000,0x0b7d0000)]
    =>0x17926000 JavaThread "Thread-14" [_thread_in_native, id=6964, stack(0x04be0000,0x04de0000)]
    0x17923400 JavaThread "Screen Updater" [_thread_blocked, id=3812, stack(0x1a990000,0x1aa90000)]
    0x178f2400 JavaThread "JAR Cache Cleanup Thread" [_thread_blocked, id=3784, stack(0x1a360000,0x1a460000)]
    0x178ec800 JavaThread "TimerQueue" daemon [_thread_blocked, id=4844, stack(0x19fe0000,0x1a0e0000)]
    0x178e4400 JavaThread "Thread-2" [_thread_blocked, id=5800, stack(0x1a150000,0x1a250000)]
    0x178e3c00 JavaThread "Thread-1" [_thread_blocked, id=3496, stack(0x19450000,0x19550000)]
    0x0be0f400 JavaThread "Main Console Writer" [_thread_blocked, id=3324, stack(0x18ee0000,0x18fe0000)]
    0x0be0e000 JavaThread "AWT-Windows" [_thread_in_native, id=2040, stack(0x18b60000,0x18c60000)]
    0x0be0dc00 JavaThread "SunToolkit.PostEventQueue-1" [_thread_blocked, id=728, stack(0x175d0000,0x176d0000)]
    0x0be0d400 JavaThread "AWT-EventQueue-1" [_thread_blocked, id=4000, stack(0x188a0000,0x189a0000)]
    0x0bdc5000 JavaThread "SunToolkit.PostEventQueue-0" [_thread_blocked, id=4720, stack(0x174b0000,0x175b0000)]
    0x0bdd8800 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=2708, stack(0x17790000,0x17890000)]
    0x0bd8d000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3772, stack(0x16cb0000,0x16db0000)]
    0x0bd86400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3780, stack(0x16fe0000,0x170e0000)]
    0x0bd85800 JavaThread "Attach Listener" daemon [_thread_blocked, id=5828, stack(0x16dc0000,0x16ec0000)]
    0x0bd7b000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2492, stack(0x16b90000,0x16c90000)]
    0x0bd72800 JavaThread "Finalizer" daemon [_thread_blocked, id=3800, stack(0x0c0e0000,0x0c1e0000)]
    0x0bd6e000 JavaThread "Reference Handler" daemon [_thread_blocked, id=1824, stack(0x16980000,0x16a80000)]
    Other Threads:
    0x0bd6c000 VMThread [stack: 0x16840000,0x16940000] [id=3892]
    0x0bd95c00 WatcherThread [stack: 0x17160000,0x17260000] [id=4680]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 1024K, used 400K [0x0e510000, 0x0e620000, 0x0e9f0000)
    eden space 960K, 35% used [0x0e510000, 0x0e5642b0, 0x0e600000)
    from space 64K, 100% used [0x0e610000, 0x0e620000, 0x0e620000)
    to space 64K, 0% used [0x0e600000, 0x0e600000, 0x0e610000)
    tenured generation total 11516K, used 10193K [0x0e9f0000, 0x0f52f000, 0x12510000)
    the space 11516K, 88% used [0x0e9f0000, 0x0f3e4780, 0x0f3e4800, 0x0f52f000)
    compacting perm gen total 12288K, used 9184K [0x12510000, 0x13110000, 0x16510000)
    the space 12288K, 74% used [0x12510000, 0x12e08140, 0x12e08200, 0x13110000)
    No shared spaces configured.
    Dynamic libraries:
    0x012f0000 - 0x013a8000      C:\Program Files (x86)\Internet Explorer\iexplore.exe
    0x77e00000 - 0x77f80000      C:\Windows\SysWOW64\ntdll.dll
    0x76980000 - 0x76a90000      C:\Windows\syswow64\kernel32.dll
    0x76b10000 - 0x76b56000      C:\Windows\syswow64\KERNELBASE.dll
    0x758b0000 - 0x75950000      C:\Windows\syswow64\ADVAPI32.dll
    0x75b40000 - 0x75bec000      C:\Windows\syswow64\msvcrt.dll
    0x76ec0000 - 0x76ed9000      C:\Windows\SysWOW64\sechost.dll
    0x770d0000 - 0x771c0000      C:\Windows\syswow64\RPCRT4.dll
    0x754e0000 - 0x75540000      C:\Windows\syswow64\SspiCli.dll
    0x754d0000 - 0x754dc000      C:\Windows\syswow64\CRYPTBASE.dll
    0x75950000 - 0x75a50000      C:\Windows\syswow64\USER32.dll
    0x77450000 - 0x774e0000      C:\Windows\syswow64\GDI32.dll
    0x756d0000 - 0x756da000      C:\Windows\syswow64\LPK.dll
    0x77030000 - 0x770cd000      C:\Windows\syswow64\USP10.dll
    0x76e60000 - 0x76eb7000      C:\Windows\syswow64\SHLWAPI.dll
    0x75d30000 - 0x7697a000      C:\Windows\syswow64\SHELL32.dll
    0x76d00000 - 0x76e5c000      C:\Windows\syswow64\ole32.dll
    0x75560000 - 0x75671000      C:\Windows\syswow64\urlmon.dll
    0x756e0000 - 0x7576f000      C:\Windows\syswow64\OLEAUT32.dll
    0x771c0000 - 0x77378000      C:\Windows\syswow64\iertutil.dll
    0x75c10000 - 0x75d2b000      C:\Windows\syswow64\WININET.dll
    0x77dd0000 - 0x77dd3000      C:\Windows\syswow64\Normaliz.dll
    0x75770000 - 0x757d0000      C:\Windows\system32\IMM32.DLL
    0x77380000 - 0x7744c000      C:\Windows\syswow64\MSCTF.dll
    0x6c5a0000 - 0x6cee6000      C:\Windows\system32\IEFRAME.dll
    0x75550000 - 0x75555000      C:\Windows\syswow64\PSAPI.DLL
    0x6dbc0000 - 0x6dbfc000      C:\Windows\system32\OLEACC.dll
    0x71710000 - 0x718ae000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll
    0x76a90000 - 0x76b0b000      C:\Windows\syswow64\comdlg32.dll
    0x6b640000 - 0x6b671000      C:\Program Files (x86)\Internet Explorer\IEShims.dll
    0x73070000 - 0x730f0000      C:\Windows\system32\uxtheme.dll
    0x73870000 - 0x73878000      C:\Windows\system32\Secur32.dll
    0x73c60000 - 0x73c6b000      C:\Windows\system32\profapi.dll
    0x757d0000 - 0x75805000      C:\Windows\syswow64\WS2_32.dll
    0x75540000 - 0x75546000      C:\Windows\syswow64\NSI.dll
    0x73720000 - 0x73764000      C:\Windows\system32\dnsapi.DLL
    0x736c0000 - 0x736dc000      C:\Windows\system32\iphlpapi.DLL
    0x736b0000 - 0x736b7000      C:\Windows\system32\WINNSI.DLL
    0x73c70000 - 0x73c7e000      C:\Windows\system32\RpcRtRemote.dll
    0x70230000 - 0x70243000      C:\Windows\system32\dwmapi.dll
    0x6cef0000 - 0x6daab000      C:\Windows\system32\MSHTML.dll
    0x73d40000 - 0x73d49000      C:\Windows\system32\VERSION.dll
    0x76b60000 - 0x76cfd000      C:\Windows\syswow64\setupapi.dll
    0x75a50000 - 0x75a77000      C:\Windows\syswow64\CFGMGR32.dll
    0x75bf0000 - 0x75c02000      C:\Windows\syswow64\DEVOBJ.dll
    0x6c0a0000 - 0x6c15a000      C:\Windows\system32\d2d1.dll
    0x6ff30000 - 0x7003b000      C:\Windows\system32\DWrite.dll
    0x6c010000 - 0x6c093000      C:\Windows\system32\dxgi.dll
    0x75a80000 - 0x75aad000      C:\Windows\syswow64\WINTRUST.dll
    0x76ee0000 - 0x76ffd000      C:\Windows\syswow64\CRYPT32.dll
    0x75810000 - 0x7581c000      C:\Windows\syswow64\MSASN1.dll
    0x6bfe0000 - 0x6c00c000      C:\Windows\system32\d3d10_1.dll
    0x6bfa0000 - 0x6bfda000      C:\Windows\system32\d3d10_1core.dll
    0x73cc0000 - 0x73cd6000      C:\Windows\system32\CRYPTSP.dll
    0x73c80000 - 0x73cbb000      C:\Windows\system32\rsaenh.dll
    0x75820000 - 0x758a3000      C:\Windows\syswow64\CLBCatQ.DLL
    0x6bf30000 - 0x6bf62000      C:\Program Files (x86)\Internet Explorer\ieproxy.dll
    0x73cf0000 - 0x73d3c000      C:\Windows\system32\apphelp.dll
    0x6db60000 - 0x6db8e000      C:\Windows\system32\MLANG.dll
    0x72910000 - 0x72931000      C:\Windows\system32\ntmarta.dll
    0x75680000 - 0x756c5000      C:\Windows\syswow64\WLDAP32.dll
    0x716b0000 - 0x71702000      C:\Windows\system32\RASAPI32.dll
    0x728f0000 - 0x72905000      C:\Windows\system32\rasman.dll
    0x73d60000 - 0x73d6d000      C:\Windows\system32\rtutils.dll
    0x737a0000 - 0x737a6000      C:\Windows\system32\sensapi.dll
    0x73a70000 - 0x73aac000      C:\Windows\system32\mswsock.dll
    0x73a60000 - 0x73a65000      C:\Windows\System32\wshtcpip.dll
    0x738b0000 - 0x738c0000      C:\Windows\system32\NLAapi.dll
    0x6de50000 - 0x6deaf000      C:\Windows\system32\SXS.DLL
    0x73660000 - 0x73666000      C:\Windows\system32\rasadhlp.dll
    0x701c0000 - 0x701c7000      C:\Windows\system32\msiltcfg.dll
    0x6f290000 - 0x6f4d0000      C:\Windows\system32\msi.dll
    0x73c50000 - 0x73c53000      C:\Windows\SysWOW64\SFC.DLL
    0x73ac0000 - 0x73acd000      C:\Windows\system32\sfc_os.DLL
    0x658b0000 - 0x65a6b000      C:\Windows\SysWOW64\jscript9.dll
    0x6dbb0000 - 0x6dbbb000      C:\Windows\system32\msimtf.dll
    0x6c460000 - 0x6c555000      C:\Windows\system32\PROPSYS.dll
    0x6bbf0000 - 0x6bceb000      C:\Windows\system32\windowscodecs.dll
    0x6bd30000 - 0x6be32000      C:\Windows\system32\d3d10.dll
    0x6bcf0000 - 0x6bd23000      C:\Windows\system32\d3d10core.dll
    0x6be40000 - 0x6be6b000      C:\Windows\system32\msls31.dll
    0x728e0000 - 0x728e6000      C:\Windows\System32\wship6.dll
    0x736e0000 - 0x73707000      C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live\WLIDNSP.DLL
    0x73670000 - 0x736a8000      C:\Windows\System32\fwpuclnt.dll
    0x01150000 - 0x0115d000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\npjinit13122.dll
    0x09160000 - 0x0918b000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\beans.ocx
    0x73960000 - 0x73967000      C:\Windows\system32\wsock32.dll
    0x73890000 - 0x738a0000      C:\Windows\system32\napinsp.dll
    0x73780000 - 0x73792000      C:\Windows\system32\pnrpnsp.dll
    0x73710000 - 0x73718000      C:\Windows\System32\winrnr.dll
    0x089e0000 - 0x089f6000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\jpishare.dll
    0x0c2b0000 - 0x0c506000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\hotspot\jvm.dll
    0x73ad0000 - 0x73b02000      C:\Windows\system32\WINMM.dll
    0x7c340000 - 0x7c396000      C:\Windows\system32\MSVCR71.dll
    0x04960000 - 0x04967000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\hpi.dll
    0x08890000 - 0x0889d000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\verify.dll
    0x08f30000 - 0x08f48000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\java.dll
    0x08a00000 - 0x08a0d000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\zip.dll
    0x16a80000 - 0x16b8b000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\awt.dll
    0x732b0000 - 0x73301000      C:\Windows\system32\WINSPOOL.DRV
    0x09340000 - 0x0937c000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\fontmanager.dll
    0x6b130000 - 0x6b1f8000      C:\Windows\system32\OPENGL32.DLL
    0x6b100000 - 0x6b122000      C:\Windows\system32\GLU32.dll
    0x6fc20000 - 0x6fd07000      C:\Windows\system32\DDRAW.dll
    0x70210000 - 0x70216000      C:\Windows\system32\DCIMAN32.dll
    0x17a90000 - 0x187f1000      C:\Windows\system32\ig4icd32.dll
    0x08b60000 - 0x08b68000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\net.dll
    0x1a250000 - 0x1a2e4000      C:\Windows\system32\igdumdx32.dll
    0x1af50000 - 0x1b56d000      C:\Windows\system32\igdumd32.dll
    0x6b9b0000 - 0x6b9d5000      C:\Windows\system32\PowrProf.dll
    0x09190000 - 0x0919a000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\packager.dll
    0x72b50000 - 0x72b9f000      C:\Windows\System32\Wpc.dll
    0x731f0000 - 0x73207000      C:\Windows\System32\USERENV.dll
    0x72b00000 - 0x72b42000      C:\Windows\System32\wevtapi.dll
    0x738f0000 - 0x738ff000      C:\Windows\system32\samcli.dll
    0x73360000 - 0x73372000      C:\Windows\system32\SAMLIB.dll
    0x73930000 - 0x73939000      C:\Windows\system32\netutils.dll
    0x69d90000 - 0x6a9a5000      C:\Windows\system32\igd10umd32.dll
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~2\Oracle\JINITI~1.22\lib\jaws.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\plugprov.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\sunrsasign.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\javax-ssl-1_2.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\jssl-1_2.jar -Xmx64m -Djavaplugin.maxHeapSize=64m -Xverify:remote -Djavaplugin.version=1.3.1.22 -Djavaplugin.nodotversion=13122 -DtrustProxy=true -Dapplication.home=C:\PROGRA~2\Oracle\JINITI~1.22 -Djava.protocol.handler.pkgs=sun.plugin.protocol.jdk12 -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~2\Oracle\JINITI~1.22\lib\applet. -Xbootclasspath/a:C:\PROGRA~2\Oracle\JINITI~1.22\lib\jaws.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\plugprov.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\sunrsasign.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\javax-ssl-1_2.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\jssl-1_2.jar -Xmx64m -Djavaplugin.maxHeapSize=64m -Xverify:remote -Djavaplugin.version=1.3.1.22 -Djavaplugin.nodotversion=13122 -DtrustProxy=true -Dapplication.home=C:\PROGRA~2\Oracle\JINITI~1.22 -Djava.protocol.handler.pkgs=sun.plugin.protocol.jdk12
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    PATH=C:\PROGRA~2\Oracle\JINITI~1.22\bin;C:\PROGRA~2\Oracle\JINITI~1.22\jre\bin;E:\DevSuiteHome_1\jdk\jre\bin\classic;E:\DevSuiteHome_1\jdk\jre\bin;E:\DevSuiteHome_1\jdk\jre\bin\client;E:\DevSuiteHome_1\jlib;E:\DevSuiteHome_1\bin;E:\DevSuiteHome_1\jre\1.4.2\bin\client;E:\DevSuiteHome_1\jre\1.4.2\bin;E:\oracle\product\10.2.0\db_1\bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files\Java\jdk1.6.0_30\jre\bin;;.
    USERNAME=free
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows NT 6.1 Build 7601 Service Pack 1
    CPU:total 4 (8 cores per cpu, 2 threads per core) family 6 model 10 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, ht
    Memory: 4k page, physical 4039108k(2141856k free), swap 4194303k(797372k free)
    vm_info: Java HotSpot(TM) Client VM (11.3-b02) for windows-x86 JRE (1.6.0_13-b03), built on Mar 9 2009 01:15:24 by "java_re" with MS VC++ 7.1
    time: Thu Mar 29 12:31:47 2012
    elapsed time: 7308 seconds
    Please find solution to solve the problem...

    you form is running in the browser with the help of Jinitiator which is nothing but A JavaInitiator.
    as your machine files located in the System32 folder of your windows directory as .DLL. are not able to communicate with the Jinitiator DLL Files being used
    for the JRE.
    The Form is sending the request to the internet explorer to run the object of applet ttype which is nothing but the Oracle Java Applet named as OC4J(Oracle Container for Java)
    if your form is running or trying to run and hangged due to some problems and your machine got abnormal shutdown then at that time the DLL fiels communicating each other may got corrupt
    due to any abmormal shutdown of your machine...
    the problem is there with the Java Side...
    There is no solution other then reloading the JRE and Jinitiator as per the error being thrown by your machine

  • Don't want my AOL Email to show in the MESSAGES mailbox

    Just got the 8300 from Verizon.    I set it up to get mail from my AOL mailbox.    The mail shows up in the "green" mail envelope on the main screen..     There is also a "mailbox" on the main screen.   That mailbox collects every voicecall, text message AND email that I recieve.    So..I am getting email in BOTH places.    I don't want the email to show up in the mailbox with text and voicecalls...I just want my email to show up in the "green" mail envelope.  
    So....does anyone know how to program the 8300 to "not" put my AOL mail in the messages mailbox?   I've messed around with almost every menu...trying to find a way...but no luck.
    Thanks
    Solved!
    Go to Solution.

    On your BB device, you have a 'main' Messages folder, which collects ALL email, messages, SMS, PIN messages etc.
    That is as designed. You can remove the SMS text messages to a separate folder (Messages > Menu > Options > General Options > scroll down to SMS and Email inboxes and choose > Separate.
    You also have an AOL email inbox.  You can hide it , you really don't need it.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • Problem connecting java to oracle

    new to jdbc so might appear stupid, but i have tried to create a basic connection from a java application to oracle using the following code Class.forName("oracle.jdbc.driver.OracleDriver") ;} system.out.println("msg1"); con = DriverManager.getConnec

  • Use of this code?

    Hai, I am coming across a code line in my project. What is the use of the following line? SBO_Application.SendKeys(""); Where SBO_Application is the application object.

  • Trouble getting MP4 files into 30G IPOD

    I have ripped a DVD into MP4 format but was unable to add it to ITUNES for transfer into my video IPOD. I am using a demo copy of CUCUSOFT converter software to experiment with. I have thought about buying QuickTime 7.0 but have heard nothing about i

  • How to find if a alert already exists for a specific Event id or Performance counter in SCOM

    Hi Experts, I am using SCOM 2007 R2 with CU4. In our team we have few requirements for alerts, But before i get them created for my team i would like to know if there is already a default or customized alert created for it or not. Is there any way to

  • Not able to login to EBS R12.1.3 in IE8, It works in Mozilla and Chrome

    Hi, We are unable to login to EBS using IE8 however we are able to access the same using Mozilla FireFox or Chrome. I Tried using R12: Using IE8 to access two EBS Instances runs in error "Unable To Authenticate Session" [ID 1098563.1] document but it