Size of applet in Internet Explorer

Thanx in advance
When i run a form through 9iDS it shows the form not in actual size in applet window. How can i make changing in applet size.

Hi,
in the file <oracle_home>/forms90/server/formsweb.cfg
Param width and height.

Similar Messages

  • Applets Crashing Internet Explorer on Windows XP with JRE 1.4.0 Final

    I have recently installed the 1.4.0Final JRE, and have found that upon arriving at a page with an applet on internet explorer explorer crashes. Where as under the JRE 1.3.1_02 it does not.
    I am running Windows XP, and cannot remember the exact error message I get, however it is something about an error occuring within iexplorer.exe
    Any help appreciated.

    I have the same symptom on Windows 2000 (SP2) using Internet Explorer 5.00. Replacing the IE JVM with J2SE 1.4 causes IE to crash when I visit java.sun.com.
    I am filing a bug with the JDC Bug Parade, but I am surprised that this has not been more widely reported, since I think I have a common system configuration.

  • Can't run an applet with Internet Explorer for Windows

    I'm not sure this is the right news group, if not please direct me to the correct one.
    I have an applet at http://209.55.115.36/webfit/Instructions/instructio_list.php?section_id=1&instructionsPage=2 It works in various browser except internet explorer for Windows. I've tried it with IE on windows XP, 98 and ME. Here is what I do.
    1) I uninstall any copies of the Java Plugin.
    2) I install a new copy of the Java Plugin
    3) I test that I can see the Java Coffee cup in IE
    I try loading in my applet and I get a big grey spot.
    The applet works with all Mac Browsers, Netscape and Opera, but not IE. I don't get any error messages, just nouthing.
    Any pointers or thoughts would be helpful. I'm under a time crunch because I wanted to show it off at a trade show this weekend.
    -Gary

    HEY! I saw what you're talking about! I was working on my own stuff, and my applet said it loaded and init'd, but was still blank. The only difference was I had upgraded to the Plug-In 1.4.1 this morning. So I went back to version 1.4.0 and it worked perfectly again. Maybe that's what's happening to you. So ignore the link I just posted and go to this one:
    http://java.sun.com/j2se/1.4/download.html
    That'll let you download version 1.4.0 instead, and I'll bet you that one works. Let me know. Good luck!

  • Open applet on internet explorer

    Hi i have created the following applet :
    import java.applet.*;
    import java.net.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.Applet;
    public class Applet11 extends Applet {
      FlowLayout f1= new FlowLayout();//������� ��������
      int alignement=FlowLayout.CENTER;
      JLabel jLabel1 = new JLabel();//������ ��������
      JLabel jLabel2 = new JLabel();
      JLabel jLabel3 = new JLabel();
      JTextField jTextField1 = new JTextField();//���������� ������ ��������
      JTextField jTextField2 = new JTextField();
      JButton jButton1 = new JButton();//������ ��������
      JButton jButton2 = new JButton();
      JButton jButton3 = new JButton();
      JButton jButton4 = new JButton();
    Color blue = new Color(240,244,249);
      Font m=new Font("Palatino Linotype",Font.PLAIN,14);
    private int current = 0;
      private ImageIcon[] images=new ImageIcon[31];
      public void init() {
        images[0]=new ImageIcon("palaio/Image8.jpg");
        images[1]=new ImageIcon("palaio/Image22.jpg");
        images[2]=new ImageIcon("palaio/Image30.jpg");
        images[3]=new ImageIcon("palaio/Image36.jpg");
        images[4]=new ImageIcon("palaio/Image42.jpg");
        images[5]=new ImageIcon("palaio/Image63.jpg");
        images[6]=new ImageIcon("palaio/Image68.jpg");
        images[7]=new ImageIcon("palaio/Image71.jpg");
        images[8]=new ImageIcon("palaio/Image72.jpg");
        images[9]=new ImageIcon("palaio/Image73.jpg");
        images[10]=new ImageIcon("palaio/Image80.jpg");
        images[11]=new ImageIcon("palaio/Image82.jpg");
        images[12]=new ImageIcon("palaio/Image83.jpg");
        images[13]=new ImageIcon("palaio/Image85.jpg");
        images[14]=new ImageIcon("palaio/Image87.jpg");
        images[15]=new ImageIcon("palaio/Image92.jpg");
        images[16]=new ImageIcon("palaio/Image93.jpg");
        images[17]=new ImageIcon("palaio/Image94.jpg");
        images[18]=new ImageIcon("palaio/Image95.jpg");
        images[19]=new ImageIcon("palaio/Image96.jpg");
        images[20]=new ImageIcon("palaio/Image101.jpg");
        images[21]=new ImageIcon("palaio/Image102.jpg");
        images[22]=new ImageIcon("palaio/Image111.jpg");
        images[23]=new ImageIcon("palaio/Image113.jpg");
        images[24]=new ImageIcon("palaio/Image115.jpg");
        images[25]=new ImageIcon("palaio/Image117.jpg");
        images[26]=new ImageIcon("palaio/Image118.jpg");
        images[27]=new ImageIcon("palaio/Image119.jpg");
        images[28]=new ImageIcon("palaio/Image120.jpg");
        images[29]=new ImageIcon("palaio/Image121.jpg");
        images[30]=new ImageIcon("palaio/telos.jpg");
        jLabel1.setText("������");
        Font n=new Font("Palatino Linotype",Font.PLAIN,14);
        Font f=new Font("Palatino LinoType",Font.PLAIN,12);
        Font m=new Font("TimesRoman",Font.PLAIN,14);
        jLabel1.setFont(f);
        jLabel1.setText("����\u1FD6�");
        jLabel1.setVisible(false);
        jLabel2.setText("");
        jLabel2.setPreferredSize(new Dimension(200,40));
        jLabel3.setFont(m);
        jLabel3.setText("�������������� ���");
        jTextField1.setPreferredSize(new Dimension(280, 30));
        jTextField1.setFont(n);
        jTextField2.setPreferredSize(new Dimension(200, 22));
        jButton1.setText("��������");
        jButton1.addActionListener(new Applet11_jButton1_actionAdapter(this));
        jButton2.setText("��������");
        jButton2.addActionListener(new Applet11_jButton2_actionAdapter(this));
        jButton3.setText("������");
        jButton3.addActionListener(new Applet11_jButton3_actionAdapter(this));
        jButton4.setText("������� ������");
        jButton4.addActionListener(new Applet11_jButton4_actionAdapter(this));
        this.setLayout(new FlowLayout(FlowLayout.CENTER,90,10));
        this.add(jLabel1, null);
        this.add(jLabel2, null);
        this.add(jLabel3, null);
        this.add(jTextField1,null);
        this.add(jButton1, null);
        this.add(jTextField2, null);
        this.add(jButton2, null);
        this.add(jButton4, null);
        this.add(jButton3, null);
      void jButton4_actionPerformed(ActionEvent e){
        jTextField1.setText("");
        jTextField2.setText("");
        repaint();
      void jButton2_actionPerformed(ActionEvent e) {
        jTextField1.setText("");
        jTextField2.setText("");
        repaint();
      void jButton1_actionPerformed(ActionEvent e) {
        if (!jTextField1.getText().equals(""))
          if (jTextField1.getText().equals(jLabel1.getText()))
            jTextField2.setText("����� �����");
          else
            jTextField2.setText("����� ����� �����");
        repaint();
      public void compStrings(Graphics g, String str1, String str2) {
        int tmp;
         if ((!jTextField1.getText().equals(""))&&(!jTextField1.getText().equals(jLabel1.getText()))){
           if (str1.length() > str2.length()) {
          tmp = str1.length() - str2.length();
          for (int i = 0; i < tmp; i++)
            str2 += " ";
        else
        if (str1.length() < str2.length()) {
          tmp = str2.length() - str1.length();
          for (int i = 0; i < tmp; i++)
            str1 += " ";
        int l1 = 170;
        int l2 = 170;
        Character c;
        Font f=new Font("PalatinoLinotype",Font.PLAIN,12);//������ ��������������
        Font r=new Font("PalatinoLinotype",Font.BOLD,12);
        g.setFont(m);
        FontMetrics fm;
        f = g.getFont();
        fm = g.getFontMetrics(f);
        g.setColor(Color.BLACK);
        for (int i = 0; i < str2.length(); i++) {
          if (str1.charAt(i) != str2.charAt(i)) {
            g.setColor(Color.RED);
            g.setFont(m);
            g.drawString(String.valueOf(str2.charAt(i)), l1, 350);
            l1 += fm.charWidth(str2.charAt(i));
            g.setColor(Color.RED);
            g.drawString(String.valueOf(str1.charAt(i)), l2, 300);
            l2 += fm.charWidth(str1.charAt(i));
            g.setColor(Color.blue);
            g.drawString("� ����� ��������� :",20,300);
            g.drawString("��������������� :",20,350);
          else {
            g.setColor(Color.BLACK);
            g.setFont(m);
            g.drawString(String.valueOf(str2.charAt(i)), l1, 350);
            l1 += fm.charWidth(str2.charAt(i));
            g.setColor(Color.BLACK);
            g.drawString(String.valueOf(str1.charAt(i)), l2, 300);
            l2 += fm.charWidth(str1.charAt(i));
    public void paint(Graphics g) {
       setBackground(blue);
       jLabel2.setIcon(images[current]);
      super.paint(g);
      this.compStrings(g, jLabel1.getText(), jTextField1.getText());
      if (jTextField1.getText().equals(jLabel1.getText())){
        g.setColor(Color.BLUE);
        g.setFont(m);
        g.drawString("������� �������� ���� ������� ������", 90, 350);
    class Applet11_jButton4_actionAdapter
          implements
          java.awt.event.ActionListener {
        Applet11 adaptee;
        Applet11_jButton4_actionAdapter(Applet11 adaptee) {
          this.adaptee = adaptee;
        public void actionPerformed(ActionEvent e) {
          adaptee.jButton4_actionPerformed(e);
            next();
    private void next(){
    if(current==0)
    jLabel1.setText("\u1F30\u1F7C�");
      if(current==1)
    jLabel1.setText("\u1F10�������������");
      if(current==2)
    jLabel1.setText("�����\u1F78�");
      if(current==3)
    jLabel1.setText("�\u1F72");
      if(current==4)
    jLabel1.setText("\u1F10��������");
      if(current==5)
    jLabel1.setText("����\u1F78�");
      if(current==6)
    jLabel1.setText("�\u1F50�");
      if(current==7)
    jLabel1.setText("������\u1FF6�");
      if(current==8)
    jLabel1.setText("��\u1F74�");
      if(current==9)
    jLabel1.setText("\u1F00������");
      if(current==10)
    jLabel1.setText("�\u1F56�");
      if(current==11)
    jLabel1.setText("\u1F44���");
      if(current==12)
    jLabel1.setText("������");
      if(current==13)
    jLabel1.setText("\u1F69�");
      if(current==14)
    jLabel1.setText("����\u1FE6���");
      if(current==15)
    jLabel1.setText("��\u1FE6��");
      if(current==16)
    jLabel1.setText("�\u1F78");
      if(current==17)
    jLabel1.setText("��\u1F7A�");
      if(current==18)
    jLabel1.setText("��\u1FD6�");
      if(current==19)
    jLabel1.setText("\u1F51�\u1F72�");
      if(current==20)
    jLabel1.setText("�\u1F56�");
      if(current==21)
    jLabel1.setText("�����");
      if(current==22)
    jLabel1.setText("�������");
      if(current==23)
    jLabel1.setText("�����������");
      if(current==24)
    jLabel1.setText("����");
      if(current==25)
    jLabel1.setText("��\u1F78�");
      if(current==26)
    jLabel1.setText("\u1F01�����");
      if(current==27)
    jLabel1.setText("����");
      if(current==28)
    jLabel1.setText("������");
      if(current==29){
      jButton4.setText("�����");
      this.remove(jButton4);
      this.remove(jButton2);
      this.remove(jButton1);
      this.remove(jTextField1);
      this.remove(jTextField2);
      this.remove(jLabel3);
      current++;
    class Applet11_jButton3_actionAdapter
         implements
         java.awt.event.ActionListener {
       Applet11 adaptee;
       Applet11_jButton3_actionAdapter(Applet11 adaptee) {
         this.adaptee = adaptee;
       public void actionPerformed(ActionEvent e) {
          adaptee.jButton3_actionPerformed(e);
    private void jButton3_actionPerformed(ActionEvent e) {
      System.exit(0);
      class Applet11_jButton2_actionAdapter
          implements
          java.awt.event.ActionListener {
        Applet11 adaptee;
        Applet11_jButton2_actionAdapter(Applet11 adaptee) {
          this.adaptee = adaptee;
        public void actionPerformed(ActionEvent e) {
          adaptee.jButton2_actionPerformed(e);
      class Applet11_jButton1_actionAdapter
          implements
          java.awt.event.ActionListener {
        Applet11 adaptee;
        Applet11_jButton1_actionAdapter(Applet11 adaptee) {
          this.adaptee = adaptee;
        public void actionPerformed(ActionEvent e) {
          adaptee.jButton1_actionPerformed(e);
      }I have created its html file named Applet 11!
    When i open the Applet11.html on the explorer without the images and it's folder the applet is working properly!
    When i open it with the images i get the message :
    java.security.AccessControlExeption :access denied java.io.FilePermission Image8.jpg
    Can anyone tell me what to do so the Applet can work with the images?
    Thank you:-)

    Can anyone tell me what to do so the Applet can work
    with the images?Yes. Sign the applet.
    http://java.sun.com/sfaq/
    http://java.sun.com/developer/technicalArticles/Security/Signed/

  • Change size of windows in internet explorer

    I just had the computer "tuned up" remotly by Hp the manufactorer.
    Now my internet windows are smaller then usually in the "restore down" size.
    I made the window larger by using the arrows and dragging the side or corner to the size I want but as soon as I close the window and open it again, it is back to the size before I draged the sides to make it larger.
    (In "Maximize mode" the window still fills out the whole sreen, however I never really use that size)
    My Question is,
    What do I have to do to keep the size I had dragged the sides to, so when I open the window again, it is still the size I had when I closed it?
    I had this problem once before and it was a simple solution, I just can't remember it.
    Thank you,
    Nelson 96

    Hi,
    Please use that max size and next time it will keep max size for you. Adjusting manually it will stay manually.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Assertion failed when open Applet in Internet Explorer 7.0 ( Windows Vista)

    I have a problem when loading an applet ( calling from a ASP.NET page ) only in 1 computer ( the others in my company is fine )
    Here is capture of the error dialog i got : http://img134.imageshack.us/my.php?image=editorproblemszx1.jpg
    I try to re-install all Java related program but the problem is still existed ( The applet worked fine before ) . I think re-install Windows Vista can fix but it is the last choice of course
    Would someone please to help me to solve this problem ( not sure if this is a Microsoft's problem ) .
    Thanx in advance

    It seems to be a bug related to fonts.
    Here's a bug related to your one, might give you a clue about some workaround:
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4599491

  • How to run Java JDBC-Applet in Internet Explorer Browser?

    I developed an java application which uses JDBC thin client driver to fetch data from oracle 8i tables, applet to display some graphics.
    I am able to compile to code in dos prompt.
    Iam unable to run using Appletviewer and IE browser.
    In IE browser it displays applet started in status bar but it displays nothing.
    In appletviewer it gives
    Warning : Can't read appletviewer properties file :c:\.....
    java.security.AccessControlException......security expression specifying database host and port.
    Environment : Oracle 9iDS release 2.0
    Can anybody help me by providing the solution.

    http://java.sun.com/developer/technicalArticles/Security/applets/
    - Saish

  • Png images not shown in applet when opened in internet explorer

    hi all,
    I am using some transparent PNG images in my applet . Its working properly in appletviewer as well as netscape but images just disappear in internet explorer.
    same image appears in internet explorer but not in applet in internet explorer.
    can anybody help me ?
    thanks

    The java version that IE has doesn't have support for PNG, only gif and jpeg.

  • Java Applet problem in Internet Explorer 7 with Tab Key

    Hi
    I am developing some web pages in which iam using a java applet. so far the intended user are supposed to be using Internet Explorer 7. the problem i am facing is that when i press the tab key within the applet. the control get transferred to new tab position in the web page outside the applet and i have to click back to the applet to get control again transferred to the applet.
    i want to restrict the control of tab so that when tab is pressed within the applet the tab should not move to next tab position in the page and remain confined within the applet.
    Can someone please help me how can i achieve this and whether i have to do coding for it in the applet or in the web page...so that within the applet the Internet Explorer tab control should remain disabled..

    Hello all,
    I have the same problem, but I don't found a solution. Could you resolved the problem and who??
    Thank you.
    Jorge

  • Image loading problem on internet Explorer

    Hello EveryBody
    I am doing an java game.My starting class is a class that extends JApplet.Then I am calling a class that extends JFrame.Then i am calling a class which extends a canvas.In the constructor of my canvas class i call a method loadImage(),which loads all the images used in my game.My game is working fine in appletViewer.but it is not working in internet Explorer.When I commennted the method loadImage() inside consructor of canvas class ,then my game is working on internet Explorer.I think there is some problem in loading the images.I am using .png images,which has a size of 87.2KB only which is very little as compared to an PC game.plz help me
    Regards
    Srikant

    internet explorer by default uses the MSVM (microsoft's version of the Sun VM). This VM only runs Java 1.1 code. You can check if this is the problem by using this 1.1-compliant applet below:
    import java.applet.*;
    import java.awt.*;
    public class Test extends Applet {
         public void init() {
              setLayout(new FlowLayout(FlowLayout.CENTER));
              add(new Label(System.getProperty("java.version")));
    }compile that code with these parameters:
    javac -target 1.1 Test.javause this HTML:
    <applet code="Test" width="400" height="400"></applet>when you run the applet in Internet Explorer, if you see anything about "Java 1.1" or something similiar, then the problem is that IE is using the MSVM instead of the Sun VM.
    You may want to also run this applet in Mozilla Firefox, because Firefox uses the correct JRE that is installed on the system. If the applet running in Firefox does NOT say 1.1 (e.g 1.4, 1.5, etc), then you have the correct JRE. In this case, go to Internet Explorer -> Tools -> Internet Options -> Advanced. Scroll down this list until you see the checkmark that says "Use JRE x.x.x for <applet> tag (requires restart)." Ensure this box is checked.
    If that box is already checked, or if the applet in Firefox also says "1.1," then you probably don't have the latest JRE installed. See http://java.com/ to grab the latest JRE.

  • Viewing live streams in Internet Explorer

    I'm using Quicktime Broadcaster to generate a live .sdp feed and play through Streaming Server. I've tried embedding HTML code on a web site to view the feed (using the QT plugin rather than the player) and I can view the feeds ok on a Mac in Safari but all I get in IE8 is the QT logo
    Any help?

    Hi...
    I wanna know if you did it. I'm a studant and I have some interests to learn how can I show a streaming video through internet.
    A couple weeks ago I did two applications make message exchanges by sockets.. I think is something like this. But I wanna know how to get de webcam image and transform it in a stream of bytes to send it to another application.. so the socket server must pass that bytes to the applet in Internet Explorer... I think so... xD
    C ya.

  • Stream live video in internet explorer.

    hallo
    To stream the live video from webcam in internet explorer in system ( as server) and then sending that output to the (PPC) Pocket PC ( as client ) . in the
    PPC also video should stream in internet explorer.
    plz suggest me some valuable procedures. any person had tried or done this ,plz send me the sample code.
    Very Urgent
    thanx.

    Hi...
    I wanna know if you did it. I'm a studant and I have some interests to learn how can I show a streaming video through internet.
    A couple weeks ago I did two applications make message exchanges by sockets.. I think is something like this. But I wanna know how to get de webcam image and transform it in a stream of bytes to send it to another application.. so the socket server must pass that bytes to the applet in Internet Explorer... I think so... xD
    C ya.

  • Loading Flashpaper SWF in Internet Explorer issue

    Hi Guys,
    I am stuck up with how to go about getting a FlashPaper
    SWF(10 MB in size) to stream in Internet Explorer.
    The file shows up only after the download is complete.
    It streams in Mozilla and Opera.
    Is there a separate plugin that needs to be added to IE for
    streaming?
    Sample FlashPaper file(10 MB in size) :
    http://206.72.242.5/ilrn/books/WL_EBK/WL_EBK/swf/WL_Basico_1.swf

    Raja, I found the difference between IE and Firefox.
    With IE the FILE_NAME parameter of DOCUMENT_ADD_ATTACHMENT contains the path and in the code of
      PERFORM so_split_file_and_extension IN PROGRAM saplso30
              USING file_name l_only_name l_extension.
    there's the test
      if filename ca '/\:'.
        call function 'SO_SPLIT_FILE_AND_PATH'
             exporting
                  full_name     = filename
             importing
                  stripped_name = file.
      else.
        file = filename.
      endif.
    Now, in the 'SO_SPLIT_FILE_AND_PATH' FM there's the creation that fails.
        create object frontend_services.
    With Firefox the FILE_NAME parameter of DOCUMENT_ADD_ATTACHMENT doesn't contain the path, so the FM above isn't called and there's no creation of frontend_services.
    Very strange! Does SAP know this issue?
    Regards,
    Angelo

  • Internet Explorer Crashing over Windows XP SP2

    Hi all,
    I have a problem with Internet Explorer 6.0. I've developed a web page that has an applet (without user interface) and an ActiveX developed with C++. My problem is that sometimes when I push a button that invokes an applet method, Internet Explorer crash and a window shows that Internet Explorer has caused a serious error.
    I am using JRE 1.5.0_03, Internet Explorer SP2 and Windows Xp Professional SP2.
    Can anybody tell me what could be the problem?.
    Best Regards.
    Antonio

    Hi here is the error:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c9110f3, pid=2964, tid=3772
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_02-b09 mixed mode, sharing)
    # Problematic frame:
    # C [ntdll.dll+0x10f3]
    --------------- T H R E A D ---------------
    Current thread (0x02dd5a08): JavaThread "AWT-EventQueue-3" [_thread_in_native, id=3772]
    siginfo: ExceptionCode=0xc0000005, writing address 0x0727ff74
    Registers:
    EAX=0x00000000, EBX=0x2b3a44d0, ECX=0x0723f884, EDX=0x0727ff6c
    ESP=0x0723f894, EBP=0x0723f8cc, ESI=0x0727ff58, EDI=0x0727ff6c
    EIP=0x7c9110f3, EFLAGS=0x00010246
    Top of Stack: (sp=0x0723f894)
    0x0723f894: 6d0d7b09 0727ff6c 02dd5a08 02dd5ac4
    0x0723f8a4: 6d0c7ea3 02dd5a08 2ab51d70 2b3a44d0
    0x0723f8b4: 20aeb258 00000000 0723f8a8 0723fde4
    0x0723f8c4: 6d0f3240 00000000 0723f900 0434899c
    0x0723f8d4: 02dd5ac4 0723f910 00000001 20aeb258
    0x0723f8e4: 0723f8dc 00000000 0723f910 2b3a5430
    0x0723f8f4: 00000000 2b3a44d0 0723f910 0723f930
    0x0723f904: 04342923 00000000 04346449 20aeb258
    Instructions: (pc=0x7c9110f3)
    0x7c9110e3: 24 00 00 00 00 90 90 90 90 90 8b 54 24 04 33 c0
    0x7c9110f3: ff 4a 08 75 26 89 42 0c f0 ff 4a 04 7d 03 c2 04
    Stack: [0x07140000,0x07240000), sp=0x0723f894, free space=1022k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ntdll.dll+0x10f3]
    j sun.awt.windows.WComponentPeer._dispose()V+0
    j sun.awt.windows.WComponentPeer.disposeImpl()V+23
    j sun.awt.windows.WObjectPeer.dispose()V+42
    j java.awt.Component.removeNotify()V+211
    j java.awt.Container.removeNotify()V+38
    j java.awt.Container.removeNotify()V+38
    j java.awt.Container.removeNotify()V+38
    j java.awt.Frame.removeNotify()V+51
    j java.awt.Window$1DisposeAction.run()V+105
    j java.awt.Window.doDispose()V+16
    j java.awt.Window.dispose()V+1
    j sun.awt.AppContext$4.run()V+16
    J java.awt.event.InvocationEvent.dispatch()V
    J java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V
    J java.awt.EventDispatchThread.pumpOneEventForHierarchy(ILjava/awt/Component;)Z
    J java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j java.awt.EventDispatchThread.run()V+9
    v ~StubRoutines::call_stub
    V [jvm.dll+0x818e8]
    V [jvm.dll+0xd4989]
    V [jvm.dll+0x817b9]
    V [jvm.dll+0x81516]
    V [jvm.dll+0x9c1d6]
    V [jvm.dll+0xfeeab]
    V [jvm.dll+0xfee79]
    C [msvcrt.dll+0x2a3b0]
    C [kernel32.dll+0xb50b]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.awt.windows.WComponentPeer._dispose()V+0
    j sun.awt.windows.WComponentPeer.disposeImpl()V+23
    j sun.awt.windows.WObjectPeer.dispose()V+42
    j java.awt.Component.removeNotify()V+211
    j java.awt.Container.removeNotify()V+38
    j java.awt.Container.removeNotify()V+38
    j java.awt.Container.removeNotify()V+38
    j java.awt.Frame.removeNotify()V+51
    j java.awt.Window$1DisposeAction.run()V+105
    j java.awt.Window.doDispose()V+16
    j java.awt.Window.dispose()V+1
    j sun.awt.AppContext$4.run()V+16
    J java.awt.event.InvocationEvent.dispatch()V
    J java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V
    J java.awt.EventDispatchThread.pumpOneEventForHierarchy(ILjava/awt/Component;)Z
    J java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j java.awt.EventDispatchThread.run()V+9
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0428a708 JavaThread "Thread-17" [_thread_blocked, id=3088]
    0x0430c3d8 JavaThread "TimerQueue" daemon [_thread_blocked, id=2196]
    0x07312d40 JavaThread "Thread-16" [_thread_blocked, id=236]
    =>0x02dd5a08 JavaThread "AWT-EventQueue-3" [_thread_in_native, id=3772]
    0x04229bd8 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=3456]
    0x04221440 JavaThread "AWT-Shutdown" [_thread_blocked, id=1664]
    0x0430b290 JavaThread "TimerQueue" daemon [_thread_blocked, id=3372]
    0x073f5cd0 JavaThread "TimerQueue" daemon [_thread_blocked, id=3964]
    0x042253e8 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=2312]
    0x04221870 JavaThread "AWT-Windows" daemon [_thread_in_native, id=2732]
    0x04220420 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=2720]
    0x02e530c8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3336]
    0x02d96ce8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2276]
    0x02df6be8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2028]
    0x02dbfd60 JavaThread "Finalizer" daemon [_thread_blocked, id=2284]
    0x02dbfaa0 JavaThread "Reference Handler" daemon [_thread_blocked, id=2320]
    0x02df4a78 JavaThread "main" [_thread_in_native, id=2988]
    Other Threads:
    0x02e13418 VMThread [id=2316]
    0x02e03e58 WatcherThread [id=1916]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 168K [0x20ad0000, 0x20b70000, 0x21230000)
    eden space 512K, 24% used [0x20ad0000, 0x20aefd40, 0x20b50000)
    from space 64K, 64% used [0x20b60000, 0x20b6a598, 0x20b70000)
    to space 64K, 0% used [0x20b50000, 0x20b50000, 0x20b60000)
    tenured generation total 1408K, used 1278K [0x21230000, 0x21390000, 0x26ad0000)
    the space 1408K, 90% used [0x21230000, 0x2136faa0, 0x2136fc00, 0x21390000)
    compacting perm gen total 8192K, used 1917K [0x26ad0000, 0x272d0000, 0x2aad0000)
    the space 8192K, 23% used [0x26ad0000, 0x26caf540, 0x26caf600, 0x272d0000)
    ro space 8192K, 62% used [0x2aad0000, 0x2afd8018, 0x2afd8200, 0x2b2d0000)
    rw space 12288K, 46% used [0x2b2d0000, 0x2b85c620, 0x2b85c800, 0x2bed0000)
    Dynamic libraries:
    0x00400000 - 0x00419000      C:\Archivos de programa\Internet Explorer\iexplore.exe
    0x7c910000 - 0x7c9c6000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c901000      C:\WINDOWS\system32\kernel32.dll
    0x77be0000 - 0x77c38000      C:\WINDOWS\system32\msvcrt.dll
    0x77d10000 - 0x77da0000      C:\WINDOWS\system32\USER32.dll
    0x77ef0000 - 0x77f36000      C:\WINDOWS\system32\GDI32.dll
    0x77f40000 - 0x77fb6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x77da0000 - 0x77e4c000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e50000 - 0x77ee1000      C:\WINDOWS\system32\RPCRT4.dll
    0x77730000 - 0x7789c000      C:\WINDOWS\system32\SHDOCVW.dll
    0x77a50000 - 0x77ae5000      C:\WINDOWS\system32\CRYPT32.dll
    0x77af0000 - 0x77b02000      C:\WINDOWS\system32\MSASN1.dll
    0x76890000 - 0x76914000      C:\WINDOWS\system32\CRYPTUI.dll
    0x76bf0000 - 0x76c1e000      C:\WINDOWS\system32\WINTRUST.dll
    0x76c50000 - 0x76c78000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x770f0000 - 0x7717c000      C:\WINDOWS\system32\OLEAUT32.dll
    0x774b0000 - 0x775ed000      C:\WINDOWS\system32\ole32.dll
    0x597f0000 - 0x59844000      C:\WINDOWS\system32\NETAPI32.dll
    0x77180000 - 0x77227000      C:\WINDOWS\system32\WININET.dll
    0x76f20000 - 0x76f4d000      C:\WINDOWS\system32\WLDAP32.dll
    0x77bd0000 - 0x77bd8000      C:\WINDOWS\system32\VERSION.dll
    0x773a0000 - 0x774a2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x7c9d0000 - 0x7d1ee000      C:\WINDOWS\system32\SHELL32.dll
    0x58c30000 - 0x58cc7000      C:\WINDOWS\system32\comctl32.dll
    0x5b150000 - 0x5b188000      C:\WINDOWS\system32\uxtheme.dll
    0x75f30000 - 0x7602c000      C:\WINDOWS\system32\BROWSEUI.dll
    0x20000000 - 0x20013000      C:\WINDOWS\system32\browselc.dll
    0x77b10000 - 0x77b32000      C:\WINDOWS\system32\appHelp.dll
    0x76f90000 - 0x7700f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77010000 - 0x770e0000      C:\WINDOWS\system32\COMRes.dll
    0x41000000 - 0x41014000      C:\ARCHIV~1\Google\GOOGLE~1\GOOGLE~3.DLL
    0x60000000 - 0x6001e000      C:\ARCHIV~1\Google\GOOGLE~1\GoogleDesktopAPI2.dll
    0x62000000 - 0x62034000      C:\ARCHIV~1\Google\GOOGLE~1\GoogleDesktopResources_es.dll
    0x77230000 - 0x772ce000      C:\WINDOWS\system32\urlmon.dll
    0x77fc0000 - 0x77fd1000      C:\WINDOWS\system32\Secur32.dll
    0x779f0000 - 0x77a45000      C:\WINDOWS\System32\cscui.dll
    0x765b0000 - 0x765cd000      C:\WINDOWS\System32\CSCDLL.dll
    0x778f0000 - 0x779e7000      C:\WINDOWS\system32\SETUPAPI.dll
    0x10000000 - 0x1000e000      C:\Archivos de programa\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
    0x7c340000 - 0x7c396000      C:\WINDOWS\system32\MSVCR71.dll
    0x01060000 - 0x01070000      C:\ARCHIV~1\FlashGet\jccatch.dll
    0x76980000 - 0x76a31000      C:\WINDOWS\system32\SXS.DLL
    0x011b0000 - 0x0123c000      C:\WINDOWS\system32\shdoclc.dll
    0x01240000 - 0x01516000      C:\WINDOWS\system32\xpsp2res.dll
    0x75dd0000 - 0x75e61000      C:\WINDOWS\system32\mlang.dll
    0x71a50000 - 0x71a5a000      C:\WINDOWS\system32\wsock32.dll
    0x71a30000 - 0x71a47000      C:\WINDOWS\system32\WS2_32.dll
    0x71a20000 - 0x71a28000      C:\WINDOWS\system32\WS2HELP.dll
    0x43000000 - 0x43005000      C:\Archivos de programa\Google\Google Desktop Search\GoogleDesktopNetwork1.dll
    0x44000000 - 0x4401a000      C:\Archivos de programa\Google\Google Desktop Search\GoogleDesktopNetwork2.dll
    0x719d0000 - 0x71a10000      C:\WINDOWS\system32\mswsock.dll
    0x66740000 - 0x66799000      C:\WINDOWS\system32\hnetcfg.dll
    0x76ea0000 - 0x76edc000      C:\WINDOWS\system32\RASAPI32.DLL
    0x76e50000 - 0x76e62000      C:\WINDOWS\system32\rasman.dll
    0x76e70000 - 0x76e9f000      C:\WINDOWS\system32\TAPI32.dll
    0x76e40000 - 0x76e4e000      C:\WINDOWS\system32\rtutils.dll
    0x76b00000 - 0x76b2e000      C:\WINDOWS\system32\WINMM.dll
    0x7d1f0000 - 0x7d4a2000      C:\WINDOWS\system32\msi.dll
    0x76630000 - 0x766e4000      C:\WINDOWS\system32\USERENV.dll
    0x71a10000 - 0x71a18000      C:\WINDOWS\System32\wshtcpip.dll
    0x77c40000 - 0x77c63000      C:\WINDOWS\system32\msv1_0.dll
    0x76d20000 - 0x76d39000      C:\WINDOWS\system32\iphlpapi.dll
    0x72250000 - 0x72255000      C:\WINDOWS\system32\sensapi.dll
    0x0ffd0000 - 0x0fff8000      C:\WINDOWS\system32\rsaenh.dll
    0x7d4b0000 - 0x7d793000      C:\WINDOWS\System32\mshtml.dll
    0x74650000 - 0x74677000      C:\WINDOWS\System32\msls31.dll
    0x74680000 - 0x746aa000      C:\WINDOWS\System32\msimtf.dll
    0x746b0000 - 0x746fb000      C:\WINDOWS\System32\MSCTF.dll
    0x76340000 - 0x7635d000      C:\WINDOWS\system32\IMM32.DLL
    0x325c0000 - 0x325d2000      C:\Archivos de programa\Microsoft Office\OFFICE11\msohev.dll
    0x75c00000 - 0x75c6e000      C:\WINDOWS\System32\jscript.dll
    0x67310000 - 0x6734f000      C:\WINDOWS\System32\iepeers.dll
    0x72f80000 - 0x72fa6000      C:\WINDOWS\System32\WINSPOOL.DRV
    0x45000000 - 0x4500c000      C:\Archivos de programa\Google\Google Desktop Search\gzlib.dll
    0x75d50000 - 0x75dc1000      C:\WINDOWS\System32\mshtmled.dll
    0x71aa0000 - 0x71ab2000      C:\WINDOWS\system32\MPR.dll
    0x75f10000 - 0x75f17000      C:\WINDOWS\System32\drprov.dll
    0x71bb0000 - 0x71bbe000      C:\WINDOWS\System32\ntlanman.dll
    0x71c70000 - 0x71c87000      C:\WINDOWS\System32\NETUI0.dll
    0x71c30000 - 0x71c70000      C:\WINDOWS\System32\NETUI1.dll
    0x71c20000 - 0x71c27000      C:\WINDOWS\System32\NETRAP.dll
    0x71b90000 - 0x71ba3000      C:\WINDOWS\System32\SAMLIB.dll
    0x75f20000 - 0x75f29000      C:\WINDOWS\System32\davclnt.dll
    0x72ca0000 - 0x72ca9000      C:\WINDOWS\system32\wdmaud.drv
    0x77ba0000 - 0x77ba7000      C:\WINDOWS\system32\midimap.dll
    0x76ee0000 - 0x76f07000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f80000 - 0x76f86000      C:\WINDOWS\system32\rasadhlp.dll
    0x6c2c0000 - 0x6c2f5000      C:\WINDOWS\System32\dxtrans.dll
    0x76ae0000 - 0x76af1000      C:\WINDOWS\System32\ATL.DLL
    0x6d940000 - 0x6d94a000      C:\WINDOWS\System32\ddrawex.dll
    0x736e0000 - 0x73729000      C:\WINDOWS\System32\DDRAW.dll
    0x73b40000 - 0x73b46000      C:\WINDOWS\System32\DCIMAN32.dll
    0x6c300000 - 0x6c35a000      C:\WINDOWS\System32\dxtmsft.dll
    0x6d590000 - 0x6d5a1000      C:\Archivos de programa\Java\jre1.5.0_02\bin\npjpi150_02.dll
    0x5f1f0000 - 0x5f207000      C:\WINDOWS\system32\OLEPRO32.DLL
    0x6d400000 - 0x6d417000      C:\Archivos de programa\Java\jre1.5.0_02\bin\jpiexp32.dll
    0x76f70000 - 0x76f78000      C:\WINDOWS\System32\winrnr.dll
    0x6d450000 - 0x6d468000      C:\Archivos de programa\Java\jre1.5.0_02\bin\jpishare.dll
    0x6d640000 - 0x6d7c5000      C:\ARCHIV~1\Java\JRE15~1.0_0\bin\client\jvm.dll
    0x6d280000 - 0x6d288000      C:\ARCHIV~1\Java\JRE15~1.0_0\bin\hpi.dll
    0x76bb0000 - 0x76bbb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d610000 - 0x6d61c000      C:\ARCHIV~1\Java\JRE15~1.0_0\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\ARCHIV~1\Java\JRE15~1.0_0\bin\java.dll
    0x6d630000 - 0x6d63f000      C:\ARCHIV~1\Java\JRE15~1.0_0\bin\zip.dll
    0x6d000000 - 0x6d166000      C:\Archivos de programa\Java\jre1.5.0_02\bin\awt.dll
    0x738c0000 - 0x73990000      C:\WINDOWS\system32\D3DIM700.DLL
    0x6d240000 - 0x6d27d000      C:\Archivos de programa\Java\jre1.5.0_02\bin\fontmanager.dll
    0x6d1f0000 - 0x6d203000      C:\Archivos de programa\Java\jre1.5.0_02\bin\deploy.dll
    0x6d5d0000 - 0x6d5ed000      C:\Archivos de programa\Java\jre1.5.0_02\bin\RegUtils.dll
    0x6d3e0000 - 0x6d3f4000      C:\Archivos de programa\Java\jre1.5.0_02\bin\jpicom32.dll
    0x6d4c0000 - 0x6d4d3000      C:\Archivos de programa\Java\jre1.5.0_02\bin\net.dll
    0x6e9c0000 - 0x6e9cc000      C:\WINDOWS\system32\corpol.dll
    0x73250000 - 0x73255000      C:\WINDOWS\system32\SOFTPUB.DLL
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\ARCHIV~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\ARCHIV~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_02 -Djavaplugin.nodotversion=150_02 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\ARCHIV~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol -Djavaplugin.vm.options=-Djava.class.path=C:\ARCHIV~1\Java\JRE15~1.0_0\classes -Xbootclasspath/a:C:\ARCHIV~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\ARCHIV~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_02 -Djavaplugin.nodotversion=150_02 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\ARCHIV~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol vfprintf
    java_command: <unknown>
    Environment Variables:
    PATH=C:\ARCHIV~1\Java\JRE15~1.0_0\bin;C:\Archivos de programa\Internet Explorer;;c:\oracle\ora92\bin;C:\Archivos de programa\Oracle\jre\1.3.1\bin;C:\Archivos de programa\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Archivos de programa\Symantec\pcAnywhere\;.
    USERNAME=avazquez
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 7, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 523760k(223540k free), swap 1279236k(963540k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_02-b09) for windows-x86, built on Mar 4 2005 01:53:53 by "java_re" with MS VC++ 6.0

  • Can't enable JRE applet in Interner Explorer?

    I can not enable java to run applets in internet explorer but It works fine in Firefox.
    I think the problem came up when I reset IE.
    -I've made sure all add-ons are enabled.
    -"Scripting of Java applets" is enabled under custom security settings.
    -I've reinstalled Java
    When I go to advanced internet options the option to use JRE is NOT there.
    Heres a pic of what should be coming up but its not:
    [WHAT SHOULD COME UP|http://www.windowsreference.com/images/ja/2.png]
    Also when I go to the Java control pannel the "Default Java for browsers" option looks like this - Pic
    (The Internet Explorer option is unavaliable)
    Please let me know how to fix this.
    Thanks
    Edited by: sk8ingten on Jan 25, 2009 12:30 PM
    Edited by: sk8ingten on Jan 25, 2009 12:36 PM

    Solved
    -I uninstalled java
    -Deleted the c:\program files\java directory file.
    -Restarted PC
    -Installed Java using internet explorer.

Maybe you are looking for

  • Resetting a view w/struts

    Hello This is a problem I am having w/ struts. I have a page, results_list1.jsp that has an href that calls, add1.jsp. Add1.jsp is the view for the data fields of the object. Add1.jsp has a submit that calls Add1Action. I have an Add1Form w/ Reset me

  • Value of the goods movement is negative in GR

    Dear all, While preparing GR for an imports sch agmnt we are receiving an error message "Value of the goods movement is negative". System is giving the diagnosis of the error message are "Sub-contracting by-product value is higher than GR value" & "D

  • CP 7 and 8 on the same computer

    Are there any issues with installing Captivate 7 and 8 on the same computer.  I want to try CP8, but I need CP7 for some client work. Thanks.

  • U3 fails to initialize

    I have a U3 USB drive that used to boot up when I inserted it.  It now seems to fail to initialize to U3, even though the system recognizes the drive.  I also recently bought another Sandisk U3 dirve and it will not boot either.  I suspect this is re

  • Read Statement antwork

    Hi All, I am having one record in it_vbrk table and in it_vbrp table i am having three records with same vbeln with three items. Loop at it_vbrk into wa_vbrk. Move: XXXX to XXXX Read table it_vbrp into wa_vbrp with key vbeln = wa_vbrk-vbeln. if sy-su