Can't see applets in IE6

i'm probaly just being stupid about something, but I can't see any of my applets in IE6. The applet viewer runs them just fine, but ever since i ran windows update IE hates me. It's worth noteing that i can see the little animation (somewhere around the new to java page) applet, but i can't even get the HelloWorld applet to show in the browser.
What do i have to configure to see more then a gray box in my browser?
Current IE settings
Java (Sun)
CHECKED Use Java 2 v1.4.2_01 for <applet>
Microsoft VM
CHECKED Java console enabled
CHECKED Java logging enabled
CHECKED JIT compiler for virtual machine enabled
Like i said, i'm probaly being really stupid about something. I'm really new to java and programing in general. Any help is worshipfully appericated.

Are errors showing in MS Java
Console(View->Java Console)? So that's where it spits out it's error log to, thanks.
Does it work with the <OBJECT> tag but not <APPLET> tag
(See HTMLConverter)?I'll get back to you on that one.
This is the error log out of the MS java console.
Error loading class: HelloWorld
java.lang.NoClassDefFoundError
java.lang.ClassNotFoundException: HelloWorld
     at com/ms/vm/loader/URLClassLoader.loadClass
     at com/ms/vm/loader/URLClassLoader.loadClass
     at com/ms/applet/AppletPanel.securedClassLoad
     at com/ms/applet/AppletPanel.processSentEvent
     at com/ms/applet/AppletPanel.processSentEvent
     at com/ms/applet/AppletPanel.run
     at java/lang/Thread.run
From what i can make from it, java can't find the .class file for some reason. HelloWorld.class is in the same dir as the html file and the source .java file.
Only other thing i can make out of the errors are that the web browser (or really the MS virtual mechine) craps it's self for some reason, and that just junks up everything after that.

