Multi Pantallas. Programa abierto en pantalla Auxiliar y ventanas aparecen en pantalla del mac.

Las Ventanas de una aplicación (p. ej. nuevo mensaje del programa mail) aparece en la pantalla principal y no en la pantalla (monitor auxiliar conectado por HDMI) que esta activa la aplicación. Esto molesta muchísimo. Estoy seguro que es por una configuración. Tengo instalado el Mavericks.
Gracias por vuestra ayuda!

Las Ventanas de una aplicación (p. ej. nuevo mensaje del programa mail) aparece en la pantalla principal y no en la pantalla (monitor auxiliar conectado por HDMI) que esta activa la aplicación. Esto molesta muchísimo. Estoy seguro que es por una configuración. Tengo instalado el Mavericks.
Gracias por vuestra ayuda!

Similar Messages

  • Running a Java Multi Thread Program in database

    I have created a multi threaded program in Java and it runs successfully from the command prompt. I want to create a DBMS Job which will wake up at regular intervals and runs the java program(Java stored procedure). Is this possible in 9.2/10G ?? If Yes, will there be any impact on the DB performance/increase memory etc.,
    The database (9.2...) resides on a RH 2.3 AS box.
    Any ideas...
    Thanks,
    Purush

    Purush,
    Java stored procedures cannot be multi-threaded. Well, they can, but the threads will not run in parallel. You may be able to find some more information in the Oracle documentation, which is available from:
    http://tahiti.oracle.com
    Good Luck,
    Avi.

  • Multi threaded programming

    I am quite new to multi threaded programming.
    The problem I am facing in my code is as follows:
    I can instantiate 1-10 threads from my controller class. For example if my controller class generates 10 threads, 5 threads
    finish the task they are assigned to do(i.e send SMS and Update the Database) and the other 5 threads eventhough send SMS but
    get stuck when they are supposed to update the Database (this is inferred from the logs).
    Due to this problem my controller class remains in a wait state as I am using the join() method and some of the threads never
    join.
    Another interesting observation is that it always happens that the thread numbered 0-5 always get stuck at the exact point
    where database has to be updated and thread number 6-10 complete their task. Same is the case when i instantiate 2 threads, i
    thread completes its task and another thread gets stuck, again at the same point.
    I am using Connection Pooling to connect to the database.
    I am sure that the problem is with the query
    int j=dbObject.execute_pst("UPDATE table SET flag='true' WHERE message IN("+trueFlag+")",con);
    where true flag is a comma seperated string containing some ID's.
    What i cannot understand is why some of the threads (almost 50% of them), work fine with this query and the others get stuck
    (i.e. just wait at this query during runtime)

    The problem must lie in the connection, as the SQL statement is to basic to cause an endless loop inside the DBMS. If you are in doubt, try the setMaxRows() method of the Statement interface, I'm using Sybase and it also limits the number of rows processed in update and delete statements (which I'm pretty sure is buggy, but you can still try it).
    Which DBMS are you using by the way?

  • Is there anyone who does computational physics using numerical recipes  and multi source programming in c

    is there anyone who does computational physics using numerical recipes  and multi source programming in c++

    On an iPad?  I'd have to say no, since you can't compile C++ code on an iPad.

  • Cómo apagar la pantalla del MBP al conectar un proyector

    Gracias por leer mi post, espero me puedan ayudar. Tengo una macBook pro de 13" con YOSEMITE
    Quiero saber como se puede apagar la pantalla del portatil al conectar un proyector o una pantalla. Sucede que para trabajar mejor uso una pantalla de 21"
    de antemano gracias por su colaboracion

    Hola Cristinap,
    No conosco una manera de borrar iconos duplicados sin borrar el aplicativo. Esto probablemente fue un error del telefono.
    Puedes intentar reiniciar el telefono y quitar la bateria por 30 segundos.
    Si esto no funciona, puedes borrar y reinstalar el aplicativo. Para borra aplicativos, sigue estas instruciones:
    * [https://support.mozilla.org/es/kb/como-desinstalar-una-aplicacion-en-firefox-os Como desinstalar una aplicacion en Firefox OS]
    - Ralph

  • No se ilumina la pantalla del ipod pero se ve la pantalla!!!!

    No se ilumina la pantalla del ipod pero se ve la pantalla!!!!

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          

  • Cómo se imprime pantalla en MAC?

    Cómo se imprime o captura la imagen de una pantalla en MAC?

    http://www.apple.com/findouthow/mac/#capturescreen
    and
    http://docs.info.apple.com/article.html?path=Mac/10.7/en/mh26782.html

  • Cada vez que realizo un llamada la pantalla del movil al ponerse en contacto con el oido activa diversas teclas e interrumpe la transmision

    cada vez que realizo un llamada la pantalla del movil al ponerse en contacto con el oido activa diversas teclas e interrumpe la transmision, por favor que debo hacer para evitar que vuelva a suceder????

    Si hubieses leido con detenimiento los Terminos de Uso de estos foros cuando te registraste, habrías observado que se menciona que Apple No Vive Aquí. Estos son foros de usuario-a-usuario y ningún personal de Apple los visita salvo los moderadores que procuran se cumplan dichos Terminos. O sea, quienes leemos tu discurso somos usuarios como tu.
    Si quieres que te conteste Apple usa las ligas de contacto y retroalimentacion que se encuentran en la parte inferior/derecha de la ventana.

  • La pantalla del ipad2 se bloqueo al actualizar ios7

    La pantalla del ipad2 se bloqueo al acualizar ios7

    me paso lo mismo.- hay posibilidades de entregarlo en parte de pago y sacar uno nuevo?

  • Se me daño la pantalla del ipad2.- que posibilidades hay de entregarlo y que me den un ipad nuevo pagando la diferencia

    Se me daño la pantalla del ipad2.- que posibilidades hay de entregarlo y que me den un ipad nuevo pagando la diferencia

    me paso lo mismo.- hay posibilidades de entregarlo en parte de pago y sacar uno nuevo?

  • HELP!....GUI crashes when i call a multi-threaded program from it

    Hi..I have encountered a problem in my end of year project, which i cant see to solve. The problem is i am starting a multi-threaded program for a JButton on a GUI. All though this starts the other program it crashes the GUI completely how do i stop this.
    this is the code i use to call the threaded program.
    public void actionPerformed(ActionEvent e)
    Object target=e.getSource();
    String line = new String();
    if( target==b1 )
         try
    cl = new client();
         cl.startup();
         catch(Exception ex){ex.printStackTrace();}
    thanks Mike

    No there is no exceptions being given. this is one of the reasons why i dont no what to do. i thought myself that the threaded was taking all the resources and not going back to the GUI. if this is the case is there anyway that i can call back the GUI and keep the threaded program running?
    thanks
    mike.

  • My Epson photo 1280 will only print 1/2 of a page from a document in Pages program. First print was fine. Have printed out a Mac templet and printer does same thing. Cleaned heads, checked nozzels etc. Any ideas?

    My Epson photo 1280 will only print 1/2 of a page from a document in Pages program. First print was fine. Have printed out a Mac templet and printer does same thing. Cleaned heads, checked nozzels etc. Any ideas?

    Hello, I have exactly the same problem. I could have written the same text. And I have'nt found solutions. Except, perhaps, change this printer (and quit HP?).
    Any suggestions would be really much appreciated.
    Thank you for your possible responses.

  • What program works best in cleaning the junk file out of my mac?

    What program works best in cleaning, and improving the speed of my mac.  It's about four years old now, any suggestions are appreciated as I am new to this.

    Kappy's Personal Suggestions for OS X Maintenance
    For disk repairs use Disk Utility.  For situations DU cannot handle the best third-party utilities are: Disk Warrior;  DW only fixes problems with the disk directory, but most disk problems are caused by directory corruption; Disk Warrior 4.x is now Intel Mac compatible. Drive Genius provides additional tools not found in Disk Warrior.  Versions 1.5.1 and later are Intel Mac compatible.
    OS X performs certain maintenance functions that are scheduled to occur on a daily, weekly, or monthly period. The maintenance scripts run in the early AM only if the computer is turned on 24/7 (no sleep.) If this isn't the case, then an excellent solution is to download and install a shareware utility such as Macaroni, JAW PseudoAnacron, or Anacron that will automate the maintenance activity regardless of whether the computer is turned off or asleep.  Dependence upon third-party utilities to run the periodic maintenance scripts was significantly reduced since Tiger.  These utilities have limited or no functionality with Snow Leopard or Lion and should not be installed.
    OS X automatically defragments files less than 20 MBs in size, so unless you have a disk full of very large files there's little need for defragmenting the hard drive. As for virus protection there are few if any such animals affecting OS X. You can protect the computer easily using the freeware Open Source virus protection software ClamXAV. Personally I would avoid most commercial anti-virus software because of their potential for causing problems. For more about malware see Macintosh Virus Guide.
    I would also recommend downloading a utility such as TinkerTool System, OnyX 2.4.3, or Cocktail 5.1.1 that you can use for periodic maintenance such as removing old log files and archives, clearing caches, etc.
    For emergency repairs install the freeware utility Applejack.  If you cannot start up in OS X, you may be able to start in single-user mode from which you can run Applejack to do a whole set of repair and maintenance routines from the command line.  Note that AppleJack 1.5 is required for Leopard. AppleJack 1.6 is compatible with Snow Leopard. There is no confirmation that this version also works with Lion.
    When you install any new system software or updates be sure to repair the hard drive and permissions beforehand. I also recommend booting into safe mode before doing system software updates.
    Get an external Firewire drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
    Carbon Copy Cloner
    Data Backup
    Deja Vu
    SuperDuper!
    SyncTwoFolders
    Synk Pro
    Synk Standard
    Tri-Backup
    Visit The XLab FAQs and read the FAQs on maintenance, optimization, virus protection, and backup and restore.
    Additional suggestions will be found in Mac Maintenance Quick Assist.
    Referenced software can be found at CNet Downloads or MacUpdate.
    Be sure you have an adequate amount of RAM installed for the number of applications you run concurrently. Be sure you leave a minimum of 10% of the hard drive's capacity as free space.

  • I need to update my macbook but I need to know what software program to buy to update it. I am operating on Mac OSX 10.5.8

    I need to update my macbook but I need to know what software program to buy to update it. I am operating on Mac OSX 10.5.8. I want to be up to date on all software updates at the end.

    Choose About this Mac from the Apple menu and check the processor.
    If it's a Core Duo Mac, click here, install the DVD, and run Software Update.
    If it's a Core 2 Duo or better Mac, upgrade it as if it was a Core Duo Mac, and once done, if desired, open the Mac App Store, and try downloading Yosemite. If you get told it's incompatible, go to the online Apple Store and order a download code for Lion 10.7.
    Mac OS X 10.7 and newer don't support PowerPC software such as Microsoft Office 2004. If you upgrade the OS, back up the computer first.
    (115509)

  • I need to run windows program's like word and excel and PowerPoint etc on my mac for college , how can I do it?

    I need to run windows program's like word and excel and PowerPoint etc on my mac for college , how can I do it?

    You can install Office for Mac
    You can install Windows using Boot Camp Assistant then install Office for Windows in your Windows installation
    You can install Windows and Office for Windows using a virtual machine like Fusion, Parallels, or VirtualBox

Maybe you are looking for

  • I canu00B4t start SAP

    Hi All, I have a problem when a try to start the SAP instance. Iu00B4m running Windows 2000 / MS-SQL Enterprise Server 2000 / SAP R/3 4.7 IDES I check R3trans -d and all fine, i can see the DB. But, in MMC, when i try to up SAP, all disp+work start,

  • Java Mapping for HTTP Post

    Hi Im following this blog http://scn.sap.com/community/pi-and-soa-middleware/blog/2014/09/12/html-form-upload-using-http-plain-adapter-with-java-mapping but I have encountered an issue which I cannot solve. My issue is, in addition to the required ou

  • Sharing Smart folder definitions (not contents)

    Is there an easy way to share smart folder definitions between computers in Mail? I have a Smart Folder on Mac #1 that is capturing the email messages I want it to. Now I want to re-create the same Smart Folder on Mac #2 without having to write down

  • XML parsing (reformatted) - please any insight would help

    Hey there, Im having a problem, code compiles but doesnt work gives no output. Please can someone help me with this. This is the Code import javax.xml.parsers.*; import org.xml.sax.*; import org.xml.sax.helpers.*; import java.io.*; public class ReadL

  • Can I "unpair" my dock from my remote?

    I recently purchased a dock for my 5th generation ipod. I have no intentions of using the remote that came with my iMac for the dock. I will only use it to control Front Row. It's annoying to have my iPod respond to the remote when I'm trying to cont