Swing in windows 98

I ran a small pgm on swing in windows 98.import javax.swing.*;
import javax.swing.border.*;
import java.awt.*;
public class ddsw1{
public static void main(String arg[])
JFrame fmain=new JFrame("Line Border Test");
Border border=BorderFactory.createLineBorder(Color.red,10);
JLabel label=new JLabel(" Line Border");
label.setBorder(border);
fmain.getContentPane().add(label);
fmain.setSize(100,100);
fmain.setVisible(true);
I didn't give any error in compilation.But doesn't run.It shows java.lang.error.can't load javax.swing.plaf.metal.
pls help me.

hi,
i would try using a different L&F.
see if that works, maybe there was a problem with the Metal L&F.
possibly need to reinstall the jre.
good luck.

Similar Messages

  • Java Swing and WIndows User Localles

    HI,
    We need to develop a java applet/application which can be switchable at run time to accept and display characters in multilanaguages. This java applet will run on a windows 2000 server with multilanguage pack installed. Is it possible to dynamically switch languages at run time. The machines default localle and operating system installation is US English.
    We have tried some tests with traditional chinese and UI components in Swing but with no success in displaying or inputing valid chinese characters. Has anyone attempted a simliar thing and have any insights that may help.
    Thanks in Advance,
    Jono

    Yes. It's called JList. Have a look at the tutorial:
    http://java.sun.com/docs/books/tutorial/uiswing/index.html

  • Urgent pls:Swings in windows 98

    Im using Java 1.1.8 version in windows 98.Pgm in Swing compiles.But not running.What shoud I do?

    Set your autoexec.bat file to point to bin file:
    PATH c:../bin;
    And your class and java files must be under the source path.

  • Performance issue Java Swing under Windows 7

    Hello,
    we have MDI Java Swing application running under Window7. We got a big problem with performance in MDI Windows using AERO.
    Exist any way for Java to tell Win7 that it should not use Aero??
    Thank you,
    David.
    Edited by: 969767 on 6.11.2012 3:33

    If you try to open properties dialog for application (or app shortcut) there you can see "Compatibility" tab and there is check box "Disable visual themes". If we disable this theme our java swing app is very better performance under Windows 7. We need to disable visual theme via java code, if it is possible...
    Thanks.

  • Run project swing on Windows 2000, XP and Millenium

    Hi! I need help. I develop an swing application and run on NT very well, but I have problems when I run on W 2000, XP and Millenium. Is neccesary install JVM ? Must to configure any environment variable ? What happen with the graphics ? I don't create executable, only run with "java.exe", is it neccesary to create exe?
    Thanks
    Rocio

    Have you looked in Edelivery?
    Oracle Fusion Middleware, Windows 32-bit, media pack for GoldenGate (at the bottom of the page), then pick the release for Oracle 10g or 11g
    https://edelivery.oracle.com

  • Swing and windows system tray

    could anyone please tell me whether it is possible to have a java swing application running on a windows machine, minimise into the system tray?
    Thank-you.

