Font errors in Swing apps

Hi, all. I've just installed the jdk 1.4.0 beta on Linux, and I get the following error message whenever I run an application that uses Swing (the error message is repeated about 20 times in a row):
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
If I edit out all occurences of that string in jre/lib/font.properties, I get this error once:
Warning: Cannot convert string "-b&h-lucidasans-medium-r-normal-sans-*-140-*-*-p-*-iso8859-1" to type FontStruct
Also, I have a java application that depends on font size and type for proper output formatting (it uses "courier"). With the new jdk, the font looks very different, and the output is correspondingly garbled. Does anybody know what the heck is going on here?

I have run into a similar problem with the new beta JDK. I work from home 90% of the time on a windows box, and everything ran fine. I had been using the JDK 1.4 beta 3 at home. I come to work today, and run the application here on a Solaris box, (which the sysadmin has configured for JDK 1.4 beta 2), and I get this error:
Warning: Cannot convert string "-monotype-arial-regular-r-normal--*-140-*-*-p-*-iso8859-1" to type FontStruct
I think it has to do with the different betas. My next step is to check the changes between the two releases.
If you find something that works, let me know.
Robert Kausch
[email protected]

Similar Messages

  • JAVA / SWING apps, font AA / LaF KDE 4.3

    Hi Everyone,
    I know the title is terrible, but here is my problem:
    I am using Netbeans for most of my development projects. I am very happy with it; however, the look and feel of Netbeans (and most other Java apps, such as FreeMind for example) is appalling and does not integrate into my KDE 4.3 desktop at all. I understand that you can start netbeans with certain options to change the look and feel to GTK, but the fonts still look jagged.
    I followed this forum post http://bbs.archlinux.org/viewtopic.php?id=72892 and tried to set the JRE / JAVA options globally, so that all java apps start with GTK laf and AA. However, non of the methods described work / netbeans overrides them (?).
    But really, the biggest problem are the ugly fonts. Java / SWING apps do not seem to recognize my KDE settings for AA and font style at all. And non of the Cl options work to fix it.
    Does anyone have any tips or tricks to fix any of these issues I am having with the combination Java / Swing / KDE / NB?
    Running:
    Archlinux (duh)
    KDE 4.3 / qt-gtk-engine
    sun-jdk 1.6uX
    Netbeans 6.7.1
    Thanks!
    KnY

    I added what I knew about improving Sun java fonts to the wiki:  http://wiki.archlinux.org/index.php/Jav … _-_Sun_JRE.  You may want to try other fonts than B&H's Lucida.  See the section in the wiki article about changing the default fonts by editing 'fontconfig.properties'.

  • Font problems running a swing app under Linux

    I have an application running well under the Win family (NT, 2000, etc.)... and it also runs well under a Linux Red Hat os... but in the linux environment I've observed the folloowing font errors displayed in the screen:
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    this is a unexpected issue because I'm not setting any font in my code... How can I solve it ?
    It's a Java or OS configuration problem ??

    Here is a solution:-
    Copy SYMBOL.TTF to /usr/java/jdk1.3.1_01/jre/lib/fonts or wherever.
    Note the copy should have lower case name!
    Do a chmod 444 symbol.ttf
    I don't say where to get a copy from but you can imagine!!
    Modify the file fonts.dir in the same directory as follows:
    Change the first line by 1 ie if its 72 change to 73.
    Insert the following line:
    symbol.ttf -monotype-symbol-medium-r-normal--0-0-0-0-p-0-abode-fontspecific
    You have to do the above as root of course.

  • Font warning when running swing apps

    I am seeing this warning when I run my swing app using JRE 1.4.0.
    Any ideas on how to get fix this?
    Warning: Cannot convert string "-monotype-arial-regular-r-normal--*-140-*-*-p-*-iso8859-1" to type FontStruct
    Thanks

    As a follow up to this, it appears that you need to download OS patches to correct this problem.
    Use this as a starting point:
    http://java.sun.com/products/jdk/1.2/install-solaris-patches.html

  • How to create printable report from a swing app.

    Hi,
    I have googled quite a bit and have searched the forum extensively but haven't found answers to my questions.
    I have a small swing based application (that uses jtextfields, jbuttons, jlist, etc) that collects information from user
    and stores in some variables; which are like strings, integers, hashmap, etc.
    Now this information is to be formatted and is to be printed as a report.
    Formatted as in, some part of the collected text is to be printed in certain font and other in different color and so on.
    Also the report is to be printed on a paper leaving some space at left and at the top. That means margins need to be set.
    And before all info is to be sent to printer I need to display this information in some report viewer (preview).
    How can I format certain text and set margins? (Is there some Document kind of api which allows me to set margins, change font of certain text?)
    How should I display this text / information as a print preview? (Should I use jeditorpane / jtextpane ?)
    How should I send all the information to the printer? (What java api should be used for printing?)
    The data entered by the user is not saved / persisted to any database. It's to be sent to the printer after submit button is pressed on the swing app.
    Since there is no database I couldn't use jasper-reports.
    Following are links to all threads (not useful) I found when I searched for swing / print / report in the forum :
    http://forums.sun.com/thread.jspa?forumID=331&threadID=225351
    http://forums.sun.com/thread.jspa?forumID=57&threadID=576758
    http://forums.sun.com/thread.jspa?forumID=57&threadID=570629
    http://forums.sun.com/thread.jspa?forumID=1&threadID=489905
    http://forums.sun.com/thread.jspa?forumID=57&threadID=571093
    http://forums.sun.com/thread.jspa?forumID=257&threadID=138450
    http://forums.sun.com/thread.jspa?forumID=57&threadID=583150
    http://forums.sun.com/thread.jspa?forumID=57&threadID=5399572
    http://forums.sun.com/thread.jspa?forumID=57&threadID=579619
    http://forums.sun.com/thread.jspa?forumID=57&threadID=593199
    Help would be much appreciated.

    alan_mehio wrote:
    The simplest thing to do in your case is to load the file content into the JTextArea
    then to create the header and the footer if there is any from java.text.MessageFormat
    then you invoke the print method on the JTextArea instance object> Just let me know if you are face any furrher problem
    Alan Mehio,
    I have been able to set margins and get the printout just the way I want it (after some experiments / trial & error).
    But the problem is, parameters to paper.setImageableArea() are hard coded as in the example code below :
            System.out.println("print?");
            PrinterJob printJob = PrinterJob.getPrinterJob();
            if (printJob.printDialog()) {
                PageFormat pf = printJob.defaultPage();
                Paper paper = pf.getPaper();
                paper.setSize(8.5 * 72, 11 * 72);
                System.out.println("paper width : " + paper.getWidth());// expecting 612
                System.out.println("paper height : " + paper.getHeight());// expecting 792
                System.out.println("ImageableHeight : " + paper.getImageableHeight());
                System.out.println("imageable width : " + paper.getImageableWidth());
                System.out.println("ImageableX : " + paper.getImageableX());
                System.out.println("Imageable y : " + paper.getImageableY());
                //paper.setImageableArea(108, 144, paper.getWidth() - 108, paper.getHeight() - 144);
                paper.setImageableArea(222, 244, paper.getWidth() - 222, paper.getHeight() - 244);
                pf.setPaper(paper);
                printJob.setPrintable(jTextArea1.getPrintable(null, null), pf);
                try {
                    printJob.print();
                } catch (Exception ex) {
                    System.out.println("exception while printing...");
                    ex.printStackTrace();
            }In my case the left margin should be 1.5 inches (38.1mm) and top margin should be 2 inches (50.8 mm)
    Considering 72dpi printer for a A4 size page (8.5in X 11in), the parameters to paper.setImageableArea() should be
    (108, 144, paper.getWidth() - 108, paper.getHeight() - 144);
    But the printout leaves only 1inch for top and left margins.
    Here are o/p lines for method-call with above said params :
    paper width : 612.0
    paper height : 792.0
    ImageableHeight : 648.0
    imageable width : 468.0
    ImageableX : 72.0
    Imageable y : 72.0
    When I pass the following values I get text printed with desired margins on the paper but the above printlns remain exactly the same!
    paper.setImageableArea(222.4, 244, paper.getWidth() - 222.4, paper.getHeight() - 244);
    Although I have been able to achieve what I wanted to without using 3rd party libraries,
    I feel this hard coding of values isn't a good idea and leaves a doubt whether this will work on other systems with different printers.
    My question is, how to get these numbers correct every time? Is there a formula for obtaining these numbers?
    Also formatting of certain part of to-print text is something that is yet to be figured out.
    Thanks.

  • I am getting this error: "There was an error in the App Store. Please try again later. (4)"???

    There was an error in the App Store. Please try again later. (4)

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • Keyboard Problem while running Swing App on LINUX

    Hi All,
    We have a Swing based Application running on Windows Platform. We need to run the Application on LINUX. The Application does not have any problem and runs without problems for a few minutes but after that the keyboard stops to respond inside the application. Keyboard runs fine outside the application but no key events are recognized inside the application. Mouse is working fine even after the keyboard stops responding.
    Key Points:
    �     The keyboard is a PS/2 keyboard.
    �     Read Hat Fedora 5.0 is being used.
    �     The problems occur on both KDE and GNONE.
    �     The Java Version is jdk1.5.0_09
    The application is data entry application using EJB at server side. The client UI has lot of JTables and Desktop Panes/ Internal Frames. User use ctrl+tab, ctrl+shift+tab, tab, shift+tab, and other hot keys to navigate between Components. Listeners on keyboard Focus Owner are also used. We are unable to diagnose the problem because of the undeterminable nature of the problem. The problem occurs at anytime and does not occur on any special key/ combinations press.
    Thanks and Regards,
    Nishant Saini
    http://www.simplyjava.com

    I've just installed the JDK 1.4 on my debian box. I
    can compile and run a basic Hello World app using
    System.println, but when I try to run a simple swing
    app, I get an error like:
    Exception in thread "main"
    java.lang.NoClassDefFoundError
    at java.lang.Class.forName0(Native Method)
    at java.lang.... etc, etc.
    It goes on with about 30 different classes. It
    compiles fine, with no errors, but when it comes time
    to run, that's what I get. This is what I have in my
    .bash_profile as far as environment variables go:
    export JAVA_HOME="/usr/local/j2sdk1.4.1_01"
    export PATH="$JAVA_HOME/BIN:$PATH"
    export
    CLASSPATH="$JAVA_HOME/jre/lib/:$JAVA_HOME/lib:."The code works fine in Windows, so unless there's
    something platform-specific, I don't think there's a
    problem there. I've checked to make sure I'm not
    running kaffe by accident and I'm definitely running
    the right java and javac. I'm out of ideas. Any
    suggestions would be greatly appreciated.
    -dudley
    I may just be crazy, but your PATH looks a little screwy to me. I was under the impression that the standard java installation has its executables in the 'bin' directory, not the 'BIN' directory. Unless Debian has fallen to the evil empire, then I'm fairly sure file names are case-sensitive. I don't know if that will fix your problem though. Do you compile from the command line, or do you use an IDE???

  • Distiller "can't find font" error with MS-Gothic and ArialUnicodeMS

    Hi. I'm tried to verify that Distiller (both 9 and XI) and PDF Generator (11.0 SP1) are able to generate PDFs from Postscript files using a variety of fonts. Almost every font that I tried works perfectly fine, but MS-Gothic and ArialUnicodeMS both fail with "can't find font" errors. I've verified font configurations in both Distiller and PDF Generator, and lots of other fonts work fine. I've also verified that the two fonts are installed, enabled, and can be used in other applications (e.g., MS Word). In fact, I can generate PDFs from MS Word documents on the same server that use both of those fonts. I suspect the errors are misleading in that those apps can find the fonts, but are unable to open or use them for some reason. I've been able to replicate this behavior both on Windows Server and Mac OS X.
    Has anyone seen behavior like this? Any suggestions on how to get more information out of these Adobe apps to get a better idea what the real error is?
    JJR

    Addirional note: This is a java class within a JavaFX application if that is relevant.
    It does seem to be relevant - if I create the same class as part of a Java application rether than a JavaFX application it compiles without error. Is the imported java.awt.GraphicsEnvironment different in the tow cases??
    Edited by: Sidereal on Aug 28, 2009 11:19 AM

  • Best way to manage images in a swing app

    Hi.
    I have a swing app that uses alot of images around 100+ at around 40kb each.
    I am currently using new ImageIcon("icon\\main.png")) to create them.
    Is this the most efficient way to manage images?
    Would it be more efficeint to store then in the mysql database?
    and / or use SwingWorker (http://java.sun.com/javase/6/docs/api/javax/swing/SwingWorker.html)
    Cheers
    Bobby

    Hi Bobby,
    It depends on what you want to be more efficient:
    1) CPU cycles
    2) Reducing jar size
    3) Ease of maintenance
    4) Prevent typing errors in file names
    For me, number 3 and 4 are important. So, what I generally do, is create an enum that desribes the images that are contained in the same package as the enum. Now I'm able to change the package name with no consequence. I only have to type the filename once and know when I have to double check of what I type. Something like this:
    package org.pbjar.geom.images;
    import java.awt.image.BufferedImage;
    import java.io.IOException;
    import java.net.URL;
    import javax.imageio.ImageIO;
    import javax.swing.ImageIcon;
    public enum Images {
        AUTHOR_SMALL("TheAuthor.jpg"),
        AUTHOR_LARGE("PietKopLarge.jpg"),
        private final String filename;
        Images(String filename) {
         this.filename = filename;
        public ImageIcon getIcon() {
         return new ImageIcon(getImage());
        public BufferedImage getImage(){
         try {
             return ImageIO.read(getURL());
         } catch (IOException e) {
             throw new RuntimeException(e);
        public URL getURL() {
         return this.getClass().getResource(filename);
    }Piet

  • Java Font Error Message???????

    I am in desparate need of help. I am trying to print screen from my Explorer browser from a SCT Banner financial program so that I can document steps in setting up university grant accounts. I keep getting this error message on my desktop and it closes the browser. The computer techs at the university are unable to solve this problem. It seems to only happen to those who run Windows XP.
    I need a solution asap.
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6d203507
    Function name=Java_sun_awt_windows_DrawGlyphVectorGDI_drawGlyphVectorGDI
    Library=C:\Program Files\Oracle\JInitiator 1.3.1.18\bin\fontmanager.dll
    Current Java thread:
         at sun.awt.font.NativeFontWrapper.getFontMetrics(Native Method)
         at sun.awt.font.FontDesignMetrics.initMatrixAndMetrics(Unknown Source)
         at sun.awt.font.FontDesignMetrics.<init>(Unknown Source)
         at sun.java2d.SunGraphics2D.makeFontMetrics(Unknown Source)
         at sun.java2d.SunGraphics2D.getFontMetrics(Unknown Source)
         at sun.awt.image.BufferedImageGraphics2D.computeFontOptimizations(Unknown Source)
         at sun.awt.image.BufferedImageGraphics2D.drawString(Unknown Source)
         at sun.java2d.pipe.ValidatePipe.drawString(Unknown Source)
         at sun.java2d.SunGraphics2D.drawString(Unknown Source)
         at oracle.ewt.lwAWT.lwText.LWTextField.paintCanvasInterior(Unknown Source)
         at oracle.ewt.EwtComponent.paintInterior(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter._paintInterior(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.EwtComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.EwtComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.EwtComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.EwtComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.lwWindow.LWWindow.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.EwtComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.EwtComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent._paintComponent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.paint(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paintExtents(Unknown Source)
         at oracle.ewt.lwAWT.SharedPainter.paint(Unknown Source)
         at oracle.ewt.lwAWT.BufferedApplet.paint(Unknown Source)
         at oracle.ewt.lwAWT.BufferedApplet.update(Unknown Source)
         at sun.awt.RepaintArea.update(Unknown Source)
         at sun.awt.windows.WComponentPeer.handleEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Dynamic libraries:
    0x00400000 - 0x00419000      C:\Program Files\Internet Explorer\iexplore.exe
    0x7C900000 - 0x7C9B0000      C:\WINNT\system32\ntdll.dll
    0x7C800000 - 0x7C8F4000      C:\WINNT\system32\kernel32.dll
    0x77C10000 - 0x77C68000      C:\WINNT\system32\msvcrt.dll
    0x77D40000 - 0x77DD0000      C:\WINNT\system32\USER32.dll
    0x77F10000 - 0x77F56000      C:\WINNT\system32\GDI32.dll
    0x77F60000 - 0x77FD6000      C:\WINNT\system32\SHLWAPI.dll
    0x77DD0000 - 0x77E6B000      C:\WINNT\system32\ADVAPI32.dll
    0x77E70000 - 0x77F01000      C:\WINNT\system32\RPCRT4.dll
    0x77760000 - 0x778CC000      C:\WINNT\system32\SHDOCVW.dll
    0x77A80000 - 0x77B14000      C:\WINNT\system32\CRYPT32.dll
    0x77B20000 - 0x77B32000      C:\WINNT\system32\MSASN1.dll
    0x754D0000 - 0x75550000      C:\WINNT\system32\CRYPTUI.dll
    0x76C30000 - 0x76C5E000      C:\WINNT\system32\WINTRUST.dll
    0x76C90000 - 0x76CB8000      C:\WINNT\system32\IMAGEHLP.dll
    0x77120000 - 0x771AC000      C:\WINNT\system32\OLEAUT32.dll
    0x774E0000 - 0x7761D000      C:\WINNT\system32\ole32.dll
    0x5B860000 - 0x5B8B4000      C:\WINNT\system32\NETAPI32.dll
    0x771B0000 - 0x77256000      C:\WINNT\system32\WININET.dll
    0x76F60000 - 0x76F8C000      C:\WINNT\system32\WLDAP32.dll
    0x77C00000 - 0x77C08000      C:\WINNT\system32\VERSION.dll
    0x773D0000 - 0x774D2000      C:\WINNT\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x7C9C0000 - 0x7D1D4000      C:\WINNT\system32\SHELL32.dll
    0x5D090000 - 0x5D127000      C:\WINNT\system32\comctl32.dll
    0x5AD70000 - 0x5ADA8000      C:\WINNT\system32\uxtheme.dll
    0x74720000 - 0x7476B000      C:\WINNT\system32\MSCTF.dll
    0x75F80000 - 0x7607C000      C:\WINNT\system32\BROWSEUI.dll
    0x20000000 - 0x20012000      C:\WINNT\system32\browselc.dll
    0x77B40000 - 0x77B62000      C:\WINNT\system32\appHelp.dll
    0x76FD0000 - 0x7704F000      C:\WINNT\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINNT\system32\COMRes.dll
    0x77FE0000 - 0x77FF1000      C:\WINNT\system32\Secur32.dll
    0x77260000 - 0x772FC000      C:\WINNT\system32\urlmon.dll
    0x77A20000 - 0x77A74000      C:\WINNT\System32\cscui.dll
    0x76600000 - 0x7661D000      C:\WINNT\System32\CSCDLL.dll
    0x77920000 - 0x77A13000      C:\WINNT\system32\SETUPAPI.dll
    0x10000000 - 0x1000E000      C:\Program Files\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
    0x7C340000 - 0x7C396000      C:\WINNT\system32\MSVCR71.dll
    0x01970000 - 0x01AA6000      C:\PROGRA~1\MINICL~1\MINICL~1.DLL
    0x5EDD0000 - 0x5EDE7000      C:\WINNT\system32\olepro32.dll
    0x763B0000 - 0x763F9000      C:\WINNT\system32\comdlg32.dll
    0x76B40000 - 0x76B6D000      C:\WINNT\system32\winmm.dll
    0x71AD0000 - 0x71AD9000      C:\WINNT\system32\wsock32.dll
    0x71AB0000 - 0x71AC7000      C:\WINNT\system32\WS2_32.dll
    0x71AA0000 - 0x71AA8000      C:\WINNT\system32\WS2HELP.dll
    0x01C10000 - 0x01CBD000      c:\program files\google\googletoolbar1.dll
    0x01CE0000 - 0x01FA5000      C:\WINNT\system32\xpsp2res.dll
    0x71D40000 - 0x71D5C000      C:\WINNT\System32\actxprxy.dll
    0x75E90000 - 0x75F40000      C:\WINNT\system32\SXS.DLL
    0x022D0000 - 0x02358000      C:\WINNT\system32\shdoclc.dll
    0x75CF0000 - 0x75D81000      C:\WINNT\system32\mlang.dll
    0x71A50000 - 0x71A8F000      C:\WINNT\system32\mswsock.dll
    0x662B0000 - 0x66308000      C:\WINNT\system32\hnetcfg.dll
    0x71A90000 - 0x71A98000      C:\WINNT\System32\wshtcpip.dll
    0x76EE0000 - 0x76F1C000      C:\WINNT\system32\RASAPI32.DLL
    0x76E90000 - 0x76EA2000      C:\WINNT\system32\rasman.dll
    0x76EB0000 - 0x76EDF000      C:\WINNT\system32\TAPI32.dll
    0x76E80000 - 0x76E8E000      C:\WINNT\system32\rtutils.dll
    0x77C70000 - 0x77C93000      C:\WINNT\system32\msv1_0.dll
    0x76D60000 - 0x76D79000      C:\WINNT\system32\iphlpapi.dll
    0x7D1E0000 - 0x7D492000      C:\WINNT\system32\msi.dll
    0x769C0000 - 0x76A73000      C:\WINNT\system32\USERENV.dll
    0x722B0000 - 0x722B5000      C:\WINNT\system32\sensapi.dll
    0x605D0000 - 0x605D9000      C:\WINNT\system32\mslbui.dll
    0x76FC0000 - 0x76FC6000      C:\WINNT\system32\rasadhlp.dll
    0x76F20000 - 0x76F47000      C:\WINNT\system32\DNSAPI.dll
    0x76FB0000 - 0x76FB8000      C:\WINNT\System32\winrnr.dll
    0x66210000 - 0x66219000      C:\WINNT\system32\netware\NWWS2NDS.DLL
    0x50D50000 - 0x50D97000      C:\WINNT\system32\NETWIN32.DLL
    0x50D00000 - 0x50D15000      C:\WINNT\system32\CLNWIN32.DLL
    0x50DF0000 - 0x50E10000      C:\WINNT\system32\LOCWIN32.DLL
    0x50DB0000 - 0x50DDB000      C:\WINNT\system32\NCPWIN32.dll
    0x66220000 - 0x6622C000      C:\WINNT\system32\netware\NWWS2SLP.DLL
    0x1C000000 - 0x1C007000      C:\WINNT\system32\NWSRVLOC.dll
    0x7D4A0000 - 0x7D782000      C:\WINNT\System32\mshtml.dll
    0x746C0000 - 0x746E7000      C:\WINNT\System32\msls31.dll
    0x746F0000 - 0x7471A000      C:\WINNT\System32\msimtf.dll
    0x5C2C0000 - 0x5C300000      C:\WINNT\ime\sptip.dll
    0x74C80000 - 0x74CAC000      C:\WINNT\system32\OLEACC.dll
    0x76080000 - 0x760E5000      C:\WINNT\system32\MSVCP60.dll
    0x027D0000 - 0x027E1000      C:\WINNT\IME\SPGRMR.DLL
    0x03050000 - 0x030AB000      C:\Program Files\Common Files\Microsoft Shared\INK\SKCHUI.DLL
    0x325C0000 - 0x325D2000      C:\Program Files\Microsoft Office\OFFICE11\msohev.dll
    0x6D350000 - 0x6D35D000      C:\Program Files\Oracle\JInitiator 1.3.1.18\bin\npjinit13118.dll
    0x6D130000 - 0x6D15B000      C:\Program Files\Oracle\JInitiator 1.3.1.18\bin\beans.ocx
    0x6D300000 - 0x6D316000      C:\Program Files\Oracle\JInitiator 1.3.1.18\bin\jpishare.dll
    0x6D3F0000 - 0x6D4C7000      C:\PROGRA~1\Oracle\JINITI~1.18\bin\hotspot\jvm.dll
    0x6D220000 - 0x6D227000      C:\PROGRA~1\Oracle\JINITI~1.18\bin\hpi.dll
    0x6D380000 - 0x6D38D000      C:\PROGRA~1\Oracle\JINITI~1.18\bin\verify.dll
    0x6D250000 - 0x6D268000      C:\PROGRA~1\Oracle\JINITI~1.18\bin\java.dll
    0x6D390000 - 0x6D39D000      C:\PROGRA~1\Oracle\JINITI~1.18\bin\zip.dll
    0x6D020000 - 0x6D12B000      C:\Program Files\Oracle\JInitiator 1.3.1.18\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINNT\system32\WINSPOOL.DRV
    0x76390000 - 0x763AD000      C:\WINNT\system32\IMM32.dll
    0x6D1E0000 - 0x6D21C000      C:\Program Files\Oracle\JInitiator 1.3.1.18\bin\fontmanager.dll
    0x69000000 - 0x6967F000      C:\WINNT\system32\atioglxx.dll
    0x73760000 - 0x737A9000      C:\WINNT\system32\ddraw.dll
    0x73BC0000 - 0x73BC6000      C:\WINNT\system32\DCIMAN32.dll
    0x6D340000 - 0x6D348000      C:\Program Files\Oracle\JInitiator 1.3.1.18\bin\net.dll
    0x6D370000 - 0x6D37A000      C:\Program Files\Oracle\JInitiator 1.3.1.18\bin\packager.dll
    0x6D2C0000 - 0x6D2DB000      C:\Program Files\Oracle\JInitiator 1.3.1.18\bin\jpeg.dll
    0x0FFD0000 - 0x0FFF8000      C:\WINNT\system32\rsaenh.dll
    0x59A60000 - 0x59B01000      C:\WINNT\system32\DBGHELP.dll
    0x76BF0000 - 0x76BFB000      C:\WINNT\system32\PSAPI.DLL
    Local Time = Mon Mar 14 09:06:53 2005
    Elapsed Time = 27
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.3.1_04-b02 mixed mode)
    Thanks.

    Has the vendor certified their app to run on the configuration that you are using?
    If so it is their problem.
    If not it is yours.
    You can try loading a more recent version of java but that might not fix it and might make it worse (ie other things might stop working.)
    Font errors are usually due a combination of video card, video driver and OS. Sometimes updating the video driver can help.

  • Is it possible to run my swing app in another jre

    Hi All,
    I have a swing app jar deployed in the server having jre. It may be possible that the client may have a lower version of jre. In that case would it be possible to download the jre itself from the server (local server not Sun server) and then the run the application in the downloaded jre. The client may be in windows or linux. Please give me steps to go about it. Am new to web start. Please help ASAP.
    Thanks to all the folks out there keeping the java community alive and kicking

    Hi Andy,
    I wanted to bring the jre on the client machine on par with the one in my server which hosts the application to be launched by web start. I had posted a query on how to install a newer version of jre other than using the sun's auto installer site. I had to search high and low for such a solution. Finally got a set of servlets called web start services from the following site :
    http://lopica.sourceforge.net/.
    It helped me to host the jre installer on my server itself which woulc be used by the client to install a higher version of jre if required. I was trying to install a runtime installer of jre as per their instructions. I created a jar file called jre_1.5.05.jar created by doing a jar -cvf on the jar directory. And gave the j2se version required as <j2se version="1.5.05"> and then my helloapp.jar. Everything goes fine during the installation. It also asks me for the reboot and I did the same. However when I try to run the application, it says
    "Bad Installation. Error involving Java VM (SysExec) and then points to the directtory inm the cache as .ext/E11332440658/bin/javaw.exe.
    So I went to the directory .ext/E11332440658 in the cache. and I see that the jar has been in jarred as jre_1.5.0_05/bin/javaws.exe which should have been the actual path where web start should have looked.
    Do you have any idea why it happened? Is it possible to correct it without doing anything manually at the client side? Please reply ASAP.
    Zeus.

  • Cannot extract fonts error message even after fonts outlined

    will not allow me to attach screen shot from grab. Image not allowed is error message

    Grab saves files to tif format, you need a web format (jpg, png, gif) to post to these format. Rather than grab use preview app.
    preview application >> file >> take screen shot >> save as file type png
    Now the cannot extract fonts error, could be fixed possibly by an illustrator free update, don't know the verison you are on
    http://www.adobe.com/support/downloads/product.jsp?product=27&platform=Macintosh
    Reset your illustrator your prefs.
    Does this happen to all files, or is this just a certain file. You may have a font in a symbol or opacity mask.
    Save a copy of the document, keep deleting items, unitl the error goes away. This will identify the problem item, of which we better help you by narrowing the variables down.
    When fo you get thgsi error, upon opening the file?

  • Strange error displaying swing frames

    A client reported a strange error with our swing application - screenshot http://i.imgur.com/zmQNB.png .
    It turned out all swing apps are showing up like this on his machine. He runs Windows XP Profesional SP2 with a Nvidia 5500 card.
    Has anyone seen this strange behavior before?
    Edited by: user6421036 on Oct 13, 2010 7:21 AM

    user6421036 wrote:
    ..He runs ... Nvidia 5500 card.Make sure it is using the latest drivers.

  • Why i can't download anything from the app store? (It turns  up "Error en el App Store. Vuelve a intentarlo más tarde. (null)"

    I am trying to download a game from the app store to my apple but it turns up "Error en el App Store. Vuelve a intentarlo más tarde. (null)".
    I am trying to download any other thing from the store and i can´t.
    I would like that somebody could tell me if it is a problem of my computer or if it is an apple problem , and if i can do something to solve  the problem.

    That cryptic error message might mean that the payment information in your account is invalid. Check with your credit-card issuer to see whether a charge was denied. If not, see below.
    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • Swing app can't connect to DB outside jDev

    I am using jDeveloper 11.1.1.3 and have create a simple swing app with a Model and View project that connects to DB. Everything runs fine inside the IDE but when i try to execute the program outside of jDeveloper i get a null password error when it tries to access my DB. I have created the connection in application resources and have checked the 'Save Password' option. I am executing the command from a .bat file, the same command jDev uses to launch the main form inside the IDE. The form displays and the buttons work but it will not connect.
    I tried to enter the password in the connections.xml file but the main form will not load if i do this.
    What am i missing here?
    Thanks a lot.
    Edited by: user10378872 on Feb 17, 2011 8:03 AM
    Edited by: user10378872 on Feb 17, 2011 8:03 AM
    Edited by: user10378872 on Feb 17, 2011 8:06 AM

    Hello !!
    He tenido problemas con PERSISTENCIA en NETBEANS 6.1 cuando trabajo en modo grafico. (Your same problem ! ).
    Hoy por fin lo pude solucionar. La solucion:
    En la clase principal que contine el metodo MAIN, en mi caso ContaApp.java busque el metodo " public static void main(String[] args) "
    en este metodo metodo se lanza la aplicacion en la linea:
    ESTAS 2 LINEAS SE DEBEN COLOCAR ANTES DE LANZA EL METODO launch( INDICADO MAS ABAJO.
    // This is the solution !!!
    EntityManagerFactory emf = Persistence.createEntityManagerFactory("contabilidad");
    EntityManager em = emf.createEntityManager();
    // solution end
    // este es el metodo que se lanza autmaticamente (class method)
    launch(ContaDianApp.class, args);
    Y ESO ES TODO. TU PUEDES COLOCAR TU CONEXION NORMAL EN CUALQUIER PARTE DE TU CODIGO. ES IMPORTANTE VOLVER A INSTANCIAR LA PERSISTENCIA EN TU CODIGO. ES DECIR, QUE MAS ADELANTE NECESITAS VOLVER A COLOCAR:
    EntityManagerFactory emf = Persistence.createEntityManagerFactory("contabilidad"); // contabilidad en mi caso, tu lo debes cambiar.
    EntityManager em = emf.createEntityManager();
    Cualquier inquietud te puedes comunicar conmigo al email: [email protected]
    saludos,
    Luis Carlos

Maybe you are looking for

  • Problem with invoice posting

    Hi .. i,m facing an issue with intercompany Invoice posting . I'm having delivery note as a reference to that invoice but im getting error message that delivery note doesnot exist..   i have entered correct delivery note..   how this can b overcome?

  • Project library help....

    In my project library, when I have several clips how can i select one clip to export for movie. Everytime I select a clip the whole prject plays.

  • ITunes freezes when trying to add songs to 30GB video iPod

    Here's my situation exactly: I just bought a 30GB Video iPod with some songs and videos already uploaded onto it. After much reading, I found out how to get the songs from the iPod onto my computer so I could put them into my iTunes library. I added

  • Why can't I print web pages in Firefox 5.0 or 6.0?

    I have tried to upgrade to 5.0 and, most recently, to 6.0. But I end up having to downgrade to 3.6 because I am not able to print from either 5.0 or 6.0. When I click on 'print preview' or 'print,' nothing at all happens. No print preview screen nor

  • Help with 8008 Error

    I have done the whole removing downloads folder and all that but sadly it still comes up with app games I want to download. It includes Tap Tap 4 which i really want but pops up with the error when it finishes downloading :/ I really want this sorted