JInternalFrame Full Screen Exclusive mode lag Windows 7?

<font size=2>Hi everyone I'm not sure if i'm posting this question in the right category so feel free to move it. I recently have been playing around with full screen exclusive mode and JInternalFrames. Now what iv'e noticed is on every platform i've tried it works fine. When clicking and dragging the JInternalFrame to a new location it is quick and responsive. However when doing this same operation in Windows 7 the JInternalFrame lags significantly behind the mouse location as i'm dragging the internal frame. I haven't had a chance to test this on any other Windows platforms such as Vista or XP but I don't think it happens on those platforms, at least I don't remember this ever happening when I had Windows Vista and it doesn't occur in Mac OS 10.6.
The following are the circumstances i've found that produce this problem:
*1. The program is set to Full Screen Exclusive mode.*
*2. You are using Windows 7 (possibly other Windows platforms)*
*3. Click and drag a JInternalFrame to a new location.*
I've tried several things to see if it fixes the problem such as setting the look and feel to cross platform but nothing helps. In fact when the LAF is set to cross platform it is even worse.
Now i'm new to Full Screen Exclusive mode so i'm guessing (hoping) this is a problem caused by an error on my part. Here is the source code, i'd appreciate it if you give it a try. My question is how do I fix this lag so that the JInternalFrame is quick and responsive to the user dragging the window and i'm also wondering if this only happens on Windows 7 so if anyone could also tell me if they experience the problem I am describing and the OS you are using that would be great. Thank you guys :)
Also any input about wether i'm setting up full screen exclusive mode correctly would be much appreciated too.</font>
package lag;
import java.awt.event.*;
import java.awt.*;
import javax.swing.*;
public class InternalFrameLag
    public static void main(String[] args) {
        SwingUtilities.invokeLater( new Runnable() {
            public void run() {
                new InternalFrameLag();
    GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice[] devices = env.getScreenDevices();
    GraphicsDevice device;
    JFrame frame = new JFrame("Internal Frame Lag");
    JDesktopPane pane = new JDesktopPane();
    JInternalFrame internalFrame = new JInternalFrame("Internal Frame", true, true, true, true);
    JButton exit = new JButton("Exit");
    public InternalFrameLag() {
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setUndecorated(true);
        exit.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                System.exit(0);
        exit.setPreferredSize(new Dimension(250,23));
        internalFrame.setLayout(new FlowLayout());
        internalFrame.setBounds(100,100,500,300);
        internalFrame.add(exit);
        pane.add(internalFrame);
        frame.add(pane);
        // get device that supports full screen
        for(int i = 0; i<devices.length; i++) {
            if(devices.isFullScreenSupported()) {
device = devices[i];
break;
if(device!=null) {
device.setFullScreenWindow(frame);
internalFrame.setVisible(true);
} else {
System.exit(0);
Edit: Decided to make the font size bigger. Eyestrain is killing me.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Darryl Burke wrote:
neptune692 wrote:
<font size=2>
Edit: Decided to make the font size bigger. Eyestrain is killing me.Hopefully that will carry over to my response and I won't have to edit to add it ;)
I don't see the lag you describe. There's some flicker when moving the internal frame around rapidly (it looks as if the borders follow the content a split second later, but can't be caught in a screen capture) but that's no different when I show the internal frame in a normal (not full screen) window.
<tt>Microsoft Windows [Version 6.1.7600]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\Darryl>java -version
java version "1.6.0_17"
Java(TM) SE Runtime Environment (build 1.6.0_17-b04)
Java HotSpot(TM) Client VM (build 14.3-b01, mixed mode, sharing)</tt>
db<font size=2>Thanks for your reply and thanks for testing out my code. Could this lag be something wrong with my VM on Windows 7, cause the lag is extremely bad as in it takes a couple seconds for the internal frame to catch up with the mouse. I also just noticed that any other components in full screen exclusive mode on Windows 7 lag as well. Such as scrolling though a large amount of text, the scroll bar will lag far behind the mouse location and take a couple of seconds to catch up even when the mouse is moving fairly slow. I was hoping it was something in the code I was doing wrong but I guess not? Any suggestions on how I could fix this problem? It really makes my applications appear sluggish. For example when you click on a normal window such as in Windows Explorer and drag it to a new location the mouse stays in a fixed position on the window while you are dragging it. However with this lag the mouse appears to be "detatched" from the window and does not stay in the same location on the window while dragging. Does anyone else experience this or is this normal? I'm using Windows 7 64bit but I don't think that would make any difference. I'd also like to point out that I'm using Java 6 update 21 I don't know if that would make a difference opposed to update 17.
Thanks again.</Font>
Edited by: neptune692 on Oct 2, 2010 10:23 AM

Similar Messages

  • How come full screen exclusive mode is so slow?

    Hi. I am currently working on customer facing point-of-sale application. This application has a lot of animation going on and so needs quite speedy graphics performance. When I first investigated this it looked like I could do it in pure Java 2D which would be a lot easier than resorting to DirectX or OpenGL and mixing languages.
    Unfortunately as the app has moved closer to functional complete the graphics performance appears to have deteriorated to the point where it is unusable. So I have gone back to the beginning and written a test program to identify the problem .
    The tests I have done indicate that full screen exclusive mode runs about ten times slower than windowed mode. Which is mind boggling. Normally - say in DirectX - you would expect a full screen exclusive version of a games/graphics app to run a little bit quicker than a windowed version since it doesn't have to mess around with clip regions and moving vram pointers.
    My test program creates a 32 bit image and blits it to the screen a variable number of times in both windowed and full screen mode. Edited results look like this:
    iter wndw fscrn performance
         10 16.0 298.0 1862% slower
         20 47.0 610.0 1297% slower
         30 94.0 923.0 981% slower
         40 141.0 1205.0 854% slower
         50 157.0 1486.0 946% slower
         60 204.0 1877.0 920% slower
         70 234.0 2127.0 908% slower
         80 266.0 2425.0 911% slower
         90 297.0 2722.0 916% slower
         100 344.0 3253.0 945% slower
    The results are substantially the same with the openGL hint turned on (although I don't have that option on the release hardware). I am assuming that the images end up as managed since they are created through BufferedImage and the system is running under 1.5.
    Is there a way to get the full screen version running as fast as the windowed version?
    Here's the test prog:
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import javax.swing.JFrame;
    public class BlittingTest extends JFrame {
         BufferedImage     blankImage;
         BufferedImage     testImage;
         boolean               fullscreen;
         int                    frameNum;
         public BlittingTest( boolean fullscreen ) throws HeadlessException {
              super();
              // window setup. Escape to exit!
              addKeyListener ( new KeyAdapter() {
                   public void keyPressed( KeyEvent ke ) {
                        if (ke.getKeyCode() == KeyEvent.VK_ESCAPE ) {
                             System.exit(0);
              this.fullscreen=fullscreen;
              if ( fullscreen ) {
                   setUndecorated ( true );
              } else {
                   setTitle( "BlittingTest - <esc> to exit)");
                   setSize( 800, 600 );
              setVisible(true);
              setIgnoreRepaint(true);
              // strategy setup
              if ( fullscreen ) {
                   GraphicsDevice gdev =
                        GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
                   DisplayMode newDisplayMode = new DisplayMode (800, 600, 32,
                                                 DisplayMode.REFRESH_RATE_UNKNOWN);
                   DisplayMode oldDisplayMode = gdev.getDisplayMode();               
                   gdev.setFullScreenWindow(this);
                   gdev.setDisplayMode(newDisplayMode);
                   createBufferStrategy(2);
              // create assets
              testImage = new BufferedImage ( 50, 50, BufferedImage.TYPE_INT_ARGB );
              Graphics2D g = testImage.createGraphics();
              for ( int i = 0; i < 50; i ++ ) {
                   g.setColor( new Color ( 0, (50 - i) * 3, 0, i * 3 ));
                   g.drawLine( i, 0, i, 49 );
              g.dispose();
              blankImage = new BufferedImage ( 50, 50, BufferedImage.TYPE_INT_ARGB );
              g = blankImage.createGraphics();
              g.setColor ( Color.WHITE );
              g.fillRect( 0, 0, 50, 50 );
              g.dispose();
              frameNum = -1;
         public void init() {
              // blank both screen buffers
              for ( int i = 0; i < 2; i++ ) {
                   Graphics g2 = getBufferStrategy().getDrawGraphics();
                   g2.setColor ( Color.WHITE );
                   g2.fillRect( 0, 0, 800, 600 );
                   g2.dispose();
                   getBufferStrategy().show();
         public long testFrame ( int numBlits ) {
              int          x, y;
              long     timeIn, timeOut;
              frameNum++;
              Graphics g = getBufferStrategy().getDrawGraphics();
              g.drawImage( testImage, 0, 0, null );
              // blank previous draw
              if ( fullscreen ) {
                   if ( frameNum > 1 ) {
                        x = frameNum - 2;
                        y = frameNum - 2;
                        g.drawImage ( blankImage, x, y, null);
              } else {
                   if ( frameNum > 0 ) {
                        x = frameNum - 1;
                        y = frameNum - 1;
                        g.drawImage ( blankImage, x, y, null);                    
              x = (int) frameNum;
              y = (int) frameNum;
              timeIn = System.currentTimeMillis();
              for ( int i = 0; i < numBlits; i++ ) {
                   g.drawImage ( blankImage, x, y, null);
                   g.drawImage ( testImage, x, y, null);
              timeOut = System.currentTimeMillis();
              g.dispose();
              getBufferStrategy().show();
              return     timeOut - timeIn;
         public static void main(String[] args) {
              boolean error = false;
              BlittingTest window = null;
              double []     windowedTest = new double [101];
              double []     fullscreenTest = new double [101];
              window = new BlittingTest ( false );     
              window.init();
              for ( int f = 1; f <= 100; f++ ) {
                   windowedTest[f] = window.testFrame( f * 10 );
              window.setVisible(false);
              window.dispose();
              window = new BlittingTest ( true );     
              window.init();
              for ( int f = 1; f <= 100; f++ ) {
                   fullscreenTest[f] = window.testFrame( f * 10 );
              window.setVisible(false);
              window.dispose();
              for ( int f = 10; f <= 100; f++ ) {
                   System.out.println ( "\t" + f + "\t" + windowedTest[f] +
                             "\t" + fullscreenTest[f] +
                             "\t" + (int) ( (fullscreenTest[f]/windowedTest[f])*100.0) + "% slower");
    }

    Well I could do...
    The problem is that I am compositing multiple layers of alpha transparent images. If I just render straight to the screen I get nasty flicker where I see glimpses of the background before the top layer(s) get rendered. So I would have to render to an offscreen buffer and then blit the assembled image into the screen. Even then there will be some tearing as you can never sync to the screen refresh in windowed mode.
    And the thing is - there ought to be a 'proper' solution, g*dd*mm*t. Surely the core team didn't put together a solution that is ten times slower than it should be and then say 'What the heck, we'll release it anyway'.
    I mean, if you can't believe in Sun engineering what can you believe in?

  • Using swing in Full screen sxclusive mode

    Hi!
    I have created a game which uses swing components.... I have decieded (because it is much cool, and looks nicer) to convert the game to Full screen mode....
    Mycurrent GUI consists of two JPanel s. One of which I use the paintComponent method to draw the game board to the JPanel. The other JPanel is split into several other parts which contain the details about each player.
    Now, what I want to do is to be able to update the graphics using a BufferStrategy. My question is how would I do this? I tried to create a eperate BufferStrategy for the "Board" JPanel, but I can't as JPanel doesn't support getBufferStrategy(). Then I tried to convert the whole "Board" into Canvas. This I could implemnt but as I rendered the image it was drawn over the second JPanel which is to the right of the "Board"
    I was thinking that maybe I could create a FlipBufferStrategy but it's protected and cannot be instantiated in a JPanel.
    So what I'm basically asking is how do you use swing components in Full Screen Exclusive mode and using active rendering?
    For dukes go to http://forum.java.sun.com/thread.jsp?forum=57&thread=394856&tstart=15&trange=15

    Hi,
    in case you don't already know it, here's Suns very own tutorial on that topic:
    http://java.sun.com/docs/books/tutorial/extra/fullscreen/index.html
    JPanel does not support getBufferStrategy() but JFrame (or any other subclass of Window) does. So you could put your JPanel into a JFrame and gain access to the BufferStrategy that way.
    Keep in mind that there is still a serious bug in createBufferStrategy() that can result in a deadlock. Browse the Bug Database for a workaround, I can't find it now, but I know that it is there.
    Last but not least you could post in the Swing Forum, which would be a more suitable place for a Swing question than the Java3D Forum :)
    Regards
    Fleischer

  • Chrome, Mountain Lion and Full Screen Interactive Mode

    I'm running into an issue when entering Full Screen (Interactive) Mode-- long story short, the Message and "Allow" button are over-magnified and don't appear on the screen for me to click, thereby making it impossible to use other keystrokes (and see certain things in the interactive game window t'boot).
    This issue does not exist in Snow Leapord on an older machine, though the same updated versions of Chrome (and assumedly Flash Player) are at work there.
    Any suggestions on something I can tweak-- or even a work-around/hotkey for Allowing FSI Mode?
    The actual game screen itself is fine, albeit slightly cut off around the edges.

    Man, do you have Sophos antivirus? If that so, you need to uninstall it the right way:
    For Sophos Anti-Virus for Mac OS X version 7.x , go to Macintosh HD|Library|Sophos Anti-Virus.
    Select 'Remove Sophos Anti-Virus.pkg'.
    Follow the instructions on the screen.
    NOTE, if you are running Sophos Anti-Virus for Mac OS X version 4.x, the path in step 1 is Macintosh HD|Library|Application Support|Sophos Anti-Virus.
    It seems that Sophos antivirus is crashing ML. They have an update but I'll wait some time becuase I've really had a painful time these days.

  • Edit keywords whilst in full screen edit mode

    Hi all
    I want to edit the keywords assigned to an image in full screen edit mode.
    I have searched about a bit and have found links to Keyword Assistant which is all well and nice. It's not particularly quick to asign keywords though - my touch typing isn't all that hot. And it has a few 'quirks' which make it a little cumbersome to use.
    Ideally I'd love to see a palette with keywords that can be toggled on or off for each image - brought up much like the adjust and effects palettes. I have over 15k images in this library and I'm intending to go through them all adjusting the keywords. Is there anything out there that will do something like this, within iPhoto full-screen?
    Thanks
    Flea

    http://www.apple.com/feedback/iphoto.html

  • Retouch brush in Full Screen Editing Mode

    Has anyone else noticed that the retouching brush is way too big when you're editing in full-screen mode? Is this a bug? Is there anyway to adjust the diameter of the brush?
    Thanks,
    Matt

    Well, at least I'm not alone. I didn't notice a place to file a bug about this.
    Thanks,
    Matt
    Yeah...I have the same issue. Posted on the other
    forum about this. This size of the pixel is about 25
    across and when you use the tool, it obliterates the
    face or whatever you're trying to retouch. When you
    revert to the regular screen it doesn't fix the
    problem either.
    I did notice that when I first used the tool in the
    regular, non-full screen mode, it was fine. Once I
    switched to the full screen editing mode, the problem
    started and now it won't go away.

  • Cannot get out of full-screen view of main window of Mail.

    I went into full-screen with the main window of Mail, and now cannot get out of it, even when quitting and relaunching. Exiting full screen only shows separate window for the highlighted email. How can I reverse this?

    Push your mouse cursor to the top until the menu drops down.  At the far right corner is the leave full screen icon.  Select it.

  • Viewing EXIF data in full screen edit mode

    is it possible to view the EXIF data when in full screen mode?
    iMac G5   Mac OS X (10.4.6)  

    I think the full screen mode is the problem. You can't even drag an image from there to an application in the dock to view extended EXIF information like I outline next.
    To view more EXIF info than iPhoto will show for an image, download Simple EXIF Viewer for Mac OS X. Put it in your applications folder and then open the app. When the app is in the dock, click and hold on it and scroll to "keep in dock".
    You can now drag an image from the iPhoto Library viewing window on top of the EXIF viewer. The viewer window will open and give you the EXIF info for the image.
    Simple EXIF Viewer for Mac OS X

  • Set screen resolution, and full screen view mode (F11)

    Hi,
    I have a jsp page which only looks right in 1280x1024. Can I write some kind of code to set the browser to always be 1280x1024 and the view mode to be full screen regardless of the client's setting?
    I would like to thank all for responding to my previous questions/problems.

    Hi,
    after all, try <body onload="window.resizeTo(width,height);">. It works for me. You can also turn off navigation bars etc. See http://forums.devarticles.com/javascript-development-22/change-window-size-and-nav-bar-status-on-page-load-2091.html for example - or google "javascript resize window".
    However, I don't know of a method to set the window to an F11-like fullscreen mode.
    Regards,
    Patrik

  • Is it possible to change the size of the 'Close' button in Full Screen viewing mode?

    I am currently using Firefox for a kiosk type scenario. We require that the browser run full screen. The issue is that the 'Close' button is not large enough for users to consistently see, so they're having issues figuring out how to close an active browser window.
    Can anyone tell me if it's possible to change this icon? I've tried using themes, but they tend to theme everything but the close button.
    Custom configuration details are below.
    Firefox version: firefox-3.0.4-1.el5.centos
    Customisations:
    Access to local drives disabled:
    Modified the contents of /usr/lib/firefox-3.0.4/chrome/browser.jar, so that browser.js has the added stanza:
    <pre><nowiki>if (location.match(/^file:/) ||
    location.match(/^\//) ||
    location.match(/^resource:/) ||
    (!location.match(/^about:blank/) &&
    location.match(/^about:/))) {
    loadURI("about:blank");
    }</nowiki></pre>
    Various menus & bookmarks disabled in chrome/userChrome.css
    <pre><nowiki>/* Kill "normal" bookmark icons in the bookmarks menu */
    menuitem.bookmark-item > .menu-iconic-left {
    display: none;
    /* kill icons for bookmark folders in Bookmarks menu */
    menu.bookmark-item > .menu-iconic-left {
    display: none;
    /* kill icons for bookmark groups in Bookmarks menu */
    menuitem.bookmark-group > .menu-iconic-left {
    display: none;
    /* Remove the Edit and Help menus
    Id's for all toplevel menus:
    file-menu, edit-menu, view-menu, go-menu, bookmarks-menu, tools-menu, helpMenu */
    helpMenu { display: none !important; }
    tools-menu { display: none !important; }
    file-menu { display: none !important; }
    edit-menu { display: none !important; }
    view-menu { display: none !important; }
    go-menu { display: none !important; }
    bookmarks-menu { display: none !important; }
    #autohide-context { display: none !important;}
    #bookmarksToolbarFolderMenu { display: none !important;}
    #organizeBookmarksSeparator { display: none !important;}
    .tabbrowser-tabs .tab-icon {
    display: none;
    #urlbar {
    font-family: Arial !important;
    color: Black !important;
    font-size: 26 !important; }</nowiki></pre>

    Try code like this:
    <pre><nowiki>#window-controls .toolbarbutton-icon {
    width: 25px !important;
    height: 25px !important;
    </nowiki></pre>
    The three buttons have these IDs:
    <pre><nowiki>#minimize-button
    #restore-button
    #close-button</nowiki></pre>

  • Full screen videos/streams on second monitor won't stay full screen while using another window on other monitor

    Whenever I open and then full screen a video or stream of any kind, I am unable to use another window of Firefox while the video/stream maintains full screen. When I click off the video/stream it reverts back to the smaller screen. Is there any way to change this?

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    Profile Backup and Restore
    *http://kb.mozillazine.org/Profile_backup
    *https://support.mozilla.org/en-US/kb/back-and-restore-information-firefox-profiles
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Full screen video obscure Motion windows

    Part way through creating a composition I find the video window filling the screen and no access to browser inspector etc. I can go to the edge of frame to get me back to desktop which allows me to see these other windows but soon as I touch them the full screen obscures everything. I can move them around by holding the command button but I need another limb then to do my work. I have restarted but it has made no difference.
    I have likely hit some key combination but am am lost to continue my project.
    Chris
    Model Identifier: MacBookPro5,3
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.66 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 3 MB
    Memory: 4 GB
    Bus Speed: 1.07 GHz
    Boot ROM Version: MBP53.00AC.B03
    SMC Version (system): 1.48f2

    You're sure? Holding down the Command (⌘) key and pressing the F12 key? while in full screen? has no effect? F8 blows the window up to full screen, but it sounds like you've activated External Video that's set to Digital Cinema Desktop...
    Patrick

  • Question slide- Launch a full screen image in new window.

    Hi,
    I am using Captivate 4.
    In the question slide (MCQ/ Matching) I want to have a transparent button over a thumbnail image.
    On clicking this button, it lanches a full screen image in a new window.
    The student views the image and answers MCQ,  Matching (droplist)  on the main screen/slide of captivate.
    This new window can then be closed by clicking 'X' on top right corner of the window.
    How to do this?
    Thanks and regards
    Rajan

    Hi there
    Instead of a Transparent Button you should think instead about Click Boxes. But either way, Captivate doesn't allow Buttons or Click Boxes to be inserted on Question Slides.
    However, Captivate does allow you to insert Flash objects on Question slides. So you could develop a Flash object that would carry out the desired actions when clicked. Then insert the object on the Question slide.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • Full screen option minimizes the window?

    When I click the full screen option in the firefox dropdown menu or use the toolbar icon the page minimizes to my taskbar immediately and becomes non functional. It freezes there until I close/re-open the browser. I'm using a firefox theme (Orange Fox 4.0.29.03.11) . I'm brand spankin new to the firefox browser so it may be something I'm not doing correctly. I thought maybe this theme may not be compatible or buggy to this version of firefox. Any help much appreciated. Thanks.

    The question is whether the iPad screen is built to US Quarto (used by 5% of the planet) or to the International standard A4.
    The proportions seem to suggest that the design is USA only.
    Peter

  • I have an app that doesn't have a full screen option. In windowed mode, is there a way I can block out my desktop and the other apps when using it? I only want to see the app and want everything else to be black. Aspect ratio = perfect square.

    IOSX, Mountain Lion.
    Many thanks,

    With the iPod connected to the computer go to the Music pane for the iPod in iTunes and check the box that says sync only checked songs. The check the songs you want synced and click on Sync. For more info see:
    iTunes: Syncing media content to iOS devices and iPod

Maybe you are looking for

  • New Sales Order Type

    Hello, I would like to ask either it is neccessary to have a new division for new sales order type. Thanks for your time. Your fruitful answer will help me to move one step forward Sherry.

  • RCPT: Re: Forte productivity metrics

    Confirmation of reading: your message - Date: 13 Dec 96 9:07 To: [email protected] Subject: Re: Forte productivity metrics Was read at 20:10, 22 Mar 96.

  • X-Rite ColorChecker Passport workflow?

    Anyone using an X-Rite ColorChecker Passport for adjusting color, or creating profiles? I'd like to do this for important shots, or shooting sessions with consistent light. It is very useful to shoot a test shot of the ColorChecker Passport and use i

  • How can i install jdbc drivers

    Hi i install websphere 5 and try to connect to my sql server but cannot find jdbc driver class path and can not find any jdbc driver pls tell me how can i install jdbc driver in my websphere with regards

  • Query to get summary for two types of row data

    Hi Friends, I have tried using aggregate functions and thought of using analytic functions and still trying... But I am sure some analytic function expert can quickly help me out in this. With this data. BID_ELMT_SEQ_ID     PRF_NO          BID_REQ_DT