    AFAIK no. This is because the system tray is rather platform specific. I believe it is possible to have your app tuck itself neatly away in a corner of your desktop, and obviously you can minimise to the task bar. However without soem kind of native addition (maybe a custom launcher?) you can't minimise to the system tray.
    Sorry
    :-(

  • How do I drag a file out of Swing to Windows

    I have an application which has BLOBs stored in a DB. From either Windows or Linux I can drag a file and drop it into my application and store it in the DB.
    I have also enabled a JTable to act as a Drag source, and I by encoding the result as a uri-list I can send back a reference to the data as a URL pointing to the internal web server in my app (using the new internal server in Java-6) and I can drag the object onto a KDE folder, or a KDE media player, or Konqueror and it works as expected.
    But under Windows only IE (or I presume Firefox but I have not tried that) seems to want to accept this uri-list, Windows Media Player and file Folders do not want to accept it.
    I need to stream the data out as the files are quite large and so creating a temporary file as the drag starts slows the start of the drag down in a very non-intuative way (for the user).
    I am using the Java-6 D&D mechanisms, using a TransferHandler.
    I also tried sending the data out as a file:// entry in the uri-list, but again only explorer seemed to understand it.
    Looking at the tutorial on D&D it only talks about object drags, where the object is the content rather than transfering files.
    Thanks for any help
    David

    That works if all the data is available as a file at the point where you start the drag.
    In my case it is not, I have got to go get it from the database, and that can take up to 30 seconds.
    So I want to do that bit when the drop happens (which users are used to as for instance when they copy a large file in Windows at the moment), not when the drag starts (which is very difficult to provide any visual feedback for).

  • Java Swing and windows listview control

    Hi,
    many programming languages have the listview control, to which you can define diferents kinds of data's organizers as Icon, Detail, List, etc.
    Somebody knows if java swing have a component as the listview ?
    thanks

    Yes. It's called JList. Have a look at the tutorial:
    http://java.sun.com/docs/books/tutorial/uiswing/index.html

  • Is there an issue with Swing on Windows 7?

    Hi,
    I'm running the latest version of Java on Windows 7. "java -version" returns the following:
    java version "1.6.0_21"
    Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
    Java HotSpot(TM) Client VM (build 17.0-b17, mixed mode, sharing)
    However, when I try to run the JDialog example at "http://download-llnw.oracle.com/javase/1.5.0/docs/api/" (JDialog | How to Make Dialogs | The DialogDemo Example), it is not being painted correctly.
    I have a dual monitor setup. The display adapter is an NVIDIA GeForce FX5200. Is this a Windows 7 issue, or is something going wrong with my display adapter?
    Thanks very much.

    In short, components are not being painted fully or at all. If I mouse over the dialog (which I'm guessing forces a repaint), sometimes a given component will appear. In any case, it's not subtle. You would definitely notice it if it were occurring.
    Thanks for having a look though. I guess I will try re-installing the JRE or research possible issues with my video card.

  • Swing child window

    I want to add a new window (child window) . it should have only close button (no minimize and no maximize) and it should be a normal window (not a JInternal frame but a normal child window). How can i do that?

    JDialog

  • Swing irregular windows?

    We are thinking to develop our Java GUI in irregular windows. One possible way is
    SkinLF, however, its latest verion (1.2.3) is not compatible with JDK1.4, while 1.4 is a must for us.
    Could someone kindly let me know some alternatives?
    Thanks a lot.

    Searching both the forums and the API docs would seem to indicate that the answer is no. But I was wondering if anyone knows of anything I've missed?
    I'm limited to JDK 1.3.0
    If you can't think of anything, can you have a gander at my other question, which is related to the same application:
    http://forum.java.sun.com/thread.jsp?forum=31&thread=190297
    Thanx

  • What is Swing Performance on Unix/Linux like (Compared to Windows)?

    I have only used Swing on Windows, and only read about people using it on windows, and the performance is known as less than great. So i was wondering, is the performance bad on Unix/Linux/Mac OS X as well?

    Thanks! So it appears that it's basically the same. I have to say that while the performance may not be the best, and from what I hear the implementation is not the most brilliant (but I'm not sure), in my opinion the architecture and API are BRILLIANT! Never before has creating a GUI (and especially cross-platform) been so clean! No gotchas in layout, it does exactly what it says it will, and across all the platforms I've used (windows, palm, pocket pc). Amazing.

  • Exception_access_violation error on Windows 2000 Professional

    Hello,
    I am developing a stand-alone Java application that runs without any problem on Windows 98, XP, and most 2000 and NT machines. On some Windows 2000 Professional machines, however, attempting to run the program generates the following error. Is there something about the configuration of these machines that needs to be adjusted to make the program work? The JRE (1.4) and program installation are done in exactly the same way in each case. The only variation seems to be in the version of the operating system.
    Any help much appreciated. Best reply gets 4 DD's!
    Thanks much,
    David
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6D1B32AD
    Function=[Unknown.]
    Library=C:\Documents and Settings\Baker\Desktop\csdemo\Windows\resource\jre\bin\fontmanager.dll
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
         at sun.awt.font.NativeFontWrapper.registerFonts(Native Method)
         - locked <05D8C5E8> (a java.lang.Class)
         at sun.java2d.SunGraphicsEnvironment.addPathFonts(Unknown Source)
         at sun.java2d.SunGraphicsEnvironment.registerFonts(Unknown Source)
         at sun.java2d.SunGraphicsEnvironment.access$000(Unknown Source)
         at sun.java2d.SunGraphicsEnvironment$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.java2d.SunGraphicsEnvironment.loadFonts(Unknown Source)
         - locked <02B1DA00> (a sun.awt.Win32GraphicsEnvironment)
         at sun.java2d.SunGraphicsEnvironment.mapFamilyName(Unknown Source)
         at java.awt.Font.initializeFont(Unknown Source)
         at java.awt.Font.<init>(Unknown Source)
         at sun.awt.windows.WDesktopProperties.setFontProperty(Unknown Source)
         - locked <02B1CCD0> (a sun.awt.windows.WDesktopProperties)
         at sun.awt.windows.WDesktopProperties.getWindowsParameters(Native Method)
         at sun.awt.windows.WDesktopProperties.<init>(Unknown Source)
         at sun.awt.windows.WToolkit.initializeDesktopProperties(Unknown Source)
         at java.awt.Toolkit.getDesktopProperty(Unknown Source)
         - locked <02B04360> (a sun.awt.windows.WToolkit)
         at com.sun.java.swing.plaf.windows.WindowsLookAndFeel$DesktopProperty.<init>(Unknown Source)
         at com.sun.java.swing.plaf.windows.WindowsLookAndFeel.initComponentDefaults(Unknown Source)
         at javax.swing.plaf.basic.BasicLookAndFeel.getDefaults(Unknown Source)
         at javax.swing.UIManager.setLookAndFeel(Unknown Source)
         at javax.swing.UIManager.setLookAndFeel(Unknown Source)
         at ZeroGad.a(Unknown Source)
         - locked <05CCDB68> (a java.lang.Class)
         at ZeroGh.b(Unknown Source)
         at ZeroGh.a(Unknown Source)
         at ZeroGh.a(Unknown Source)
         at com.zerog.ia.installer.Main.a(Unknown Source)
         at com.zerog.ia.installer.Main.main(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.zerog.lax.LAX.launch(Unknown Source)
         at com.zerog.lax.LAX.main(Unknown Source)
    Dynamic libraries:
    0x00400000 - 0x00455000      C:\Documents and Settings\Baker\Desktop\csdemo\Windows\install.exe
    0x77F80000 - 0x77FFB000      C:\WINNT\System32\ntdll.dll
    0x77DB0000 - 0x77E0B000      C:\WINNT\system32\ADVAPI32.dll
    0x77E80000 - 0x77F31000      C:\WINNT\system32\KERNEL32.DLL
    0x77D40000 - 0x77DAD000      C:\WINNT\system32\RPCRT4.DLL
    0x77E10000 - 0x77E6F000      C:\WINNT\system32\USER32.dll
    0x77F40000 - 0x77F79000      C:\WINNT\system32\GDI32.dll
    0x77820000 - 0x77827000      C:\WINNT\system32\VERSION.dll
    0x759B0000 - 0x759B6000      C:\WINNT\system32\LZ32.DLL
    0x75E60000 - 0x75E7A000      C:\WINNT\System32\IMM32.DLL
    0x20000000 - 0x20025000      C:\WINNT\System32\shim.dll
    0x6D330000 - 0x6D442000      c:\documents and settings\baker\desktop\csdemo\windows\resource\jre\bin\client\jvm.dll
    0x77570000 - 0x775A0000      C:\WINNT\System32\WINMM.dll
    0x78000000 - 0x78046000      C:\WINNT\system32\MSVCRT.dll
    0x681A0000 - 0x681A7000      C:\WINNT\System32\serwvdrv.dll
    0x66740000 - 0x66747000      C:\WINNT\System32\umdmxfrm.dll
    0x6D1D0000 - 0x6D1D7000      c:\documents and settings\baker\desktop\csdemo\windows\resource\jre\bin\hpi.dll
    0x6D300000 - 0x6D30D000      c:\documents and settings\baker\desktop\csdemo\windows\resource\jre\bin\verify.dll
    0x6D210000 - 0x6D228000      c:\documents and settings\baker\desktop\csdemo\windows\resource\jre\bin\java.dll
    0x6D320000 - 0x6D32D000      c:\documents and settings\baker\desktop\csdemo\windows\resource\jre\bin\zip.dll
    0x6D000000 - 0x6D0F6000      C:\Documents and Settings\Baker\Desktop\csdemo\Windows\resource\jre\bin\awt.dll
    0x77800000 - 0x7781D000      C:\WINNT\System32\WINSPOOL.DRV
    0x77A50000 - 0x77B3A000      C:\WINNT\system32\ole32.dll
    0x60000000 - 0x60045000      C:\WINNT\System32\MSCTF.dll
    0x6D180000 - 0x6D1D0000      C:\Documents and Settings\Baker\Desktop\csdemo\Windows\resource\jre\bin\fontmanager.dll
    0x77920000 - 0x77943000      C:\WINNT\system32\imagehlp.dll
    0x72A00000 - 0x72A2D000      C:\WINNT\system32\DBGHELP.dll
    0x690A0000 - 0x690AB000      C:\WINNT\System32\PSAPI.DLL
    Local Time = Sun Oct 27 04:45:56 2002
    Elapsed Time = 3
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.0-b92 mixed mode)

    Yes, the user in question is logging on with full Administrator access. He suspects some kind of conflict with another application on the machine, but given that the two occurrences I've seen of this error have been on NT and 2K Pro machines, I'm inclined to think it's operating system related. Any more hunches?

  • Java 5 Hotspot VM crash on Windows 2000 Server, 2000 Pro and XP pro

    Hello,
    We have had the following recurring error on different machines with Java 5, running one of our mission critical systems.
    It seems to be a problem connected with AWT and "SafepointBlob" whatever that is.
    Has anybody seen this kind of thing before? Does anybody know what the solution is?
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_FLT_STACK_CHECK (0xc0000092) at pc=0x00a70b98, pid=3232, tid=1636
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_05-b05 mixed mode)
    # Problematic frame:
    # v ~SafepointBlob
    --------------- T H R E A D ---------------
    Current thread (0x38f73788): JavaThread "AWT-Windows" daemon [_thread_in_Java, id=1636]
    siginfo: ExceptionCode=0xc0000092, ExceptionInformation=0x00000000 0x3921f8d8
    Registers:
    EAX=0x00000000, EBX=0x00000000, ECX=0x066f7898, EDX=0x009c1e34
    ESP=0x3921f8d8, EBP=0x3921f9b0, ESI=0x00000001, EDI=0x00000000
    EIP=0x00a70b98, EFLAGS=0x00010206
    Top of Stack: (sp=0x3921f8d8)
    0x3921f8d8: 00000000 00000024 0006f284 00000000
    0x3921f8e8: 00000024 0006f284 0006f1bc 77fcae15
    0x3921f8f8: 00230778 00000000 38f73788 38f65540
    0x3921f908: 0006f284 32f77c08 00000000 00230178
    0x3921f918: ffff1372 ffff0000 ffffffff 00000000
    0x3921f928: 00000000 00000000 ffff0000 ff98e0a0
    0x3921f938: ff98e0a0 0000ffff 00000000 ffff0000
    0x3921f948: 00df009f 00fe0097 009fffff 009700df
    Instructions: (pc=0x00a70b98)
    0x00a70b88: 83 ec 6c dd 34 24 9b d9 24 24 83 ec 40 dd 1c 24
    0x00a70b98: dd 5c 24 08 dd 5c 24 10 dd 5c 24 18 dd 5c 24 20
    Stack: [0x391e0000,0x39220000), sp=0x3921f8d8, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    v ~SafepointBlob
    J sun.awt.AWTAutoShutdown.setToolkitBusy(Z)V
    J sun.awt.AWTAutoShutdown.notifyToolkitThreadFree()V
    v ~StubRoutines::call_stub
    V [jvm.dll+0x8295c]
    V [jvm.dll+0xd752e]
    V [jvm.dll+0x8282d]
    V [jvm.dll+0x89917]
    C [awt.dll+0xbd875]
    j sun.awt.windows.WToolkit.eventLoop()V+0
    j sun.awt.windows.WToolkit.run()V+69
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    V [jvm.dll+0x8295c]
    V [jvm.dll+0xd752e]
    V [jvm.dll+0x8282d]
    V [jvm.dll+0x8258a]
    V [jvm.dll+0x9d476]
    V [jvm.dll+0x1042ae]
    V [jvm.dll+0x10427c]
    C [MSVCRT.dll+0x85bc]
    C [KERNEL32.dll+0xb388]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x38fee788 JavaThread "Thread-120" [_thread_blocked, id=2616]
    0x38e48478 JavaThread "Thread-119" [_thread_blocked, id=2620]
    0x38e47668 JavaThread "Thread-118" [_thread_blocked, id=2624]
    0x38e46b28 JavaThread "Thread-117" [_thread_blocked, id=2628]
    0x38e45d98 JavaThread "Thread-116" [_thread_blocked, id=2632]
    0x38c085d8 JavaThread "Thread-115" [_thread_blocked, id=2636]
    0x38c07870 JavaThread "Thread-114" [_thread_blocked, id=2640]
    0x38c06e18 JavaThread "Thread-113" [_thread_blocked, id=2644]
    0x3a02f5a0 JavaThread "Thread-112" [_thread_blocked, id=2648]
    0x3a02f418 JavaThread "Thread-111" [_thread_blocked, id=2652]
    0x38e51d60 JavaThread "Thread-110" [_thread_blocked, id=2656]
    0x38e4fb80 JavaThread "Thread-109" [_thread_blocked, id=2660]
    0x38e4efb8 JavaThread "Thread-108" [_thread_blocked, id=2664]
    0x38e4e150 JavaThread "Thread-107" [_thread_blocked, id=2668]
    0x38e4d588 JavaThread "Thread-106" [_thread_blocked, id=2672]
    0x38e4c720 JavaThread "Thread-105" [_thread_blocked, id=2676]
    0x38e4bb58 JavaThread "Thread-104" [_thread_blocked, id=2680]
    0x38e450f8 JavaThread "Thread-103" [_thread_blocked, id=2684]
    0x38e44d58 JavaThread "Thread-102" [_thread_blocked, id=2688]
    0x38e43410 JavaThread "Thread-101" [_thread_blocked, id=2692]
    0x3a01f418 JavaThread "Thread-100" [_thread_blocked, id=2696]
    0x38e48790 JavaThread "Thread-99" [_thread_blocked, id=2700]
    0x38e407f8 JavaThread "Thread-98" [_thread_blocked, id=2708]
    0x38e3fc30 JavaThread "Thread-97" [_thread_blocked, id=2712]
    0x38e3edc8 JavaThread "Thread-96" [_thread_blocked, id=2716]
    0x38e3e200 JavaThread "Thread-95" [_thread_blocked, id=2720]
    0x38e3d398 JavaThread "Thread-94" [_thread_blocked, id=2728]
    0x38e3c7d0 JavaThread "Thread-93" [_thread_blocked, id=2732]
    0x38e3b968 JavaThread "Thread-92" [_thread_blocked, id=2736]
    0x38e3ada0 JavaThread "Thread-91" [_thread_blocked, id=2740]
    0x38e39ff8 JavaThread "Thread-90" [_thread_blocked, id=2744]
    0x38e36b90 JavaThread "Thread-89" [_thread_blocked, id=2748]
    0x38e35d70 JavaThread "Thread-88" [_thread_blocked, id=2752]
    0x38e2e768 JavaThread "Thread-87" [_thread_blocked, id=2756]
    0x38e2dba0 JavaThread "Thread-86" [_thread_blocked, id=2760]
    0x38e2cff0 JavaThread "Thread-85" [_thread_blocked, id=2764]
    0x38c09018 JavaThread "Thread-84" [_thread_blocked, id=1920]
    0x38e2c188 JavaThread "Thread-83" [_thread_blocked, id=2992]
    0x38e31870 JavaThread "Thread-82" [_thread_blocked, id=2724]
    0x38e30aa8 JavaThread "Thread-81" [_thread_blocked, id=1776]
    0x38e33c08 JavaThread "Thread-80" [_thread_blocked, id=1728]
    0x38e32db8 JavaThread "Thread-79" [_thread_blocked, id=1772]
    0x38e322e0 JavaThread "Thread-78" [_thread_blocked, id=1764]
    0x38e34af0 JavaThread "Thread-77" [_thread_blocked, id=1760]
    0x39092a20 JavaThread "Thread-76" [_thread_blocked, id=3180]
    0x38d4bc90 JavaThread "Thread-75" [_thread_blocked, id=1836]
    0x38e0e8d8 JavaThread "Thread-74" [_thread_blocked, id=1820]
    0x38e2b4e0 JavaThread "Thread-73" [_thread_blocked, id=1756]
    0x3a07e410 JavaThread "Thread-72" [_thread_blocked, id=1144]
    0x39fe8d68 JavaThread "Thread-71" [_thread_blocked, id=1768]
    0x39fe81a0 JavaThread "Thread-70" [_thread_blocked, id=592]
    0x39fe7410 JavaThread "Thread-69" [_thread_blocked, id=880]
    0x39fd6708 JavaThread "Thread-68" [_thread_blocked, id=328]
    0x39fd62a8 JavaThread "Thread-67" [_thread_blocked, id=1128]
    0x38d811a0 JavaThread "Thread-66" [_thread_blocked, id=676]
    0x38d86418 JavaThread "Thread-65" [_thread_blocked, id=1928]
    0x3a025ce8 JavaThread "Implied and Derived Price Calculator (Gas Heating Oil Settlement)" [_thread_blocked, id=316]
    0x38dc9de8 JavaThread "Implied and Derived Price Calculator (Gas Heating Oil)" [_thread_blocked, id=428]
    0x38de8dd0 JavaThread "Implied and Derived Price Calculator (Brent Crude Settlement)" [_thread_blocked, id=1116]
    0x3a3392a0 JavaThread "Implied and Derived Price Calculator (Brent Crude)" [_thread_blocked, id=3228]
    0x3a07f7e8 JavaThread "Implied and Derived Price Calculator (White Sugar)" [_thread_blocked, id=1808]
    0x39fa8688 JavaThread "Implied and Derived Price Calculator (Robusta Coffee)" [_thread_blocked, id=1080]
    0x3911c230 JavaThread "Implied and Derived Price Calculator (Cocoa)" [_thread_blocked, id=2264]
    0x38db0e60 JavaThread "Thread-60" [_thread_blocked, id=3136]
    0x38db0b88 JavaThread "Thread-59" [_thread_blocked, id=3140]
    0x38d968c8 JavaThread "Thread-58" [_thread_blocked, id=3144]
    0x38d96648 JavaThread "Thread-57" [_thread_blocked, id=3148]
    0x38d98310 JavaThread "Thread-56" [_thread_blocked, id=3152]
    0x38d97d80 JavaThread "Thread-55" [_thread_blocked, id=3156]
    0x390a4c18 JavaThread "Thread-54" [_thread_blocked, id=3160]
    0x38d93818 JavaThread "Thread-53" [_thread_blocked, id=3164]
    0x3908b410 JavaThread "Thread-52" [_thread_blocked, id=3168]
    0x38d96fe8 JavaThread "Thread-51" [_thread_blocked, id=3172]
    0x38d5c728 JavaThread "Thread-49" [_thread_blocked, id=3184]
    0x38d5c3a0 JavaThread "Thread-48" [_thread_blocked, id=3188]
    0x38d5ac68 JavaThread "Thread-47" [_thread_blocked, id=3192]
    0x38d5a8e0 JavaThread "Thread-46" [_thread_blocked, id=3196]
    0x38d59298 JavaThread "Thread-45" [_thread_blocked, id=3200]
    0x38d58728 JavaThread "Thread-44" [_thread_blocked, id=3204]
    0x38d838c8 JavaThread "Thread-43" [_thread_blocked, id=3208]
    0x38d82da8 JavaThread "Thread-42" [_thread_blocked, id=3212]
    0x38d81fe8 JavaThread "Thread-41" [_thread_blocked, id=3216]
    0x38d81500 JavaThread "Thread-40" [_thread_blocked, id=300]
    0x38d7ef50 JavaThread "Thread-38" [_thread_blocked, id=820]
    0x38d7de50 JavaThread "Thread-37" [_thread_blocked, id=1036]
    0x38da26e8 JavaThread "Thread-36" [_thread_blocked, id=480]
    0x38da24d8 JavaThread "Thread-35" [_thread_blocked, id=1880]
    0x38da1008 JavaThread "Thread-34" [_thread_blocked, id=1924]
    0x38d4ae48 JavaThread "Thread-33" [_thread_blocked, id=2100]
    0x38d80c38 JavaThread "Thread-32" [_thread_blocked, id=1832]
    0x39068a48 JavaThread "Thread-31" [_thread_blocked, id=1800]
    0x39068008 JavaThread "Thread-30" [_thread_blocked, id=1824]
    0x38d5df00 JavaThread "Thread-29" [_thread_blocked, id=1840]
    0x38d477f0 JavaThread "Thread-27" [_thread_blocked, id=1848]
    0x38d47588 JavaThread "Thread-26" [_thread_blocked, id=1828]
    0x38d2f6b0 JavaThread "Thread-25" [_thread_blocked, id=1936]
    0x38d2ec38 JavaThread "Thread-24" [_thread_blocked, id=1868]
    0x38d2df20 JavaThread "Thread-23" [_thread_blocked, id=2060]
    0x38d2dcb8 JavaThread "Thread-22" [_thread_blocked, id=1860]
    0x38d53da0 JavaThread "Thread-21" [_thread_blocked, id=2096]
    0x38d53b38 JavaThread "Thread-20" [_thread_blocked, id=1948]
    0x38d52008 JavaThread "Thread-19" [_thread_blocked, id=1788]
    0x38d87f20 JavaThread "Thread-18" [_thread_blocked, id=1844]
    0x39081270 JavaThread "Thread-15" [_thread_blocked, id=1912]
    0x39081008 JavaThread "Thread-14" [_thread_blocked, id=1888]
    0x38d30c38 JavaThread "Thread-13" [_thread_blocked, id=1904]
    0x3909bd58 JavaThread "Thread-12" [_thread_blocked, id=1900]
    0x38d4c7a8 JavaThread "Thread-11" [_thread_blocked, id=1896]
    0x38d4cb48 JavaThread "Thread-10" [_thread_blocked, id=1916]
    0x38d914f0 JavaThread "Thread-9" [_thread_blocked, id=1892]
    0x38d92148 JavaThread "Thread-8" [_thread_blocked, id=1792]
    0x38d92628 JavaThread "Thread-7" [_thread_blocked, id=1872]
    0x38d92e38 JavaThread "Thread-6" [_thread_blocked, id=1224]
    0x38c481a0 JavaThread "Timer-0" [_thread_blocked, id=1708]
    0x38c23108 JavaThread "HeartBeat Checker" [_thread_blocked, id=1284]
    0x38bad3d0 JavaThread "RiskManager Event Propagator" [_thread_blocked, id=1864]
    0x38bac780 JavaThread "OrderStatus processor" [_thread_blocked, id=932]
    0x38c262d0 JavaThread "Order Event Propagator" [_thread_blocked, id=1716]
    0x38c3cbf0 JavaThread "Data message processor" [_thread_blocked, id=1932]
    0x38c3ca68 JavaThread "RiskManager Event Propagator" [_thread_blocked, id=1724]
    0x38c3ce70 JavaThread "Position Event Propagator" [_thread_blocked, id=1280]
    0x38baab88 JavaThread "Exchange Rate Propagator" [_thread_blocked, id=1448]
    0x38bde210 JavaThread "Java Sound Event Dispatcher" daemon [_thread_blocked, id=1720]
    0x38fb5d48 JavaThread "Market Event Propagator" [_thread_in_vm, id=1664]
    0x38cf1008 JavaThread "Ping Sender" [_thread_blocked, id=1704]
    0x38cf9538 JavaThread "Statistics Updater" [_thread_blocked, id=2768]
    0x39033a70 JavaThread "Message Listener" [_thread_in_native, id=1700]
    0x39033840 JavaThread "Message Sender" [_thread_blocked, id=1672]
    0x38fabe68 JavaThread "Message Event Propagator" [_thread_in_vm, id=2772]
    0x3900a8b0 JavaThread "TimerQueue" daemon [_thread_blocked, id=1696]
    0x38f8a7e0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=1656]
    0x002366b8 JavaThread "DestroyJavaVM" [_thread_blocked, id=1456]
    0x38fac588 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=1648]
    =>0x38f73788 JavaThread "AWT-Windows" daemon [_thread_in_Java, id=1636]
    0x38e8c490 JavaThread "AWT-Shutdown" [_thread_blocked, id=1640]
    0x009cd4a8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1680]
    0x009cbfb0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=1692]
    0x009cb218 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1712]
    0x009c25d8 JavaThread "Finalizer" daemon [_thread_blocked, id=1688]
    0x009c10e8 JavaThread "Reference Handler" daemon [_thread_blocked, id=1676]
    Other Threads:
    0x009bcfc0 VMThread [id=1684]
    0x009e82b0 WatcherThread [id=1668]
    VM state:synchronizing (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00235c08/0x00000320] Safepoint_lock - owner thread: 0x009bcfc0
    [0x00235c40/0x00000318] Threads_lock - owner thread: 0x009bcfc0
    [0x00235e08/0x000002dc] Heap_lock - owner thread: 0x38fac588
    Heap
    def new generation total 5248K, used 4935K [0x02a90000, 0x03040000, 0x065a0000)
    eden
    [error occurred during error reporting, step 190, id 0xc0000092]
    Dynamic libraries:
    0x00400000 - 0x0040c000      c:\program files\java\jre1.5.0_05\bin\java.exe
    0x77f80000 - 0x77ffc000      C:\WINNT\system32\ntdll.dll
    0x7c2d0000 - 0x7c335000      C:\WINNT\system32\ADVAPI32.dll
    0x7c570000 - 0x7c623000      C:\WINNT\system32\KERNEL32.dll
    0x77d30000 - 0x77da8000      C:\WINNT\system32\RPCRT4.dll
    0x78000000 - 0x78045000      C:\WINNT\system32\MSVCRT.dll
    0x6d640000 - 0x6d7cc000      c:\program files\java\jre1.5.0_05\bin\client\jvm.dll
    0x77e10000 - 0x77e79000      C:\WINNT\system32\USER32.dll
    0x77f40000 - 0x77f7f000      C:\WINNT\system32\GDI32.dll
    0x77570000 - 0x775a0000      C:\WINNT\system32\WINMM.dll
    0x6d280000 - 0x6d288000      c:\program files\java\jre1.5.0_05\bin\hpi.dll
    0x690a0000 - 0x690ab000      C:\WINNT\system32\PSAPI.DLL
    0x6d610000 - 0x6d61c000      c:\program files\java\jre1.5.0_05\bin\verify.dll
    0x6d300000 - 0x6d31d000      c:\program files\java\jre1.5.0_05\bin\java.dll
    0x6d630000 - 0x6d63f000      c:\program files\java\jre1.5.0_05\bin\zip.dll
    0x6d000000 - 0x6d167000      C:\Program Files\Java\jre1.5.0_05\bin\awt.dll
    0x77800000 - 0x7781e000      C:\WINNT\system32\WINSPOOL.DRV
    0x76620000 - 0x76631000      C:\WINNT\system32\MPR.DLL
    0x75e60000 - 0x75e7a000      C:\WINNT\system32\IMM32.dll
    0x7ce20000 - 0x7cf21000      C:\WINNT\system32\ole32.dll
    0x39220000 - 0x3922e000      C:\Program Files\JS Pager\CBT.dll
    0x779b0000 - 0x77a4b000      C:\WINNT\system32\oleaut32.dll
    0x6e420000 - 0x6e426000      C:\WINNT\system32\INDICDLL.dll
    0x6d240000 - 0x6d27d000      C:\Program Files\Java\jre1.5.0_05\bin\fontmanager.dll
    0x7cf30000 - 0x7d186000      C:\WINNT\system32\shell32.dll
    0x71710000 - 0x71794000      C:\WINNT\system32\COMCTL32.dll
    0x70a70000 - 0x70ad6000      C:\WINNT\system32\SHLWAPI.dll
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jre1.5.0_05\bin\net.dll
    0x75030000 - 0x75044000      C:\WINNT\system32\WS2_32.dll
    0x75020000 - 0x75028000      C:\WINNT\system32\WS2HELP.DLL
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jre1.5.0_05\bin\nio.dll
    0x39910000 - 0x39915000      C:\PCD32\pcihooks.dll
    0x782c0000 - 0x782cc000      C:\WINNT\System32\rnr20.dll
    0x77980000 - 0x779a4000      C:\WINNT\system32\DNSAPI.DLL
    0x75050000 - 0x75058000      C:\WINNT\system32\WSOCK32.dll
    0x77340000 - 0x77353000      C:\WINNT\system32\iphlpapi.dll
    0x77520000 - 0x77525000      C:\WINNT\system32\ICMP.DLL
    0x77320000 - 0x77337000      C:\WINNT\system32\MPRAPI.DLL
    0x75150000 - 0x75160000      C:\WINNT\system32\SAMLIB.DLL
    0x7cdc0000 - 0x7ce13000      C:\WINNT\system32\NETAPI32.DLL
    0x751c0000 - 0x751c6000      C:\WINNT\system32\NETRAP.dll
    0x77bf0000 - 0x77c01000      C:\WINNT\system32\NTDSAPI.dll
    0x77950000 - 0x7797b000      C:\WINNT\system32\WLDAP32.DLL
    0x7c340000 - 0x7c34f000      C:\WINNT\system32\SECUR32.DLL
    0x773b0000 - 0x773df000      C:\WINNT\system32\ACTIVEDS.DLL
    0x77380000 - 0x773a3000      C:\WINNT\system32\ADSLDPC.DLL
    0x77830000 - 0x7783e000      C:\WINNT\system32\RTUTILS.DLL
    0x77880000 - 0x7790e000      C:\WINNT\system32\SETUPAPI.DLL
    0x7c0f0000 - 0x7c154000      C:\WINNT\system32\USERENV.DLL
    0x774e0000 - 0x77514000      C:\WINNT\system32\RASAPI32.DLL
    0x774c0000 - 0x774d1000      C:\WINNT\system32\rasman.dll
    0x77530000 - 0x77552000      C:\WINNT\system32\TAPI32.dll
    0x77360000 - 0x77379000      C:\WINNT\system32\DHCPCSVC.DLL
    0x777e0000 - 0x777e8000      C:\WINNT\System32\winrnr.dll
    0x777f0000 - 0x777f5000      C:\WINNT\system32\rasadhlp.dll
    0x74fd0000 - 0x74fee000      C:\WINNT\system32\msafd.dll
    0x75010000 - 0x75017000      C:\WINNT\System32\wshtcpip.dll
    0x6d470000 - 0x6d495000      C:\Program Files\Java\jre1.5.0_05\bin\jsound.dll
    0x6d4a0000 - 0x6d4a7000      C:\Program Files\Java\jre1.5.0_05\bin\jsoundds.dll
    0x51080000 - 0x510d8000      C:\WINNT\system32\DSOUND.dll
    0x77820000 - 0x77827000      C:\WINNT\system32\VERSION.dll
    0x759b0000 - 0x759b6000      C:\WINNT\system32\LZ32.DLL
    0x7c950000 - 0x7c9e0000      C:\WINNT\system32\CLBCATQ.DLL
    0x77840000 - 0x7787e000      C:\WINNT\system32\cscui.dll
    0x770c0000 - 0x770e3000      C:\WINNT\system32\CSCDLL.DLL
    0x76df0000 - 0x76e01000      C:\WINNT\system32\mydocs.dll
    0x3a840000 - 0x3a98a000      C:\WINNT\system32\SHDOCVW.DLL
    0x75160000 - 0x7516c000      C:\WINNT\System32\ntlanman.dll
    0x75210000 - 0x75225000      C:\WINNT\System32\NETUI0.dll
    0x751d0000 - 0x75208000      C:\WINNT\System32\NETUI1.dll
    VM Arguments:
    jvm_args: -Xms64m -Xmx768m -Djavax.swing.adjustPopupLocationToFit=false -Dsun.java2d.noddraw=true
    java_command: star.client.gui.Startup
    Environment Variables:
    PATH=C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem
    USERNAME=Administrator
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 7, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows 2000 Build 2195 Service Pack 4
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 1047984k(567712k free), swap 2034812k(1607528k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_05-b05) for windows-x86, built on Aug 26 2005 15:36:02 by "java_re" with MS VC++ 6.0

    Hello, I have a similar error message when i`m tryinng to access to my ODBC database with pentaho, a JDBC aplication. This is my error:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_FLT_STACK_CHECK (0xc0000092) at pc=0x00b30c58, pid=4540, tid=3068
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_08-b03 mixed mode)
    # Problematic frame:
    # v ~SafepointBlob
    --------------- T H R E A D ---------------
    Current thread (0x173b6578): JavaThread "Thread-14" daemon [_thread_in_Java, id=3068]
    siginfo: ExceptionCode=0xc0000092, ExceptionInformation=0x00000000 0x17dff8a8
    Registers:
    EAX=0x173b6578, EBX=0x173b6578, ECX=0x17dff930, EDX=0x7c91eb94
    ESP=0x17dff8a8, EBP=0x17dff980, ESI=0x00000003, EDI=0x173b6578
    EIP=0x00b30c58, EFLAGS=0x00010202
    Top of Stack: (sp=0x17dff8a8)
    0x17dff8a8: 1745ae60 0000007a 06c7e658 06af29b0
    0x17dff8b8: 00a41fd8 6d7fa3b1 00a41fd8 16d6bc7c
    0x17dff8c8: 00000000 00000001 00000001 17caefc0
    0x17dff8d8: 6d80683c 1745ae50 00000000 00000001
    0x17dff8e8: ffff027a ffff0000 ffffffff 00b2fc11
    0x17dff8f8: 05c0001b 17dff858 ffff0023 173b6180
    0x17dff908: 0000001d 00090009 00090003 00090004
    0x17dff918: 00070009 ffffffff 000f0000 778c0000
    Instructions: (pc=0x00b30c58)
    0x00b30c48: 83 ec 6c dd 34 24 9b d9 24 24 83 ec 40 dd 1c 24
    0x00b30c58: dd 5c 24 08 dd 5c 24 10 dd 5c 24 18 dd 5c 24 20
    Stack: [0x17dc0000,0x17e00000), sp=0x17dff8a8, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    v ~SafepointBlob
    J java.awt.EventQueue.postEvent(Ljava/awt/AWTEvent;)V
    j java.awt.EventQueue.invokeAndWait(Ljava/lang/Runnable;)V+46
    j org.pentaho.reportdesigner.crm.report.datasetplugin.multidataset.MultiDataSetReportElementConfigurator$12$1.run()V+200
    v ~StubRoutines::call_stub
    V [jvm.dll+0x86e84]
    V [jvm.dll+0xddead]
    V [jvm.dll+0x86d55]
    V [jvm.dll+0x86ab2]
    V [jvm.dll+0xa16b2]
    V [jvm.dll+0x10f4ac]
    V [jvm.dll+0x10f47a]
    C [MSVCRT.dll+0x2a3b0]
    C [kernel32.dll+0xb683]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    =>0x173b6578 JavaThread "Thread-14" daemon [_thread_in_Java, id=3068]
    0x177436a0 JavaThread "Thread-7" daemon [_thread_blocked, id=5364]
    0x176e3780 JavaThread "Thread-4" daemon [_thread_blocked, id=3992]
    0x17736d58 JavaThread "Thread-3" daemon [_thread_blocked, id=1640]
    0x176c1dc8 JavaThread "TimerQueue" daemon [_thread_blocked, id=4292]
    0x17502a98 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=5028]
    0x00036030 JavaThread "DestroyJavaVM" [_thread_blocked, id=5944]
    0x17502910 JavaThread "AWT-EventQueue-1" [_thread_in_vm, id=1304]
    0x174f1e50 JavaThread "AWT-Windows" daemon [_thread_in_native, id=668]
    0x00ab81f0 JavaThread "AWT-Shutdown" [_thread_blocked, id=4712]
    0x00a941f8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3988]
    0x00a92c88 JavaThread "CompilerThread0" daemon [_thread_blocked, id=5784]
    0x00a91fd8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=204]
    0x00a890e0 JavaThread "Finalizer" daemon [_thread_blocked, id=4912]
    0x00a87c78 JavaThread "Reference Handler" daemon [_thread_blocked, id=5416]
    Other Threads:
    0x00a851b0 VMThread [id=4832]
    0x00a953d8 WatcherThread [id=5892]
    VM state:synchronizing (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00035688/0x00000718] Safepoint_lock - owner thread: 0x00a851b0
    [0x000356b8/0x00000710] Threads_lock - owner thread: 0x00a851b0
    Heap
    def new generation total 1728K, used 825K [0x02ad0000, 0x02ca0000, 0x02fb0000)
    eden
    [error occurred during error reporting, step 190, id 0xc0000092]
    Dynamic libraries:
    0x00400000 - 0x0040d000      C:\pentaho\java\bin\java.exe
    0x7c910000 - 0x7c9c6000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c902000      C:\WINDOWS\system32\kernel32.dll
    0x77da0000 - 0x77e4c000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e50000 - 0x77ee2000      C:\WINDOWS\system32\RPCRT4.dll
    0x77fc0000 - 0x77fd1000      C:\WINDOWS\system32\Secur32.dll
    0x77be0000 - 0x77c38000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d730000 - 0x6d8cb000      C:\pentaho\java\bin\client\jvm.dll
    0x7e390000 - 0x7e420000      C:\WINDOWS\system32\USER32.dll
    0x77ef0000 - 0x77f37000      C:\WINDOWS\system32\GDI32.dll
    0x76b00000 - 0x76b2e000      C:\WINDOWS\system32\WINMM.dll
    0x6d2f0000 - 0x6d2f8000      C:\pentaho\java\bin\hpi.dll
    0x76bb0000 - 0x76bbb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d700000 - 0x6d70c000      C:\pentaho\java\bin\verify.dll
    0x6d370000 - 0x6d38d000      C:\pentaho\java\bin\java.dll
    0x6d720000 - 0x6d72f000      C:\pentaho\java\bin\zip.dll
    0x6d070000 - 0x6d1d9000      C:\pentaho\java\bin\awt.dll
    0x72f80000 - 0x72fa6000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76340000 - 0x7635d000      C:\WINDOWS\system32\IMM32.dll
    0x774b0000 - 0x775ed000      C:\WINDOWS\system32\ole32.dll
    0x5b150000 - 0x5b188000      C:\WINDOWS\system32\uxtheme.dll
    0x736e0000 - 0x73729000      C:\WINDOWS\system32\ddraw.dll
    0x73b40000 - 0x73b46000      C:\WINDOWS\system32\DCIMAN32.dll
    0x746b0000 - 0x746fb000      C:\WINDOWS\system32\MSCTF.dll
    0x6d2b0000 - 0x6d2ef000      C:\pentaho\java\bin\fontmanager.dll
    0x6d530000 - 0x6d543000      C:\pentaho\java\bin\net.dll
    0x71a30000 - 0x71a47000      C:\WINDOWS\system32\WS2_32.dll
    0x71a20000 - 0x71a28000      C:\WINDOWS\system32\WS2HELP.dll
    0x6d550000 - 0x6d559000      C:\pentaho\java\bin\nio.dll
    0x7e6a0000 - 0x7eec0000      C:\WINDOWS\system32\shell32.dll
    0x77f40000 - 0x77fb6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x773a0000 - 0x774a3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x58c30000 - 0x58cca000      C:\WINDOWS\system32\comctl32.dll
    0x597f0000 - 0x59844000      C:\WINDOWS\system32\netapi32.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
    0x778f0000 - 0x779e7000      C:\WINDOWS\system32\SETUPAPI.dll
    0x77b10000 - 0x77b32000      C:\WINDOWS\system32\appHelp.dll
    0x76f90000 - 0x7700f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77010000 - 0x770e0000      C:\WINDOWS\system32\COMRes.dll
    0x770f0000 - 0x7717b000      C:\WINDOWS\system32\OLEAUT32.dll
    0x77bd0000 - 0x77bd8000      C:\WINDOWS\system32\VERSION.dll
    0x76940000 - 0x76948000      C:\WINDOWS\system32\LINKINFO.dll
    0x76950000 - 0x76976000      C:\WINDOWS\system32\ntshrui.dll
    0x76ae0000 - 0x76af1000      C:\WINDOWS\system32\ATL.DLL
    0x76630000 - 0x766e4000      C:\WINDOWS\system32\USERENV.dll
    0x763b0000 - 0x76559000      C:\WINDOWS\system32\NETSHELL.dll
    0x76e40000 - 0x76e4e000      C:\WINDOWS\system32\rtutils.dll
    0x76bc0000 - 0x76bef000      C:\WINDOWS\system32\credui.dll
    0x76d20000 - 0x76d39000      C:\WINDOWS\system32\iphlpapi.dll
    0x18130000 - 0x181b4000      C:\Archivos de programa\TortoiseSVN\bin\tortoisesvn.dll
    0x77180000 - 0x77227000      C:\WINDOWS\system32\WININET.dll
    0x77a50000 - 0x77ae5000      C:\WINDOWS\system32\CRYPT32.dll
    0x77af0000 - 0x77b02000      C:\WINDOWS\system32\MSASN1.dll
    0x6eec0000 - 0x6eee2000      C:\Archivos de programa\TortoiseSVN\bin\libapr_tsvn.dll
    0x719d0000 - 0x71a10000      C:\WINDOWS\system32\MSWSOCK.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.dll
    0x6ee60000 - 0x6ee89000      C:\Archivos de programa\TortoiseSVN\bin\libaprutil_tsvn.dll
    0x6ee50000 - 0x6ee5e000      C:\Archivos de programa\TortoiseSVN\bin\libapriconv_tsvn.dll
    0x181c0000 - 0x181cc000      C:\Archivos de programa\TortoiseSVN\bin\intl3_svn.dll
    0x7c420000 - 0x7c4a7000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCP80.dll
    0x76740000 - 0x76749000      C:\WINDOWS\system32\SHFOLDER.dll
    0x6ee40000 - 0x6ee46000      C:\Archivos de programa\TortoiseSVN\iconv\_tbl_simple.so
    0x6e060000 - 0x6e067000      C:\Archivos de programa\TortoiseSVN\iconv\windows-1252.so
    0x6ed50000 - 0x6ed56000      C:\Archivos de programa\TortoiseSVN\iconv\utf-8.so
    0x779f0000 - 0x77a45000      C:\WINDOWS\System32\cscui.dll
    0x765b0000 - 0x765cd000      C:\WINDOWS\System32\CSCDLL.dll
    0x6d3e0000 - 0x6d3ed000      C:\pentaho\java\bin\JdbcOdbc.dll
    0x745e0000 - 0x7461d000      C:\WINDOWS\system32\ODBC32.dll
    0x76360000 - 0x763aa000      C:\WINDOWS\system32\comdlg32.dll
    0x20000000 - 0x20018000      C:\WINDOWS\system32\odbcint.dll
    0x612d0000 - 0x612eb000      C:\WINDOWS\system32\odbccp32.dll
    0x1a520000 - 0x1a7f6000      C:\WINDOWS\system32\xpsp2res.dll
    0x7d1f0000 - 0x7d4ae000      C:\WINDOWS\system32\msi.dll
    0x76980000 - 0x76a31000      C:\WINDOWS\system32\SXS.DLL
    VM Arguments:
    jvm_args: -XX:MaxPermSize=256m -Dswt.swing.laf=com.sun.java.swing.plaf.windows.WindowsLookAndFeel
    java_command: launcher/launcher-1.0.0.jar org.pentaho.reportdesigner.crm.report.ReportDialog
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=C:\pentaho\java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Archivos de programa\ATI Technologies\ATI Control Panel;C:\ARCHIV~1\ULTRAE~1;C:\Archivos de programa\Archivos comunes\Easysoft\Shared\
    USERNAME=mciudadc
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 13 Stepping 8, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 (cores per cpu 1, threads per core 1) family 6 model 13 stepping 8, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 2096492k(853856k free), swap 4033316k(2683036k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_08-b03) for windows-x86, built on Jul 26 2006 01:10:50 by "java_re" with MS VC++ 6.0
    I don´t know where is the problem. Any help? PLEASE?
    Thanks!!!

  • Table cell renderer works with any L&F, but not with Windows

    Hi,
    I created a table cell renderer / editor for a combobox in a table cell. This works all as expected, but if the Look&Feel is com.sun.java.swing.plaf.windows.WindowsLookAndFeel, which is the system L&F on Vista, the selected values in the combobox are not shown in the cell after loosing focus. Metal LF and Motif LF work, and a third party one "TinyLF" works as well.
    Can anyone imagine why, and what needs to be changed to get a cross platform consistency without Metal LF?
    A compilable demo:
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.io.IOException;
    import java.security.NoSuchAlgorithmException;
    import javax.swing.DefaultCellEditor;
    import javax.swing.DefaultComboBoxModel;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JTable;
    import javax.swing.UIManager;
    import javax.swing.UnsupportedLookAndFeelException;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.TableColumn;
    import javax.swing.table.TableModel;
    public class Test {
        static class CellRendererWithComboBox extends JLabel implements TableCellRenderer {
            JLabel label = new JLabel();
             * Set this renderer to the given column
             * @param column
             * @param r
             * @param editable
            public void setRendererTo(JTable table, int column, boolean editable) {
                TableColumn col = table.getColumnModel().getColumn(column);
                JComboBox xc = new JComboBox(new DefaultComboBoxModel(new Object[]{1, 2, 3, 4, 5, 6, 7}));
                col.setCellEditor(new ComboBoxEditor(xc));
                col.setCellRenderer(this);
                xc.setEditable(editable);
            @Override
            public Component getTableCellRendererComponent(JTable table, Object value,
                    boolean isSelected, boolean hasFocus, int row, int column) {
                if (hasFocus && isSelected) {
                    if (isSelected) {
                        label.setForeground(table.getSelectionForeground());
                        label.setBackground(table.getSelectionBackground());
                    } else {
                        label.setForeground(table.getForeground());
                        label.setBackground(table.getBackground());
                    label.setText((value == null) ? "" : value.toString());
                    return label;
                } else {
                    label.setText((value == null) ? "" : value.toString());
                    return label;
            class ComboBoxEditor extends DefaultCellEditor {
                private final JComboBox box;
                private boolean fire = true;
                public ComboBoxEditor(JComboBox b) {
                    super(b);
                    this.box = b;
                    b.setLightWeightPopupEnabled(false);
                @Override
                public boolean stopCellEditing() {
                    if (fire) {
                        super.stopCellEditing();
                    return true;
                public void stopCellEditingSilent() {
                    fire = false;
                    stopCellEditing();
                    fire = true;
        public static void main(String... aArgs) throws NoSuchAlgorithmException, IOException {
            try {
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            } catch (ClassNotFoundException classNotFoundException) {
            } catch (InstantiationException instantiationException) {
            } catch (IllegalAccessException illegalAccessException) {
            } catch (UnsupportedLookAndFeelException unsupportedLookAndFeelException) {
            JFrame p = new JFrame();
            JTable t = new JTable();
            TableModel m = new DefaultTableModel(new Object[][]{
                        new Object[]{1, 2, 3, 4, 5, 6, 7},
                        new Object[]{1, 2, 3, 4, 5, 6, 7},
                        new Object[]{1, 2, 3, 4, 5, 6, 7},
                        new Object[]{1, 2, 3, 4, 5, 6, 7},
                        new Object[]{1, 2, 3, 4, 5, 6, 7}},
                    new Object[]{1, 2, 3, 4, 5, 6, 7});
            t.setModel(m);
            Test.CellRendererWithComboBox f = new CellRendererWithComboBox();
            f.setRendererTo(t, 1, true);
            p.setLayout(new BorderLayout());
            p.add(t, BorderLayout.CENTER);
            p.pack();
            p.setVisible(true);
    }

    1) Your custom cell renderer does nothing extra, so you can depend on default renderer.
    2) Instead of extending JLabel and implementing TableCellReneder, you should extend DefaultTableCellRenderer and override its get renderer method because DefaultTableCellRenderer itself extends JLabel and aditionally it does some optimizations etc., which you can miss if you implement your own renderer.
    3) If you set foreground and background color in last else statement also, then you can see the values correctly in windows L&F as well.
    Thanks!

Maybe you are looking for

  • Is my DVI port dead?

    15" powerbook G4. I plugged a 22" Acer into it that natively runs at 1680x1050. It picks up the display and properly configures itself to run at that resolution and even seems to work fine for the first little bit, but then I get extensive DVI corrup

  • Re: [(forte-users) Need help w/SQL to Informix using anarray in WHERE c

    Bob. That syntax isn't know Forte, used Dynamic SQL and coding it dynamically. And the SQL statement exceed 255 bytes, divide in 2 or more sentences (NameListCity1, NameListCity2, NalmeListCountry1, ...) Try with: NameListCity = 'city1','city2','city

  • Unique's not so unique!

    Hi, I'm trying to use the schema validating parser. I'm tweaking the example files that are downloaded with the parser, namely report.xsd and report.xml. In report.xsd it specifies... <unique name="pZipCode"> <selector> regions/zip </selector> <field

  • ESA scanning for a file inside of a zip inside of another zip.

    There is a new file-encrypting ransomware called CTB-Locker going around that places a malicious .cab file inside of a .zip file inside of another .zip file.  Two questions: 1) How far will an ESA scan depth wise into zips inside of zips. 2) Is a .ca

  • Generic Delta Extarctor has a field inactive

    we have created a generic data source in which we have a delta for this field ERSDA and we also need selection in the infopackage for this field but the selection option in the data Source is inactive it is inactive becuase we are having delta for th