Is it possible to use fullscreen and exclusive mode with a jfilechooser?

is there a way to use them together? while in fullscreen exclusive mode the jfilechooser doesn't attach to fullscreen window and it halts the program.. I've tried setting the parent frame as the fullscreen frame but it's all glitched.. am I missing something?
thank you,
best regards,
Jacopo

For reference, the cross-post can be found here:
Is it possible to use network devices (cDAQ-9188) with a PXI Real Time system?
Jayme W.
Applications Engineer
National Instruments

Similar Messages

  • Is it possible to use cursors and zooming in the plotxy function that outputs pictures?

    I use the plot multi xy function in my vi that outputs a picture. And I wonder if it is possible to use cursors and zooming with this output picture?
    Thanks,
    Ogulcan Kaya

    Hi Ogulcan,
    it is, but not as straightforward as with standard graphs.
    As a starting point take a look at the example shipped with LV: Modified Smith Plot with Zooming.vi; you find it in picture examples.
    Good luck,
    Alberto

  • Anyone have a example for useing volitile image in exclusive mode with

    i need a example of how to use a volitile image in exclusive mode with active rendering .
    anyone know of one or even partial code of how to do it ive been racking my brain trying to figure out how to do it.
    or even a example of fullscreen that i can use to draw to the screen in exclusive fullscreen mode.
    and im not talking about the sun tutorial no one can even answer my question about it when i asked in the java forum

    by the way, here's a commented version of the example I gave earlier in case the puzzle pieces are upside down for you...
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    /* Goes into FullScreen with 640x480 16 bit
    * Not all proper checks are made (like getting available DisplayModes),
    * But you can always look at the doc for the rest of the checks. Besides,
    * What computer doesn't have 640x480...?
    public class Example extends Frame implements Runnable, KeyListener {
         VolatileImage v;
         int w,h,x,size; // x and size are for the moving ball
         boolean done; // when this is true, the program exits
         public Example() {
              /* Sets up the frame to be used for fullscreen */
              super(GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDefaultConfiguration());
              GraphicsDevice device = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
              /* the below 2 methods aren't required
              * but using them results in best performance.*/
              setUndecorated(true);
              setIgnoreRepaint(true);
              /* A few mandatorial checks */
              if (device.isFullScreenSupported()) {
                   device.setFullScreenWindow(this);
              if (device.isDisplayChangeSupported()) {
                   device.setDisplayMode(new DisplayMode(640,480,16,0));
              /* our frame must be showing before we
              * we create our BufferStrategy or image,
              * in this case a VolatileImage.
              * Showing our frame also switches to
              * fullscreen mode.
              show();
              w = getSize().width;
              h = getSize().height;
              x = 0;
              size = 30;
              v = createVolatileImage(w,h); // creates volatile image (duh)
              done = false; // program exits when true
              addKeyListener(this); // used for exiting
              new Thread(this).start(); // starts the thread
         public void run() {
              while (!done) {
                   x += 2; // increase ball location
                   if (x >= w-size) x = 0; // back to left if all the way right
                   /* You could also use repaint() here,
                   * but you won't get a screen update
                   * until the system decides it's time.
                   * calling paint(getGraphics()) is much faster
                   paint(getGraphics());
                   /* Pausing of the thread... */
                   try {
                        Thread.sleep(1);
                   catch (InterruptedException e) {
                        done = true; // exit if there was some error
              System.exit(0); // this won't be called until done is true
         public void paint(Graphics g) {
              /* this attempts to get the graphics
              * from VolatileImage */
              Graphics gfx = v.getGraphics();
              /* If VolatileImage has no image memory,
              * we restore it and get the graphics for it */
              while (v.contentsLost()) {
                   if (v.validate(getGraphicsConfiguration()) == VolatileImage.IMAGE_INCOMPATIBLE) {
                        v = createVolatileImage(w,h);
                   gfx = v.createGraphics();
              /* this paints the ball etc */
              gfx.setColor(Color.black);
              gfx.fillRect(0,0,w,h);
              gfx.setColor(Color.cyan);
              gfx.fillOval(x,h/2-(size/2),size,size);
              g.drawImage(v,0,0,null); // draw the VolatileImage
         public void update(Graphics g) { // used for no blinking
              paint(g);
         public void keyPressed(KeyEvent e) {
              if (!done) done = true; // program exits on any key press
         public void keyReleased(KeyEvent e) {}
         public void keyTyped(KeyEvent e) {}
         public static void main(String[] args) {
              new Example();
    }

  • Get GPS info using Autonomous and CellSite Mode parallelly using MultiThreading

    I tried to get the GPS latitude and longitude values using Autonomous and CellSite Mode parallelly using two threads, but while execution only one thread is being active and I get values from only that, the other thread doesn't return any values at all.
    Is it possible to retrieve the GPS information using multiple threads running parallelly and also can I display the latitude and longitude values from the threads on the screen with less accuracy rate among the values.
    Thanks in advance...

    Your thread may not get noticed as it is in General Support threads. You may post your thread in Java Development to get faster response.
    Ron
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up Blackberry Battery Saving Tips | Follow me on Twitter

  • MacBook will not start. I have restarted with original CD. I have used Utilities and "no problem" with hard drive. I have reset PRAM. I have tried safe boot. Nothing is work. Gray screen with Apple logo and rotating wheel. Thanks for any suggestions!

    MacBook will not start. I have restarted with original CD. I have used Utilities and "no problem" with hard drive. I have reset PRAM. I have tried safe boot. Nothing is work. Gray screen with Apple logo and rotating wheel. Thanks for any suggestions!

    Snow Leopard is a Mac OS X version. You say that it's the version you have in your Mac (10.6.8). Do a back up of your files, format the hard drive (using Disk Utility) and reinstall again

  • Is it possible to use a new iMAC 2011 (with thunderbolt port) as a passive screen with a Macbook (MacBook5,1 - End 2008) ?

    s it possible to use a new iMAC 2011 (with thunderbolt port) as a passive screen with a Macbook (MacBook5,1 - End 2008) ?

    No, you would need to upgrade the MacBook to a 2011 MacBook Pro that also has Thunderbolt.
    Roger

  • Is it possible to use iCloud between a MBA with Lion and a iMac with snow leopard?

    I have an iMac with Mac OS X 10.6.8 and an MBA with Mac OS X 10.7.2. I want to use iCloud to synchronise my pages documents, my calendar and adressbook between the two. Is that possible?

    icloud for snow leopard does work if you do the following:
    Go to iCal preferences.
    Set up new account.
    Account Type:  CalDAV
    User Name:  Your MobileMe / iCloud email address
    Password:  Your password for above
    Server Address:  p06-caldav.icloud.com

  • Is it possible to use SCCP and SIP at the same time?

    Our CCM is using v9.1 and all of our phones are SCCP. We are looking at a conference room phone that runs SIP. Would it be possible to use this in our current setup?

    Hi @bobdchambers,
    That's totally fine. They both co-exist in the same environment but make sure to not configure the same extension in different models because if you dial an extension that is configured in a SCCP phone and a SIP phone, just the SCCP phone rings.
    HTH.
    Rgrds,
    Martin, IT Specialist

  • Possible to use arrays and merge?

    Is it possible to use the results of APEX_UTIL.STRING_TO_TABLE in a merge statement? For example:
    l_selected := APEX_UTIL.STRING_TO_TABLE(:P4_V_METHODS);<br>
    l_methods := APEX_UTIL.STRING_TO_TABLE(:P4_VERIFICATION_SEQ);<p>
    merge into verification_results vr<br>
         using l_methods on (<br>
         l_methods = vr.verification_seq<br>
    ) <br>
    WHEN MATCHED THEN ...<p>
    etc.<p>
    It's a bit of a convoluted task that may not be possible. I've got checkboxes that hold the reference values (method_seq) and a hidden item that returns a string of the primary keys of a rel table (verification_results.verification_seq) and I want to merge what was stored and any new/different things that were checked.
    Y'all are going to want an example on apex.oracle.com, aren't you...
    thanks!

    Short answer, no. Used a couple arrays and loops instead.

  • I'm looking into the possibility of using Photoshop CS2 on Imac with Mavericks OS. Is this even possible, and if not, what would I need to do?

    Is it possible to download and use Photoshop CS2 on Imac with Mavericks OS?

    This is not a photography question.  It is an application specific question,  Please post in the Photoshop forum.
    Photoshop General Discussion
    Remember, you are not addressing Adobe here in the user forums.  You are requesting help from volunteers users just like you who give their time free of charge. No one has any obligation to answer your questions.

  • Possible to use Airport and Ethernet at same time?

    Short question: I want to use my wired Ethernet connection for my local area network to access my file servers and other computers on my network, and a wireless Airport connection for Internet usage.
    Is this possible? How?
    It seems that with both "on", I am connecting to both via Ethernet and it is forgoing the wireless network entirely even though it shows as connected to my wireless network.
    PowerMac G5 Dual 2.5GHz   Mac OS X (10.4.3)  

    This is normally done like this.
    Your Internet Service Provider furnishes you a Modem.
    You run an Ethernet cabale from your ISP's Modem to the Wan Port, or uplink port on your wireless Router, ( You will have to purchase the Wireless Router.
    Wireless Routers are available in 2 4 and 6 port varietys.
    Anything you plug into the ports as many computers as you have ports for hard wired connections. This will allow for wired and wireless connections to the Internet and all can be used simultaniouslly.
    Remember each machine you have connected will have to have the correct setting in the Network Preferences.
    This can also be done with a Switch or a Hub each varys a little bit on the confiquration.. If you need more information be specific on exactly what all you are trying to hook up and what ISP you have the Modem they furnish, the exact router you are using and the number of machines and how they are set in the Network setting on each,
    Normally any wireless router you purchase will give you a step by step on hoe to set it up, in the paper work that comes with them. Good Luck Don

  • Can I use parallel and multiplexed mode?

    Hi,
    I have
    a NI USB-6259 DAQ Module (Two Connectors with to Cables to two SCXI-1349, which connects the DAQ to the Chassis)
    a SCXI-1001 Chassis
    3 SCXI-1143 8 Channel Low Pass Filter Modules
    and
    a SCXI-1180 Front End Plate
    As the DAQ has 16 diff. AI Channels, I would like to drive two SCXI 1143 in multiplexed mode(connected to Connector 0 at USB-DAQ via SCXI 1349) and one in parallel mode assigned to AI 8-15 (Connected to Connector 1 at USB-DAQ via SCXI 1349) .
    The configuration is approved by MAX
    But when I run it with the software I get an error saying that a simultaneous scan is possible Error -223835. And that the selected channel is not in the task Error: -200486.
    Can one DAQ device(like NI USB-6259) be assigned with Channels 0-7 in multiplexed mode (multiplexing two SCXI 1143 8 Channel) and the rest of the channels in parallel mode for on SCXI card? NI-USB 6259 has to separate connectors but is it still seen as one DAQ card?
    What does the error say? I thought I configured for a simultaneous scan.
    Attached to this post is a picture:
    Top Left: Back view of my NI USB-6259
    Top Right: Front view of my chassis with three SCXI 1143
    Bottom: Back view of my chassis. Two SCXI 1249 are connected to two Cards. One card should be run in parallel mode, two in multiplexed mode.
    Cheers,
    Alex
    Solved!
    Go to Solution.

    @ Lorenz-Mie
    you are right that I need a new DAQ device, but as stated in the M-Series manual on page A-108:
    "Use Connector 0 of  your M Series device to control SCXI. NI-DAQ 7.4
    and later supports SCXI in parallel mode on Connector 1."
    Thats what I've done. I'll keep on trying.
    Alex

  • Starting up in shared and exclusive mode

    pls what is the sql syntax to mount a database exclusively, and also mounting in shared mode.

    Oded,
    Actually there is. EXCLUSIVE and SHARED were once used for Oracle Parallel Server.
    SHARED meant: allow both instances to function.
    EXCLUSIVE meant: allow only the current instance to function.
    That said
    SHARED has been replaced by CLUSTER_DATABASE = TRUE
    and EXCLUSIVE by CLUSTER_DATABASE = FALSE
    Sybrand Bakker
    Senior Oracle DBA
    Experts: those who did read dcoumentation.

  • Is it possible to use Oracle instead of DB2 with Netweaver Test-drive 2004?

    Dear all,
    Recently I ordered on SAP Knowledge shop the Netweaver Test-Drive 2004 DVD (the 32-bit version for Linux (Red Hat Enterprise)).
    Before the installation I had already installed Oracle Enterprise 11g (Release 2). However the DVD installed both AS and DB2.
    What I would like to ask is that is it possible to use my already installed Oracle database with Netweaver and
    remove DB2 from hard disk?
    Kind Regards,
    Dariyoosh

    >
    Anjali Sharma2 wrote:
    > No. Trial version is only for DB2 or MaxDB. (DB2 for 32 bit and MaxDB for 64)
    >
    >
    > However, just for info, license is not available now for 32bit NW trial version. Just confirm at your end too.
    Hello there,
    Thank you very much for your help.
    Kind Regards,
    Dariyoosh

  • Is it possible to use XSS 2005 on EP7 with ECC 5.0 ?

    Hi all,
    I have an ECC5.0 and I want to upgrade my EP6 to EP7. I'm using XSS 2004 on EP6 and I want to use XSS 2005 on that EP7. I've seen on different notes that it is not possible to use XSS 2005 with ECC 5.0 as a back end.
    Is there any solution to connect XSS 2005 to ECC 5.0 ??? Please I really need a positive answer
    Thanks,

    Hi Joseph,
    I have gone thru same problem in my last project but my situation was little different.
    Actually Business Package of ESS/MSS has two components:
    1. Portal Objects (iView, Roles, Pages etc )
    2. XSS - The Java WebDynpro Code (which in turn contain 3 component SAP_ESS, SAP_MSS, PUSIC_GP)
    Also the prerequisite is that we should have SAP_HR (will give HR functionalities in ECC) and EA_HR (contains RFC, structure required for XSS).
    Now the restriction imposed by SAP is that SAP_HR, EA_HR and XSS should be on same version and patch level. Make sense also. However there are situation where you can deviate from above restriction. (I will explain the same below).
    So what you can do is to install the Portal objects(iView, Roles, Pages etc ) on EP 7.0 (can be installed on EP 6.0 and federated to EP 7.0), install XSS 2004 on EP6.0 (having JAVA 640) and connect the same with ECC 5.0.
    You are looking to install Portal Objects, XSS 2005 on EP 7.0 and connect with ECC 5.0. This is possible but NOT recommended. Actually XSS 2005 WebDynpro will look for enhanced structures, RFC in ECC, which XSS will not find and will throw dumps (sometime java and sometime SAP dumps). You can fix the problem by manually installing the new functionality but believe me it is VERY cumbersome task and will make your system highly unstable.
    What I would advise you is to look into your requirement once again and educate your end client with the problem and take appropriate action accordingly.
    Do let me know if you need any further help.     
    Cheers,
    AB

Maybe you are looking for