Similar Messages

  • Can't see applets!!

    what ever I did I can't see the applets in: http://java.sun.com/products/java-media/jmf/2.1.1/samples/samples/TVWeddingSingera.html
    I'm getting: "loading java applet faild". I've install JMF, and Java software from http://www.java.com/en/index.jsp and still not working! what else I need to do? I got internet explorer 6 & windows 2000. help me! thanx

    If you type appletviewer in DOS shell, does it say unrecognized command. If so you need to set the path variable to point to the JDK bin directory.
    http://galileo.spaceports.com/~ibidris/

  • Can you see applet?

    http://au.geocities.com/phlipping/java/
    I can see it fine, but my friend tried to run it, and just got a empty grey box where the applet should be.
    I just want to know, can anyone else see it fine?
    It's my first applet, so i'd like to know if it works or not

    even if your friend is downloading the latest JRE, Internet Explorer will still use the 1.1 plugin, so your friend will still see the grey box. What you need to do is use HtmlConverter (found in your SDK bin) to convert the <applet> tag into the appropiate <object> tag. So if you're using a 1.4 compiler, use the option "Any 1.4 or higher"

  • ServerSocket can't see Applet

    I must be missing something obvious here. My ServerSocket sits
    waiting for a connection but the Applet (on the same machine)
    never requests a connection. See the Server and Client below...
    The applet comes up fine and tries to connect. The server never
    gets the request. Is there something else I need to do???
    Client Applet:
    ProxyAddr = InetAddress.getLocalHost();
    try {
    aSocket = new Socket(ProxyAddr , 4400);
    out = new PrintWriter(aSocket.getOutputStream(), true);
    in = new BufferedReader(new InputStreamReader(aSocket.getInputStream()));
    } catch (UnknownHostException e)
    Applet1.decThreads();
    System.err.println("Don't know about host: "+host+lineSep);
    Applet1.callbackData(lineSep+"Couldn't find host "+host, ip, host);
    return;
    } catch (IOException e)
    Applet1.decThreads();
    System.err.println("Couldn't get I/O for the connection .");
    Applet1.callbackData(lineSep+"failed to get I/O for the connection"+lineSep, ip, host);
    return;
    Server:
    serverSocket = new ServerSocket(4400);
    if (debug)
    System.out.println("Starting to listen...");
         while (listening)
                   new AppletProxyThread(serverSocket.accept()).start();
         serverSocket.close();
    Thanks for helping.

    I am running the server on a unix machine. Could this be the
    problem? What should I use? I thought that maybe I should
    be getting the address by passing the path to some api
    like "getLocalIP("/home/myid/my_html/theServer") or something like it.
    There's so much on the web but I need an example that works.
    I've tried just using new socket("127.0.0.1", portNum); but this
    doesn't work, also tried the aforementioned 'getLocalHost' and
    tried new socket("www.mydomain.com", portNum);, Also doesn't
    work.
    The real path is /home/myuserid/my_html/myServer.jar... I am
    confused. It of course works when I run the server on my Windows machine
    using JBuilder.

  • I can't see my image in an applet

    I am drawing an image in an applet, I see the image in jbuilder but i can't see it with IE 5.0 , I am using graphis 2D, please help me

    this is the code in the applet class:
    package untitled9;
    import java.awt.event.*;
    import java.awt.*;
    import java.net.*;
    import java.applet.*;
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2003</p>
    * <p>Company: </p>
    * @author unascribed
    * @version 1.0
    public class Applet1 extends Applet
    boolean isStandalone = false;
    Image imagen,fondo;
    double alpha = -0.2;
    int r = 0;
    URL u,fondo_url;
    PopupMenu popupMenu1 = new PopupMenu();
    MenuItem menuItem1 = new MenuItem();
    //Get a parameter value
    public String getParameter(String key, String def)
    return isStandalone ? System.getProperty(key, def) :
    (getParameter(key) != null ? getParameter(key) : def);
    //Construct the applet
    public Applet1()
    //Initialize the applet
    public void init()
    try
    jbInit();
    catch(Exception e)
    e.printStackTrace();
    //Component initialization
    private void jbInit() throws Exception
    menuItem1.setLabel("rotar");
    this.addMouseListener(new java.awt.event.MouseAdapter()
    public void mousePressed(MouseEvent e)
    this_mousePressed(e);
    popupMenu1.add(menuItem1);
    //Get Applet information
    public String getAppletInfo()
    return "Applet Information";
    //Get parameter info
    public String[][] getParameterInfo()
    return null;
    public void paint(Graphics g)
    Graphics g_3 = g.create();
    Graphics2D g2 = (Graphics2D)g_3;
    Graphics2D g3 = (Graphics2D)g;
    if (r==1)
    g2.rotate(alpha,100,100);
    try
    fondo_url = new URL("file:/C:/Documents and Settings/macastro/Escritorio/untitled9/src/untitled9/fondo.gif");
    catch (MalformedURLException e)
    g3.drawString ("Mal formado el URL",10,10);
    fondo = getImage(fondo_url);
    g3.drawImage(fondo,100,100,this);
    try
    u = new URL("file:/C:/Documents and Settings/macastro/Escritorio/untitled9/src/untitled9/imagen.gif");
    catch (MalformedURLException e)
    g2.drawString ("Mal formado el URL",10,10);
    imagen = getImage(u);
    g2.drawImage(imagen,100,100,this);
    void this_mousePressed(MouseEvent e)
    r = 1;
    alpha+=-0.1;
    repaint();
    and this is the code in the html file:
    <html>
    <head>
    <title>
    HTML Test Page
    </title>
    </head>
    <body>
    untitled9.Applet1 will appear below in a Java enabled browser.<br>
    <applet
    codebase = "."
    code = "untitled9.Applet1.class"
    name = "TestApplet"
    width = "400"
    height = "300"
    hspace = "0"
    vspace = "0"
    align = "middle"
    >
    </applet>
    </body>
    </html>

  • At what percent e-tester can identify java applet objects. Plz see message.

    Hi,
    Me new to this group.
    I am here to find out whether e-tester can test java applet or not.
    I am testing a web application which is completely Java applet base.
    Envirnment used jdk1.1.8 and Jre1.4.
    I have been trying to identify applet object used in our application.
    problem i faced:
    when i set java option in option seting for both Microsoft applet and sun system applet. where my system having jdk1.1.8 and jre1.4.
    Recording on above envirnment I am able to record my application but i can not play that. On this case I marked Abbot script generated.
    when uninstall jdk and jre.
    I am able to record and play my application still some step. But I am not able to customize it.
    this application also uses StarTree a hyporbolic tree API from
    "Business Object" now bought by SAP (this api used inside applet
    frame).
    Is any one work on e-tester to automate in and out of an application which is built in java applet.
    Can some one help me to figure out where I am doing wrong.
    Before this I worked on e-tester year back to automate one of our application and still we are doing our regression on that.
    Expecting some help

    When you say customize, are you referring to parameters? They is handled differently with applets. I believe there is documentation on this.

  • How can I see my 2 ITunes account on my apple TV?

    Hello,
    I have two ITunes accounts (for some reason that I can't remember at one point it was modified) and I have purchases under my A account and purchases under my B account (both under the same credit card information and email, just different ID).
    For some reason I can only see on my new generation Apple TV the purchases that I did with the most recent account. To see the other movies, I can't see them under my "movies" on the Applet TV , I have to go to "computer" and see my libraries. I want to see "all" my movies under my purchases, without going to my library
    I appreciate your support on this
    Thanks and have  a nice day

    Both iTunes and ATV can only connect and activte to one AppleId.  So you can only see one account.  If you are seeing other content on your computer it must be downloaed locally.  So you will be able to see what ever content your local iTunes content has under the Computers icon.  So to see the movies in iTunes you would go to Computers > Movies. 
    You might also contact Apple customer service to see if they can merge your other account into this one.

  • Can't see whats wrong? help

    Hi i've made an applet that has 12 buttons on it, and when the user presses 4 buttons it is stored in an array called myList. Each time a button is pressed sequenceCheck method i created gets called. This has a list of the possible correct combinations that the user could press the buttons in. I have 23 solutions so far. Most of them are working fine however any solution that has the button10, button11 or button 12 in it doesn't seem to work? And i'm not sure why? I've looked at the code over and over and can't see what i've done wrong.
    Solutions that don't seem to work are: solution 3, solution 7, solution 8, solution 9, solution 11, solution 13, solution 16, solution 17, solution 18, solution 18, solution 19, solution 20, solution 22 and solution 23. Sll of which have ethier button 10, button 11 or button 12 in it?
    If anyone can see what i've done it would really appreciate the help.
    package stampGame;
    // Description:
    // Directory: c:\myjava\teaching
    // Date: 5/4/00
    // Uses:
    // Comments:  note the convenient use of the Point object for
    //  manipulating coordinates
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.lang.*;
    import java.util.*;
    import javax.swing.JOptionPane;
    public class StampGame extends Applet implements ActionListener{
         final int N= 12;
         final int P = 3;
         final int Q = 3;
         String[] buttonLabel = {"1","2","3","4","5","6","7","8","9","10","11","12"};
         Button[] button = new Button[N];
         private int combinationsFound = 0;
         ArrayList<String> myList = new ArrayList<String>();
         ArrayList<String> solutionsFound = new ArrayList<String>();
         public void init(){
              setBackground(Color.blue);     // Applet background color
              setLayout(null); 
              System.out.println(myList);
              for(int i=0; i<N; ++i)
                   button[i] = new Button(buttonLabel);
                   button[i].setFont(new java.awt.Font("Dialog", 1, 24));
                   button[i].setBackground(Color.white); // buttons colour
                   button[i].addActionListener(this);
                   add(button[i]);
         public void paint (Graphics g){
              Insets a = insets();
              button[0].reshape(10+a.left,10+a.top, 100,100);
              button[1].reshape(110+a.left,10+a.top, 100,100);
              button[2].reshape(210+a.left,10+a.top, 100,100);
              button[3].reshape(310+a.left,10+a.top, 100,100);
              button[4].reshape(10+a.left,100+a.top, 100,100);
              button[5].reshape(110+a.left,100+a.top, 100,100);
              button[6].reshape(210+a.left,100+a.top, 100,100);
              button[7].reshape(310+a.left,100+a.top, 100,100);
              button[8].reshape(10+a.left,200+a.top, 100,100);
              button[9].reshape(110+a.left,200+a.top, 100,100);
              button[10].reshape(210+a.left,200+a.top, 100,100);
              button[11].reshape(310+a.left,200+a.top, 100,100);
              g.drawString("Number of combinations found: " + combinationsFound, 500, 100);
         public void actionPerformed(ActionEvent e) {
              // TODO Auto-generated method stub
              if(e.getSource() == button[0]){
                   System.out.println("one");          
                   myList.add("button1");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[1]){
                   System.out.println("two");
                   myList.add("button2");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[2]){
                   System.out.println("three");     
                   myList.add("button3");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[3]){
                   System.out.println("four");
                   myList.add("button4");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[4]){
                   System.out.println("five");
                   myList.add("button5");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[5]){
                   System.out.println("six");     
                   myList.add("button6");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[6]){
                   System.out.println("seven");
                   myList.add("button7");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[7]){
                   System.out.println("eight");
                   myList.add("button8");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[8]){
                   System.out.println("nine");          
                   myList.add("button9");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[9]){
                   System.out.println("ten");     
                   myList.add("button10");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[10]){
                   System.out.println("eleven");
                   myList.add("button11");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[11]){
                   System.out.println("twelve");          
                   myList.add("button12");
                   System.out.println(myList);
                   sequenceCheck();
         public void sequenceCheck(){
              //ArrayList<String> solutionsFound = new ArrayList<String>();
              ArrayList<String> solution1 = new ArrayList<String>();
              ArrayList<String> solution2 = new ArrayList<String>();
              ArrayList<String> solution3 = new ArrayList<String>();
              ArrayList<String> solution4 = new ArrayList<String>();
              ArrayList<String> solution5 = new ArrayList<String>();
              ArrayList<String> solution6 = new ArrayList<String>();
              ArrayList<String> solution7 = new ArrayList<String>();
              ArrayList<String> solution8 = new ArrayList<String>();
              ArrayList<String> solution9 = new ArrayList<String>();
              ArrayList<String> solution10 = new ArrayList<String>();
              ArrayList<String> solution11 = new ArrayList<String>();
              ArrayList<String> solution12 = new ArrayList<String>();
              ArrayList<String> solution13 = new ArrayList<String>();
              ArrayList<String> solution14 = new ArrayList<String>();
              ArrayList<String> solution15 = new ArrayList<String>();
              ArrayList<String> solution16 = new ArrayList<String>();
              ArrayList<String> solution17 = new ArrayList<String>();
              ArrayList<String> solution18 = new ArrayList<String>();
              ArrayList<String> solution19 = new ArrayList<String>();
              ArrayList<String> solution20 = new ArrayList<String>();
              ArrayList<String> solution21 = new ArrayList<String>();
              ArrayList<String> solution22 = new ArrayList<String>();
              ArrayList<String> solution23 = new ArrayList<String>();
              Collections.sort(myList);
              // SOLUTION ONE
              solution1.add("button1");
              solution1.add("button2");
              solution1.add("button3");
              solution1.add("button4");
              System.out.println("Solution 1 = " + solution1);
              // SOLUTION 2
              solution2.add("button5");
              solution2.add("button6");
              solution2.add("button7");
              solution2.add("button8");
              System.out.println("Solution2 = " + solution2);
              // SOLUTION 3
              solution3.add("button9");
              solution3.add("button10");
              solution3.add("button11");
              solution3.add("button12");
              System.out.println("Solution3 = " + solution3);
              // SOLUTION 4
              solution4.add("button1");
              solution4.add("button2");
              solution4.add("button5");
              solution4.add("button6");
              System.out.println("Solution4 = " + solution4);
              // SOLUTION 5
              solution5.add("button3");
              solution5.add("button4");
              solution5.add("button7");
              solution5.add("button8");
              System.out.println("Solution5 = " + solution5);
              // SOLUTION 6
              solution6.add("button2");
              solution6.add("button3");
              solution6.add("button6");
              solution6.add("button7");
              System.out.println("Solution6 = " + solution6);
              // SOLUTION 7
              solution7.add("button5");
              solution7.add("button6");
              solution7.add("button9");
              solution7.add("button10");
              System.out.println("Solution7 = " + solution7);
              // SOLUTION 8
              solution8.add("button7");
              solution8.add("button8");
              solution8.add("button11");
              solution8.add("button12");
              System.out.println("Solution8 = " + solution8);
              // SOLUTION 9
              solution9.add("button6");
              solution9.add("button7");
              solution9.add("button10");
              solution9.add("button11");
              System.out.println("Solution9 = " + solution9);
              // SOLUTION 10
              solution10.add("button1");
              solution10.add("button2");
              solution10.add("button6");
              solution10.add("button7");
              System.out.println("Solution10 = " + solution10);
              // SOLUTION 11
              solution11.add("button5");
              solution11.add("button6");
              solution11.add("button10");
              solution11.add("button11");
              System.out.println("Solution11 = " + solution11);
              // SOLUTION 12
              solution12.add("button2");
              solution12.add("button3");
              solution12.add("button7");
              solution12.add("button8");
              System.out.println("Solution12 = " + solution12);
              // SOLUTION 13
              solution13.add("button6");
              solution13.add("button7");
              solution13.add("button11");
              solution13.add("button12");
              System.out.println("Solution13 = " + solution13);
              // SOLUTION 14
              solution14.add("button2");
              solution14.add("button3");
              solution14.add("button5");
              solution14.add("button6");
              System.out.println("Solution14 = " + solution14);
              // SOLUTION 15
              solution15.add("button3");
              solution15.add("button4");
              solution15.add("button6");
              solution15.add("button7");
              System.out.println("Solution15 = " + solution15);
              // SOLUTION 16
              solution16.add("button6");
              solution16.add("button7");
              solution16.add("button9");
              solution16.add("button11");
              System.out.println("Solution16 = " + solution16);
              // SOLUTION 17
              solution17.add("button7");
              solution17.add("button8");
              solution17.add("button10");
              solution17.add("button11");
              System.out.println("Solution17 = " + solution17);
              // SOLUTION 18
              solution18.add("button1");
              solution18.add("button5");
              solution18.add("button6");
              solution18.add("button10");
              System.out.println("Solution18 = " + solution18);
              // SOLUTION 19
              solution19.add("button2");
              solution19.add("button6");
              solution19.add("button7");
              solution19.add("button11");
              System.out.println("Solution19 = " + solution19);
              // SOLUTION 20
              solution20.add("button3");
              solution20.add("button7");
              solution20.add("button8");
              solution20.add("button12");
              System.out.println("Solution20 = " + solution20);
              // SOLUTION 21
              solution21.add("button2");
              solution21.add("button5");
              solution21.add("button6");
              solution21.add("button9");
              System.out.println("Solution21 = " + solution21);
              // SOLUTION 22
              solution22.add("button3");
              solution22.add("button6");
              solution22.add("button7");
              solution22.add("button10");
              System.out.println("Solution22 = " + solution22);
              // SOLUTION 23
              solution23.add("button4");
              solution23.add("button7");
              solution23.add("button8");
              solution23.add("button11");
              System.out.println("Solution23 = " + solution23);
              System.out.println("buttons pressed = " + myList);
              System.out.println("solutions found = " + solutionsFound);
              Collections.sort(myList);
              if(myList.equals(solution1)){
                   if(solutionsFound.contains("solution1")){
                        JOptionPane.showMessageDialog(null, "Combinations already found");
                        myList.clear();
                   else {
                        combinationsFound++;
                        JOptionPane.showMessageDialog(null, "Winner");
                        myList.clear();
                        repaint();
                        solutionsFound.add("solution1");
                        System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution2)){
                        if(solutionsFound.contains("solution2")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution2");
                             System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution3)){
                   if(solutionsFound.contains("solution3")){
                        JOptionPane.showMessageDialog(null, "Combinations already found");
                        myList.clear();
                   else {
                        combinationsFound++;
                        JOptionPane.showMessageDialog(null, "Winner");
                        myList.clear();
                        repaint();
                        solutionsFound.add("solution3");
                        System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution4)){
                        if(solutionsFound.contains("solution4")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution4");
                             System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution5)){
                        if(solutionsFound.contains("solution5")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution5");
                             System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution6)){
                        if(solutionsFound.contains("solution6")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution6");
                             System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution7)){
                        if(solutionsFound.contains("solution7")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution7");
                             System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution8)){
                        if(solutionsFound.contains("solution8")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution8");
                             System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution9)){
                        if(solutionsFound.contains("solution9")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution9");
                             System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution10)){
                        if(solutionsFound.contains("solution10")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution10");
                             System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution11)){
         if(solutionsFound.contains("solution11")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution11");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution12)){
         if(solutionsFound.contains("solution12")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution12");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution13)){
         if(solutionsFound.contains("solution13")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution13");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution14)){
         if(solutionsFound.contains("solution14")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution14");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution15)){
         if(solutionsFound.contains("solution15")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution15");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution16)){
         if(solutionsFound.contains("solution16")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution16");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution17)){
         if(solutionsFound.contains("solution17")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution17");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution18)){
         if(solutionsFound.contains("solution18")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution18");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution19)){
         if(solutionsFound.contains("solution19")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution19");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution20)){
         if(solutionsFound.contains("solution20")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution20");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution21)){
         if(solutionsFound.contains("solution21")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution21");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution22)){
         if(solutionsFound.contains("solution22")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution22");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution23)){
         if(solutionsFound.contains("solution23")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution23");
              System.out.println("solutions found = " + solutionsFound);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    From [How To Ask Questions The Smart Way|http://www.catb.org/~esr/faqs/smart-questions.html]
    [Volume is not precision|http://www.catb.org/~esr/faqs/smart-questions.html#volume] :
    You need to be precise and informative. This end is not served by simply dumping huge volumes of code or data into a help request. If you have a large, complicated test case that is breaking a program, try to trim it and make it as small as possible.
    This is useful for at least three reasons. One: being seen to invest effort in simplifying the question makes it more likely you'll get an answer, Two: simplifying the question makes it more likely you'll get a useful answer. Three: In the process of refining your bug report, you may develop a fix or workaround yourself.
    Also please read up on god-objects (wikipedia has a write up on this) which is cured by dividing and conquering. Finally, you really need to simplify this code by using loops with your arrays. You can shorten this beast by over 70%, easy making it much, much easier to debug.
    Edited by: Encephalopathic on Mar 30, 2008 6:59 AM

  • Can you see page background?

    Hi,
    I have created a site using Dreamweaver 8 as I usually would.
    The client claims she cannot see the page background on the main
    page of the site.
    Could someone please tell me...can you see a background image
    (paperbutterfly in different languages) on the main page I have
    linked?
    Thanks in advance.
    Test
    Server Site
    Site

    Looking good here on Windows XP in IE6, Firefox 1.5.0.4 and
    in Opera 8.54 -
    it shows up fine in all.
    HTH, take care.
    Shane H
    [email protected]
    http://www.avenuedesigners.com
    =============================================
    Proud GAWDS Member
    http://www.gawds.org/showmember.php?memberid=1495
    Delivering accessible websites to all ...
    =============================================
    "zelky" <[email protected]> wrote in message
    news:e6rtru$dhf$[email protected]..
    > Hi,
    >
    > I have created a site using Dreamweaver 8 as I usually
    would. The client
    > claims she cannot see the page background on the main
    page of the site.
    >
    > Could someone please tell me...can you see a background
    image
    > (paperbutterfly
    > in different languages) on the main page I have linked?
    >
    > Thanks in advance.
    >
    >
    http://members.westnet.com.au/zelky/paperbutterfly/index.html
    >
    >
    http://paperbutterfly.com.au/index.html
    >

  • Can't view applets anymore

    Hi, I hope someone here can help me. I'm using IE 6.0, and I can't view applets now that I could 2 days ago. I'm not sure if I inadvertantly deleted something I shouldn't have or what. Thinking that I may have, I did a system restore to an earlier point in time where I could see them fine, but it didn't fix the problem. I don't even see the grey field, just the 3 colored geometric shapes in the upper left corner. I could really use some help. My e-mail is [email protected], or you can find me on AIM at Luvvabelle if that would be easier. Thanks.
    ~Jennifer~

    Nevermind. I ended up deleting everything named java and reinstalling the entire platform. That worked.
    ~Jennifer~

  • Suddenly I can't see movie files thumbnails

    Hi.
    Till now I always can see the thumbs of my movie files (wmv, avi, mpg, etc) now, I can only see an icon. I don't change anything and I can still vieweing the pics thumb.
    The checkbox "Always show icons, never thumbnails" is unchecked.
    What can hapen?
    Thanks

    I formatted and reinstalled W7, but I have the same problem. I edited the keys on registry. I have some subkeys (7 I believe) but only two haven't the NoExplorer dword value (I put all on 1)
    However I still have the same trouble.
    My explorer.exe.txt:
    Process PID CPU Description Company Name
    System Idle Process 0 88.24  
    csrss.exe 432  Client Server Runtime Process Microsoft Corporation
    wininit.exe 488  Windows Start-Up Application Microsoft Corporation
    csrss.exe 496  Client Server Runtime Process Microsoft Corporation
    winlogon.exe 544  Windows Logon Application Microsoft Corporation
    rundll32.exe 1832  Windows host process (Rundll32) Microsoft Corporation
    ashDisp.exe 1840  avast! service GUI component ALWIL Software
    VCDDaemon.exe 1848  Virtual CloneDrive Daemon Elaborate Bytes AG
    PNXSERVR.exe 1860   
    sidebar.exe 1868  Windows Desktop Gadgets Microsoft Corporation
    ObjectDock.exe 1876  ObjectDock Stardock
     iexplore.exe 3936  Internet Explorer Microsoft Corporation
      iexplore.exe 2184  Internet Explorer Microsoft Corporation
    explorer.exe 1920  Windows Explorer Microsoft Corporation
     procexp.exe 1960 10.29 Sysinternals Process Explorer Sysinternals - www.sysinternals.com
    Process: explorer.exe Pid: 1920
    Name Description Company Name Version
    {6AF0698E-D558-4F6E-9B3C-3716689AF493}.2.ver0x0000000000000002.db   
    {8998687A-57EB-4797-8D0F-456564E14C81}.2.ver0x0000000000000001.db   
    {AFBF9F1A-8EE8-4C77-AF34-C647E37CA0D9}.1.ver0x0000000000000005.db   
    {DDF571F2-BE98-426D-8288-1A9A39C3FDA2}.2.ver0x0000000000000001.db   
    Actioncenter.dll Action Center Microsoft Corporation 6.1.7048.0
    ActionCenter.dll.mui Action Center Microsoft Corporation 6.1.7048.0
    actxprxy.dll ActiveX Interface Marshaling Library Microsoft Corporation 6.1.7048.0
    ADVAPI32.dll Advanced Windows 32 Base API Microsoft Corporation 6.1.7048.0
    AltTab.dll Windows Shell Alt Tab Microsoft Corporation 6.1.7048.0
    apphelp.dll Application Compatibility Client Library Microsoft Corporation 6.1.7048.0
    ATL.DLL ATL Module for Windows XP (Unicode) Microsoft Corporation 3.5.2284.0
    audiodev.dll Portable Media Devices Shell Extension Microsoft Corporation 6.1.7048.0
    AUDIOSES.DLL Audio Session Microsoft Corporation 6.1.7048.0
    authui.dll Windows Authentication UI Microsoft Corporation 6.1.7048.0
    BatMeter.dll Battery Meter Helper DLL Microsoft Corporation 6.1.7048.0
    bthprops.cpl Bluetooth Control Panel Applet Microsoft Corporation 6.1.7048.0
    CFGMGR32.dll Configuration Manager DLL Microsoft Corporation 6.1.7048.0
    CLBCatQ.DLL COM+ Configuration Catalog Microsoft Corporation 2001.12.7978.0
    comctl32.dll User Experience Controls Library Microsoft Corporation 6.10.7048.0
    comctl32.dll.mui User Experience Controls Library Microsoft Corporation 6.10.7048.0
    credssp.dll Credential Delegation Security Package Microsoft Corporation 6.1.7048.0
    CRYPT32.dll Crypto API32 Microsoft Corporation 6.1.7048.0
    CRYPTBASE.dll Base cryptographic API DLL Microsoft Corporation 6.1.7048.0
    CRYPTSP.dll Cryptographic Service Provider API Microsoft Corporation 6.1.7048.0
    CRYPTUI.dll Microsoft Trust UI Provider Microsoft Corporation 6.1.7048.0
    CSCAPI.dll Offline Files Win32 API Microsoft Corporation 6.1.7048.0
    CSCDLL.dll Offline Files Temporary Shim Microsoft Corporation 6.1.7048.0
    cscobj.dll In-proc COM object used by clients of CSC API Microsoft Corporation 6.1.7048.0
    cscui.dll Client Side Caching UI Microsoft Corporation 6.1.7048.0
    cversions.2.db   
    cversions.2.db   
    cversions.2.db   
    cversions.2.db   
    davclnt.dll Web DAV Client DLL Microsoft Corporation 6.1.7048.0
    DAVHLPR.dll DAV Helper DLL Microsoft Corporation 6.1.7048.0
    DEVOBJ.dll Device Information Set DLL Microsoft Corporation 6.1.7048.0
    DEVRTL.dll Device Management Run Time Library Microsoft Corporation 6.1.7048.0
    dhcpcsvc.DLL DHCP Client Service Microsoft Corporation 6.1.7048.0
    dhcpcsvc6.DLL DHCPv6 Client Microsoft Corporation 6.1.7048.0
    DockShellHook.dll   
    drprov.dll Microsoft Remote Desktop Server Network Provider Microsoft Corporation 6.1.7048.0
    DUI70.dll Windows DirectUI Engine Microsoft Corporation 6.1.7048.0
    DUser.dll Windows DirectUser Engine Microsoft Corporation 6.1.7048.0
    dwmapi.dll Microsoft Desktop Window Manager API Microsoft Corporation 6.1.7048.0
    dxp.dll Device Stage Shell Extension Microsoft Corporation 6.1.7048.0
    ehSSO.dll Windows Media Center Shell Service Object Microsoft Corporation 6.1.7048.0
    EhStorAPI.dll Windows Enhanced Storage API Microsoft Corporation 6.1.7048.0
    EhStorShell.dll Windows Enhanced Storage Shell Extension DLL Microsoft Corporation 6.1.7048.0
    es.dll COM+ Microsoft Corporation 2001.12.7978.0
    explorer.exe Windows Explorer Microsoft Corporation 6.1.7048.0
    EXPLORERFRAME.dll ExplorerFrame Microsoft Corporation 6.1.7048.0
    framedynos.dll WMI SDK Provider Framework Microsoft Corporation 6.1.7048.0
    fwpuclnt.dll FWP/IPsec User-Mode API Microsoft Corporation 6.1.7048.0
    FXSAPI.dll Microsoft  Fax API Support DLL Microsoft Corporation 6.1.7048.0
    FXSRESM.DLL Microsoft  Fax Resource DLL Microsoft Corporation 6.1.7048.0
    FXSRESM.dll.mui Microsoft  Fax Resource DLL Microsoft Corporation 6.1.7048.0
    fxsst.dll Fax Service Microsoft Corporation 6.1.7048.0
    fzshellext.dll fzshellext Dynamic Link Library  3.2.3.1
    gameux.dll Games Explorer Microsoft Corporation 6.1.7048.0
    GDI32.dll GDI Client DLL Microsoft Corporation 6.1.7048.0
    gdiplus.dll Microsoft GDI+ Microsoft Corporation 6.1.7048.0
    hcproviders.dll Action Center Providers Microsoft Corporation 6.1.7048.0
    hgcpl.dll HomeGroup Control Panel Microsoft Corporation 6.1.7048.0
    HID.DLL Hid User Library Microsoft Corporation 6.1.7048.0
    IconCodecService.dll Converts a PNG part of the icon to a legacy bmp icon Microsoft Corporation 6.1.7048.0
    ieframe.dll Internet Explorer Microsoft Corporation 8.0.7048.0
    ieproxy.dll IE ActiveX Interface Marshaling Library Microsoft Corporation 8.0.7048.0
    iertutil.dll Run time utility for Internet Explorer Microsoft Corporation 8.0.7048.0
    imageres.dll Windows Image Resource Microsoft Corporation 6.1.7048.0
    imapi2.dll Image Mastering API v2 Microsoft Corporation 6.1.7048.0
    IMM32.dll Multi-User Windows IMM32 API Client DLL Microsoft Corporation 6.1.7048.0
    index.dat   
    index.dat   
    index.dat   
    index.dat   
    IPHLPAPI.DLL IP Helper API Microsoft Corporation 6.1.7048.0
    kernel32.dll Windows NT BASE API Client DLL Microsoft Corporation 6.1.7048.0
    KERNELBASE.dll Windows NT BASE API Client DLL Microsoft Corporation 6.1.7048.0
    KernelBase.dll.mui Windows NT BASE API Client DLL Microsoft Corporation 6.1.7048.0
    LINKINFO.dll Windows Volume Tracking Microsoft Corporation 6.1.7048.0
    locale.nls   
    LPK.dll Language Pack Microsoft Corporation 6.1.7048.0
    MLANG.dll Multi Language Support DLL Microsoft Corporation 6.1.7048.0
    MMDevApi.dll MMDevice API Microsoft Corporation 6.1.7048.0
    MPR.dll Multiple Provider Router DLL Microsoft Corporation 6.1.7048.0
    MSASN1.dll ASN.1 Runtime APIs Microsoft Corporation 6.1.7048.0
    MSCTF.dll MSCTF Server DLL Microsoft Corporation 6.1.7048.0
    MsftEdit.dll Rich Text Edit Control, v4.1 Microsoft Corporation 5.41.21.2509
    msi.dll Windows Installer Microsoft Corporation 5.0.7048.0
    msiltcfg.dll Windows Installer Configuration API Stub Microsoft Corporation 5.0.7048.0
    mssprxy.dll Microsoft Search Proxy Microsoft Corporation 7.0.7048.0
    msvcrt.dll Windows NT CRT DLL Microsoft Corporation 7.0.7048.0
    msxml6.dll MSXML 6.0 SP3 Microsoft Corporation 6.30.1124.0
    msxml6r.dll XML Resources Microsoft Corporation 6.0.3883.0
    NaturalLanguage6.dll Natural Language Development Platform 6 Microsoft Corporation 6.1.7048.0
    netshell.dll Network Connections Shell Microsoft Corporation 6.1.7048.0
    netutils.dll Net Win32 API Helpers DLL Microsoft Corporation 6.1.7048.0
    NetworkExplorer.dll Network Explorer Microsoft Corporation 6.1.7048.0
    nlaapi.dll Network Location Awareness 2 Microsoft Corporation 6.1.7048.0
    NLSData0009.dll Microsoft English Natural Language Server Data and Code Microsoft Corporation 6.1.7048.0
    NLSData000a.dll Microsoft Spanish Natural Language Server Data and Code Microsoft Corporation 6.1.7048.0
    NLSLexicons0009.dll Microsoft English Natural Language Server Data and Code Microsoft Corporation 6.1.7048.0
    NLSLexicons000a.dll Microsoft Spanish Natural Language Server Data and Code Microsoft Corporation 6.1.7048.0
    Normaliz.dll Unicode Normalization DLL Microsoft Corporation 6.1.7048.0
    normnfd.nls   
    npmproxy.dll Network List Manager Proxy Microsoft Corporation 6.1.7048.0
    NSI.dll NSI User-mode interface DLL Microsoft Corporation 6.1.7048.0
    ntdll.dll NT Layer DLL Microsoft Corporation 6.1.7048.0
    ntlanman.dll Microsoft® Lan Manager Microsoft Corporation 6.1.7048.0
    ntmarta.dll Windows NT MARTA provider Microsoft Corporation 6.1.7048.0
    ntshrui.dll Shell extensions for sharing Microsoft Corporation 6.1.7048.0
    ole32.dll Microsoft OLE for Windows Microsoft Corporation 6.1.7048.0
    OLEACC.dll Active Accessibility Core Component Microsoft Corporation 7.0.0.0
    oleaccrc.dll Active Accessibility Resource DLL Microsoft Corporation 7.0.0.0
    OLEAUT32.dll  Microsoft Corporation 6.1.7048.0
    pnidui.dll Network System Icon Microsoft Corporation 6.1.7048.0
    PortableDeviceApi.dll Windows Portable Device API Components Microsoft Corporation 6.1.7048.0
    PortableDeviceTypes.dll Windows Portable Device (Parameter) Types Component Microsoft Corporation 6.1.7048.0
    POWRPROF.dll Power Profile Helper DLL Microsoft Corporation 6.1.7048.0
    prnfldr.dll prnfldr dll Microsoft Corporation 6.1.7048.0
    profapi.dll User Profile Basic API Microsoft Corporation 6.1.7048.0
    PROPSYS.dll Microsoft Property System Microsoft Corporation 7.0.7048.0
    provsvc.dll Windows HomeGroup Microsoft Corporation 6.1.7048.0
    PSAPI.DLL Process Status Helper Microsoft Corporation 6.1.7048.0
    QAgent.dll Quarantine Agent Proxy Microsoft Corporation 6.1.7048.0
    QUtil.dll Quarantine Utilities Microsoft Corporation 6.1.7048.0
    rarext.dll WinRAR shell extension Alexander Roshal 3.80.0.0
    RPCRT4.dll Remote Procedure Call Runtime Microsoft Corporation 6.1.7048.0
    RpcRtRemote.dll Remote RPC Extension Microsoft Corporation 6.1.7048.0
    rsaenh.dll Microsoft Enhanced Cryptographic Provider Microsoft Corporation 6.1.7048.0
    samcli.dll Security Accounts Manager Client DLL Microsoft Corporation 6.1.7048.0
    SAMLIB.dll SAM Library DLL Microsoft Corporation 6.1.7048.0
    ScenicAnimation.dll Scenic Animation Module Microsoft Corporation 6.1.7048.0
    SearchFolder.dll SearchFolder Microsoft Corporation 6.1.7048.0
    sechost.dll Host for SCM/SDDL/LSA Lookup APIs Microsoft Corporation 6.1.7048.0
    Secur32.dll Security Support Provider Interface Microsoft Corporation 6.1.7048.0
    SETUPAPI.dll Windows Setup API Microsoft Corporation 6.1.7048.0
    shacct.dll Shell Accounts Classes Microsoft Corporation 6.1.7048.0
    shdocvw.dll Shell Doc Object and Control Library Microsoft Corporation 6.1.7048.0
    SHELL32.dll Windows Shell Common Dll Microsoft Corporation 6.1.7048.0
    SHLWAPI.dll Shell Light-weight Utility Library Microsoft Corporation 6.1.7048.0
    slc.dll Software Licensing Client Dll Microsoft Corporation 6.1.7048.0
    SndVolSSO.DLL SCA Volume Microsoft Corporation 6.1.7048.0
    SortDefault.nls   
    srchadmin.dll Indexing Options Microsoft Corporation 7.0.7048.0
    srvcli.dll Server Service Client DLL Microsoft Corporation 6.1.7048.0
    SSPICLI.DLL Security Support Provider Interface Microsoft Corporation 6.1.7048.0
    StaticCache.dat   
    stobject.dll Systray shell service object Microsoft Corporation 6.1.7048.0
    StructuredQuery.dll Structured Query Microsoft Corporation 7.0.7048.0
    SXS.DLL Fusion 2.5 Microsoft Corporation 6.1.7048.0
    SyncCenter.dll Microsoft Sync Center Microsoft Corporation 6.1.7048.0
    Syncreg.dll Microsoft Synchronization Framework Registration Microsoft Corporation 2007.94.7048.0
    taskschd.dll Task Scheduler COM API Microsoft Corporation 6.1.7048.0
    thumbcache.dll Microsoft Thumbnail Cache Microsoft Corporation 6.1.7048.0
    thumbcache_1024.db   
    thumbcache_1024.db   
    thumbcache_1024.db   
    thumbcache_256.db   
    thumbcache_256.db   
    thumbcache_256.db   
    thumbcache_256.db   
    thumbcache_32.db   
    thumbcache_32.db   
    thumbcache_32.db   
    thumbcache_96.db   
    thumbcache_96.db   
    thumbcache_96.db   
    thumbcache_idx.db   
    thumbcache_idx.db   
    thumbcache_idx.db   
    thumbcache_idx.db   
    thumbcache_sr.db   
    thumbcache_sr.db   
    thumbcache_sr.db   
    timedate.cpl Time Date Control Panel Applet Microsoft Corporation 6.1.7048.0
    tiptsf.dll Tablet PC Input Panel Text Services Framework Microsoft Corporation 6.1.7048.0
    urlmon.dll OLE32 Extensions for Win32 Microsoft Corporation 8.0.7048.0
    USER32.dll Multi-User Windows USER API Client DLL Microsoft Corporation 6.1.7048.0
    USERENV.dll Userenv Microsoft Corporation 6.1.7048.0
    USP10.dll Uniscribe Unicode script processor Microsoft Corporation 1.626.7048.0
    UxTheme.dll Microsoft UxTheme Library Microsoft Corporation 6.1.7048.0
    VERSION.dll Version Checking and File Installation Libraries Microsoft Corporation 6.1.7048.0
    webcheck.dll Web Site Monitor Microsoft Corporation 8.0.7048.0
    wer.dll Windows Error Reporting DLL Microsoft Corporation 6.1.7048.0
    werconcpl.dll PRS CPL Microsoft Corporation 6.1.7048.0
    wercplsupport.dll Problem Reports and Solutions Microsoft Corporation 6.1.7048.0
    wevtapi.dll Eventing Consumption and Configuration API Microsoft Corporation 6.1.7048.0
    WindowsCodecs.dll Microsoft Windows Codecs Library Microsoft Corporation 6.1.7048.0
    WININET.dll Internet Extensions for Win32 Microsoft Corporation 8.0.7048.0
    WINMM.dll MCI API DLL Microsoft Corporation 6.1.7048.0
    WINNSI.DLL Network Store Information RPC interface Microsoft Corporation 6.1.7048.0
    WINSPOOL.DRV Windows Spooler Driver Microsoft Corporation 6.1.7048.0
    WINSTA.dll Winstation Library Microsoft Corporation 6.1.7048.0
    WINTRUST.dll Microsoft Trust Verification APIs Microsoft Corporation 6.1.7048.0
    wkscli.dll Workstation Service Client DLL Microsoft Corporation 6.1.7048.0
    Wlanapi.dll Windows WLAN AutoConfig Client Side API DLL Microsoft Corporation 6.1.7048.0
    wlanutil.dll Windows Wireless LAN 802.11 Utility DLL Microsoft Corporation 6.1.7048.0
    WLDAP32.dll Win32 LDAP API DLL Microsoft Corporation 6.1.7048.0
    WMASF.DLL Windows Media ASF DLL Microsoft Corporation 12.0.7048.7000
    WMVCore.DLL Windows Media Playback/Authoring DLL Microsoft Corporation 12.0.7048.7000
    wpdshext.dll Portable Devices Shell Extension Microsoft Corporation 6.1.7048.0
    wpdshserviceobj.dll Windows Portable Device Shell Service Object Microsoft Corporation 6.1.7048.0
    WS2_32.dll Windows Socket 2.0 32-Bit DLL Microsoft Corporation 6.1.7048.0
    WSCAPI.dll Windows Security Center API Microsoft Corporation 6.1.7048.0
    wscinterop.dll Windows Health Center WSC Interop Microsoft Corporation 6.1.7048.0
    wscui.cpl Action Center Microsoft Corporation 6.1.7048.0
    WTSAPI32.dll Windows Remote Desktop Server SDK APIs Microsoft Corporation 6.1.7048.0
    wwanapi.dll Mbnapi Microsoft Corporation 6.1.7048.0
    wwapi.dll WWAN API Microsoft Corporation 8.1.2.0
    XmlLite.dll Microsoft XmlLite Library Microsoft Corporation 1.3.1000.0
    zipfldr.dll Compressed (zipped) Folders Microsoft Corporation 6.1.7048.0
    Thanks

  • I can't see 'Object selector' in the IDS MC

    In the IDS MC, when I chose Configuration Settings I can't see 'Object selector'. And then I can't select any IDS sensor. I can only work with 'Group Global'.
    Have you any ideas how I can resolve it ?

    There is a known problem in some cases with a CMF server in SSL mode and clients using the JRE 1.3.1 without SP2. This problem affects applets and
    causes them to not initialize correctly. Typically you will see an empty area where the applets data should be.
    The known workaround for this is to browse to the desktop using this URL:
    https://:1742/login.html
    Instead of the standard URL:
    http://:1741
    This will bypass the initializer problem and you should be up and running OK.

  • Can i download java for my ipad, the problem is i open glovis.usgs from my ipad, but i can't see the full page, cause the page need a java...help me please

    Can i download java for my ipad, the problem is i open glovis.usgs from my ipad, but i can't see the full page, cause the page need a java...help me please

    Nope. The iPad (and iPhone and iPod touch) cannot execute Java applets. It's a limitation in iOS from the beginning (just like lack of Flash). You will either need to use a desktop computer or access a desktop computer via RDP or VNC to access that page on iPad.mIn short: there is no native way to use a Java applet on iOS.

  • HELP!!!!!! I can't see my song names on my ipod

    Hi!
    I already have tunes on my computer which i have dragged across to i tunes and the box that says name is left blank, i think i have deleted the id tags for the songs , i have hundreds of songs so there's no way i can possibly go into all of them and change in manually, is there another way i can do this?
    Please help me, i can't see what songs i've got on my ipod without going through them all
      Windows XP Pro  

    Basically when you use javax (swing), your applet requires a Java plugin because the native JVM that works with the good old AWT is too old to handle swing. Since you're using JDK1.2, you'll need to put your HTML file thru the HTMLConverter (if you're using JDK1.3.1_01 or higher, there is no need to the HTMLConverter -- as a matter of fact, using a HTML file that's been converted with the HTMLConverter will probably give you problem with JDK1.3.1_01 or higher).
    Here is a link that will give give you more info:
    http://home.attbi.com/~aokabc/appletFAQ/applet.htm
    If this helps, don't forget the Dukes
    V.V.

  • How can I see my config result without siebel server?

    I am a new learner for siebel.
    I have got the Siebel 8.1 client, tools, sample DB.
    I want to create some applets and config some MVG, Link, Join, PickList and so on.
    In my opinion, I can use tools to do these things and after compiling, then move the repository to Siebel server.
    But can I see my config result without siebel server?
    And where to download the Siebel server?
    Siebel Business Applications Release 8.1.1.0 Media Pack for Microsoft Windows (32-bit)
    Download Siebel Business Applications Version 8.1.1.0 Quick Installation Guide V14590-01 390K
    Download Siebel Business Applications Version 8.1.1.0 Bookshelf V22856-01 150M
    Download Siebel Business Applications Version 8.1.1.0 Third-Party Documentation V14959-01 6.9M
    Download Siebel Business Applications Version 8.1.1.0 Base Applications for Windows (Part 1 of 2) V14866-01 Part 1 of 2 1.9G
    Download Siebel Business Applications Version 8.1.1.0 Base Applications for Windows (Part 2 of 2) V14866-01 Part 2 of 2 463M
    Download Siebel Business Applications Version 8.1.1.0 Siebel Client (Part 1 of 2) V14869-01 Part 1 of 2 1.9G
    Download Siebel Business Applications Version 8.1.1.0 Siebel Client (Part 2 of 2) V14869-01 Part 2 of 2 624M
    Download Siebel Business Applications Version 8.1.1.0 Siebel Client Part 2 (Part 1 of 2) V15040-01 Part 1 of 2 1.3G
    Download Siebel Business Applications Version 8.1.1.0 Siebel Client Part 2 (Part 2 of 2) V15040-01 Part 2 of 2 953M
    Download Siebel Business Applications Version 8.1.1.0 Siebel Tools V15391-01 1.9G
    Download Siebel Business Applications Version 8.1.1.0 Siebel Business Rules V15464-01 442M
    Download Siebel Business Applications Version 8.1.1.0 Strong Encryption Pack V14513-01 225M
    Download Siebel Business Applications Version 8.1.1.0 ImageCreator Files V14502-01 213M
    Download Siebel Business Applications Version 8.1.1.0 English Language Extension Pack (Part 1 of 2) V14496-01 Part 1 of 2 1.9G
    Download Siebel Business Applications Version 8.1.1.0 English Language Extension Pack (Part 2 of 2) V14496-01 Part 2 of 2 600M
    Download Siebel Business Applications Version 8.1.1.0 Self-Service Applications V14474-01 406M
    Download Siebel Business Applications Version 8.1.1.0 eMail Marketing Integrated Server Windows V14834-01 98M
    Download Oracle Business Intelligence Product Support Information (CD) B45928-01 116K
    Download Oracle BI Publisher Enterprise 10.1.3.4.0 for Microsoft Windows (Part 1 of 2) B50931-01 Part 1 of 2 598M
    Download Oracle BI Publisher Enterprise 10.1.3.4.0 for Microsoft Windows (Part 2 of 2) B50931-01 Part 2 of 2 162M
    Download Oracle BI Publisher Desktop 10.1.3.4.0 for Microsoft Windows B50929-01 118M
    Total: 21

    Hi,
    to see and check your configuration changes while developing you do not need to apply repository changes and move the changes to the server.
    You can easily check everything locally on your computer.
    What you need:
    * Siebel Tools
    * Siebel Developer Web Client
    * a local database
    -> Compile any changes you made to your local SRF file which is used by Siebel developer client (usually it resides in Siebel Installation folder \ client \ OBJECTS \ language)
    -> Start Developer Web Client and check your changes.
    As you continue your development, you only need to compile from Siebel Tools and your client will be automatically closed and re-opened.
    This is basic Siebel development. You might want to read the Siebel Bookshelf for further details.

Maybe you are looking for

  • Connecting my MacBook Pro to a TV

    I own a MacBook Pro 7,1. 2.4 GHz. Intel Core Duo. 13 inch. 4GB memory What do I need to connect it to my TV please?

  • MDB and Database - Listener port stops working

    Hi, I have created an MDB which does the following when a message is received from the queue. 1. Store message in database 2. do some processing At step 1, if there is any issue with the database connection (e.g. database is not available etc), I rol

  • Finding EXPORT pair of an IMPORT statement

    Hi! I found an IMPORT xyz INTO xyz FROM MEMORY ID xyz. statement in a user-exit. However I don't know exactly where is it's pair, and I don't know the easiest way to identify it's program, where this global variable is filled. It could be in other us

  • Traditional character support --Locale

    We need to have traditional character support(chinese, japanese etc) for our applications. The traditional text is available in the oracle database and is displayed correctly in toad but when we access it thru browser/stand alone java app, it is not

  • Move CUCM VM from one UCS220 to another during maint window

    Hello, I understand it is possible and supported to be able to cold migrate / host to host move a CUCM VM from one Cisco C220 server to another during a maint window to deal with a server issue. However I can't seem to find the exact process to follo