FUNCTIONS NonBlocking & NonBlocking_With_Callback

Hi there,
I have a problem i can not solve by my own. I need help please!!
I need to open a PDF file from my aplication, and it will open if the path of Windows (cmd \ path) has the AcroRd32.exe on it. If the user has it configured on his computer like that, i would like to use the first function, and if not, the NonBlocking_with_callback so i can put on the HOST_CALLBACK Trigger a message telling the user to configure his Windows Path manually, to open the file.
The point is that using only the first function i cannot find a way to open a message to the user to indicate him to configure his computer if it needs it, and using the second one the trigger comes out even if it needs it or not.
In a thread before (How to get the Windows Path i try to get the windows path to know if the user's computer needed to be configured or not, so i could put a message without any problem, but as the thread say, I cannot find the way to do it.
Please, tell me something... I am starting to have a headache.
Message was edited by:
abladb

This is what i was looking for. This works!!!. Thanx for reading anyways.
declare
p_modo Varchar2(50);
p_aplicacion varchar2(50) := 'AcroRd32';
fname VARCHAR2(200); -- = absolute rute of the file
pid WEBUTIL_HOST.PROCESS_ID;
begin
l_cadena := 'CMD /C ' || p_aplicacion || ' ' || fname;
IF p_modo = 'NONBLOCKING_WITH_CALLBACK' THEN
pid := WEBUTIL_HOST.NONBLOCKING_WITH_CALLBACK(l_cadena, 'HOST_CALLBACK');
-- Nota: HOST_CALLBACK es un trigger que tendremos que tener definido en el form.
Synchronize;
          DECLARE
          v_error_salida WEBUTIL_HOST.output_array;
          BEGIN
          v_error_salida := WEBUTIL_HOST.Get_Standard_Error(pid);
          message(v_error_salida(1));
Synchronize;
          message('Puede que sea necesario configurar su equipo. Consulte la ayuda de nuestra aplicación (?).');
          EXCEPTION
          When Others Then
          -- Cuando no existen errores en el proceso activo, la variable v_error_salida no va informada,
          -- produciendose un error al ser llamada en Pon_Nota(v_error_salida(1));
          Null;
          END;

Similar Messages

  • WebUtil: CLIENT_HOST arg #2

    According to the PROCEDURE BODY of CLIENT_HOST WebUtil's attached library, there is a second argument (KWD in number).
    Does anyone know what this does? The Oracle documentation I have seen does not address this argument.
    Also: Is there a way to launch a client-side application asynchronously so that the user does not have to exit the client app in order to free-up the oracle screen which launched it?
    Thanks for any insight.

    Hello,
    The Webutil HOST package contains all you need:
      FUNCTION  Host(cmd in VARCHAR2) return PLS_INTEGER;
      PROCEDURE Host(cmd in VARCHAR2);    
      FUNCTION  Blocking(cmd in VARCHAR2) return PROCESS_ID; 
      PROCEDURE Blocking(cmd in VARCHAR2);  
      FUNCTION  NonBlocking(cmd in VARCHAR2)return PROCESS_ID;
      PROCEDURE NonBlocking(cmd in VARCHAR2);
      FUNCTION  NonBlocking_With_Callback(cmd in VARCHAR2, callbackTrigger in VARCHAR2)return PROCESS_ID;As you can see, it contains a NonBlocking function ;o)
    Francois

  • Options for Client_host

    Hi,
    Do anyone have a link which can show what are all the parameters (or options) that can be used along with client_host and webutil_host
    Regards

    All is written in the webutil.pll itself:
    PROCEDURE CLIENT_HOST(syscmd Varchar2, kwd Number default NULL) IS
    * CLIENT_HOST
    *   This procedure duplicates the action of the HOST Built-in, except that it
    *   operates on the client (browser) tier rather than the Applcation server tier. 
    *   Existing HOST code  can be re-directed to run on the client simply by
    *   prefixing all the calls with "CLIENT_"
    *   The oracle.forms.webutil.host.HostFunctions bean is needed in your
    *   Form to use these functions
    *   Note 1) This version (like client server) is Blocking and will prevent
    *   re-draw of the Forms Screen whilst the Host command is active
    *   Note 2) The kwd argument (e.g. NO_SCREEN etc) is ignored
    *   For more flexible "Host" commands see the WEBUTIL_HOST package
    *   That has facilities for Asynchronous callbacks and return codes
    * Version 1.0.0
    * Change History
    *   1.0.0 DRMILLS 03/JAN/2003 - Creation
    BEGIN
         -- simply call through the to WEBUTIL_HOST.HOST() Function
      if WEBUTIL_HOST.HOST(syscmd) <> 0 then
           raise form_trigger_failure;
      end if;
    END CLIENT_HOST;
    PACKAGE WEBUTIL_HOST IS
    * WEBUTIL_HOST
    *   This Package contains routines to execute "host" commands on the client
    *   Calls may be blocking or asynchronous and if aysnchronous may have a
    *   callback mode e.g. You fire off the process on the client and when it
    *   has finished a user named trigger will execute
    * Version 1.0.2
    * Change History
    *   1.0.0 DRMILLS 27/JAN/2003 - Creation
    *   1.0.1 DRMILLS 01/MAR/2003 - Slight API changes
    *   1.0.2 DRMILLS 17/MAY/2003 - Added call to WebUtil_Core.Init
       * Types
       * PROCESS_ID is a type to represent a process so that you can do
       * things like get the return code and error output and also kill it
      type PROCESS_ID is record (handle PLS_INTEGER);
       * OUTPUT_ARRAY is used to return the Standard Out and Standard Error output
       * from a host command - each line of the output will appear as a member of this array
      type OUTPUT_ARRAY is table of VARCHAR2(256 char) index by binary_integer;
       * Functions
       * HOST function is closest to the old client/server Host.
       * It blocks the Forms client until the host call is finished.
       * This version returns with the return code from the client
      FUNCTION  Host(cmd in VARCHAR2) return PLS_INTEGER;
       * HOST function is closest to the old client/server Host.
       * It blocks the Forms client until the host call is finished.
       * This version returns nothing
      PROCEDURE Host(cmd in VARCHAR2);    
       * Blocking like the Host function blocks the client until
       * it is finished.  However it returns the process id rather
       * than the return code.
      FUNCTION  Blocking(cmd in VARCHAR2) return PROCESS_ID; 
       * This version of Blocking is identical to the HOST Procedure
      PROCEDURE Blocking(cmd in VARCHAR2);  
       * NonBlocking executes a Host command and returns
       * to the Form, allowing PL/SQL to continue at the same time that
       * the command is running on the client.
       * The process id is returned so that you can:
       * 1) Get the Return code from the Process once it's finished
       * 2) Get the console output and error output
       * 3) Kill the Process you started
       * NOTE: It is important to call Release_Process(processId) when
       * You have finished with this process ID - this will release
       * resources in the client (but will not kill the program that
       * you started - use Terminate_Process() for that)
      FUNCTION  NonBlocking(cmd in VARCHAR2)return PROCESS_ID;
       * The Procedure version of NonBlocking executes a Host command
       * and returns to the Form, allowing PL/SQL to continue at the
       * same time that the command is running on the client.
       * In this case the process id is not returned and the client
       * side objects are automatically cleaned up for you.
      PROCEDURE NonBlocking(cmd in VARCHAR2);
       * NonBlocking_With_Callback executes a Host command and returns
       * to the Form, allowing PL/SQL to continue at the same time that
       * the command is running on the client.
       * The difference between this call and NonBlocking is that you
       * can supply the name of a User Defined trigger which WebUtil
       * will automatically call as soon as the process you've started
       * has ended.
       * The process id is returned so that you can:
       * 1) Get the Return code from the Process once it's finished
       * 2) Get the console output and error output
       * 3) Kill the Process you started
       * NOTE: It is important to call Release_Process(processId) when
       * You have finished with this process ID - this will release
       * resources in the client (but will not kill the program that
       * you started - use Terminate_Process() for that)
       * Only call ReleaseProcess in this case *After* the callback
       * trigger has been called.
      FUNCTION  NonBlocking_With_Callback(cmd in VARCHAR2, callbackTrigger in VARCHAR2)return PROCESS_ID;
       * Given a Valid process id that you've gotten from
       * NonBlocking() or NonBlockingWithCallback() you can terminate
       * the client program that you are running.
      PROCEDURE Terminate_Process(process in PROCESS_ID);
       * Get the return code from a given process
      FUNCTION  Get_Return_Code(process in PROCESS_ID) return PLS_INTEGER;
       * Get the console output from a given process
      FUNCTION  Get_Standard_Output(process in PROCESS_ID) return OUTPUT_ARRAY;
       * Get the error output from a given process
      FUNCTION  Get_Standard_Error(process in PROCESS_ID) return OUTPUT_ARRAY;
       * Clean up the resources allocated to a particular Process
       * on the client
      PROCEDURE Release_Process(process in out PROCESS_ID); 
       * Get the ID of the process that has just finished.
       * This call is only valid for use in a callback trigger
       * that has been set up and called through NonBlockingWithCallback()
      FUNCTION  Get_Callback_Process return PROCESS_ID; 
       * Test to see if this Process ID is null
      FUNCTION  ID_NULL(process PROCESS_ID) return BOOLEAN;
       * Test to see if two Process IDs represent the same process
      FUNCTION  EQUALS(process_1 PROCESS_ID, process_2 PROCESS_ID) return BOOLEAN; 
    END WEBUTIL_HOST;Francois

  • NonBlocking_With_Callback

    Can anyone please provide a clear explanation/Usage of the
    Function "NonBlocking_With_Callback" in the WebUtil_Host package?
    I looked at the WebUtil online documentation. It has very little
    information on its usage.
    It would be great if someone who has used it could give an example.

    Hello,
    Yes, it is a user-defined form-level trigger.
    Francois

  • How to use Compare and Swap (CAS) atomic function(Solaris specific) in C

    Hi,
    I have found cas32() atomic function in (solaris 10) </usr/include/sys/atomic.h> (and also there is another atomic.h header file in </usr/include/atomic.h> but this header file does not have any cas32() function declarations) the declaration of cas32 in <sys/atomic.h>
    is as follows
    extern uint32_t cas32(uint32_t *target, uint32_t cmp, uint32_t newval);
    extern ulong_t caslong(ulong_t *target, ulong_t cmp, ulong_t newval);
    extern uint64_t cas64(uint64_t *target, uint64_t cmp, uint64_t newval);
    extern void casptr(void target, void cmp, void newval);
    extern uint8_t cas8(uint8_t *target, uint8_t cmp, uint8_t newval);
    But the problem is when iam using these functions in c programs and compiling
    using gcc it is showing the following error.
    Undefined first referenced
    symbol in file
    cas32 /var/tmp//ccQcsnev.o
    And if i use the function other than cas32 group of instruction
    such as atomic_or_uint()
    whose declaration is extern void atomic_or_uint(uint_t *target, uint_t bits);
    in <sys/atomic.h> it is giving no error where as for CAS32 it showing as undefined symbol.Why it is giving like that we are not able to know.Is it the case that CAS32 instruction only available in Kernel mode and not available to user mode.Please inform us if anyone knows how to use cas32() instruction in the user C programs.As this is usefull for writing Nonblocking versions of stacks and Queues.Is there any way to write
    our own atomic functions?
    Rama

    You are trying to use the old kernel-only CAS functions, use the correct ones like:
    atomic_cas_32.
    DS

  • Objects (XMLType) not supported in nonblocking mode?

    Hi,
    In 11g OCI guide Nonblocking mode section,
    it said "The following features and functions are not supported in nonblocking mode:...objects".
    It looks like if we're selecting embedded objects like XMLType, we can't use nonblocking mode.
    In fact, when I set nonblocking mode on my previously working simple program that selects XMLType from a table, it does not work anymore and returns ORA-03123 right away.
    In GUI or transaction-based application that needs to select embedded objects like XMLType, I'm wondering what approach can be done to make those select nonblocking?
    thanks,
    Terrence

    Are you sure that you are launching iPhoto '11?
    Did you double-click or right-click-open the application directly, or did you launch it some other way?
    Did you migrate applications from some older system? Might you be launching the migrated iPhoto instead?

  • Fax function of HP LaserJet Enterprise 500 Color MFP M575

    Hi,
    I am one of users of HP LaserJet Enterprise 500 Color MFP M575​.
    I would like to know can I set the printer do not print my fax number and fax header on paper when I fax my document to others.
    I had login as admin but I did not see where I can config it.
    Thank you.
    Regards,
    Jimmy Pun

    There is no change to this problem after 6 months since the last post. Put simply, and as stated in the previous posts, there is no way to scan a document and receive the image on your PC. If you are working with graphics for any length of time or want to create an image for inclusion as an image in a document or web page using this piece of equipment will not allow you to do so.
    Great shame as every other function works well - it cannot be beyond the wit of HP to include a Windows application that enables you to scan an image, receive it in the software you are using at the time (e.g. Outlook, Word, Photoshop...) and use it in your work.
    HP Printers several years older than this £1000+ Enterprise printer were able to do this simple job and have done so for a great many years. Just being able to use Microsoft's Fax and Scan would be start.

  • Logical Operations in SQL decode function ?

    Hi,
    Is it possible to do Logical Operations in SQL decode function
    like
    '>'
    '<'
    '>='
    '<='
    '<>'
    not in
    in
    not null
    is null
    eg...
    select col1 ,order_by,decode ( col1 , > 10 , 0 , 1)
    from tab;
    select col1 ,order_by,decode ( col1 , <> 10 , 0 , 1)
    from tab;
    select col1 ,order_by,decode ( col1 , not in (10,11,12) , 0 , 1)
    from tab;
    select col1 ,order_by,decode ( col1 ,is null , 0 , 1)
    from tab;
    Regards,
    infan
    Edited by: user780731 on Apr 30, 2009 12:07 AM
    Edited by: user780731 on Apr 30, 2009 12:07 AM
    Edited by: user780731 on Apr 30, 2009 12:08 AM
    Edited by: user780731 on Apr 30, 2009 12:08 AM
    Edited by: user780731 on Apr 30, 2009 12:09 AM

    example:
    select col1 ,order_by,case when col1 > 10 then 0 else 1 end
    from tab;
    select col1 ,order_by,case when col1 &lt;&gt; 10 then 0 else 1 end
    from tab;
    select col1 ,order_by,case when col1 not in (10,11,12) then 0 else 1 end
    from tab;As for testing for null, decode handles that by default anyway so you can have decode or case easily..
    select col1 ,order_by,decode (col1, null , 0 , 1)
    from tab;
    select col1 ,order_by,case when col1 is null then 0 else 1 end
    from tab;

  • If statement in CE function

    Hi,
    When we use IF in calculation view with CE function the SQL engine is used.
    When we remove the "IF" the  CE engine is used.
    Is there any alternative for if or case in CE functions?
    Thanks,
    Amir

    Is it possible to use CE_CALC for this functionality?
    We are trying to use it inside projection:
    res_bal = CE_PROJECTION (:bal,[ "BUDAT", "RYEAR" ,  "Bal_Date" AS "BALANCE_DATE",   "RTCUR" ,"MAX_ZGROUP"],'"BALANCE_DATE" == 20140101');
    works but:
    res_bal = CE_PROJECTION (:bal,[ "BUDAT", "RYEAR" ,  "Bal_Date" AS "BALANCE_DATE",   "RTCUR" ,"MAX_ZGROUP"], '"BALANCE_DATE" == CE_CALC( 'if(''20140101'' == ''19000101'', ''19000101'', ''20140101'')');
    Doesn't work.
    Thanks,
    Amir

  • IPhone 5s Voice memo to mp3. Now music on iPhone. Won't play from search function.

    I record my band rehearsals using the voice memo on my iPhone 5s. Then I sync to iTunes and convert file to mp3. When i sync back to my iPhone it appears in my music. So far, so good. When I use the search function in music it finds the file but won't play from tapping. I must troll through all my music songs (currently 2227 of them) to find it and then play it. Is it something to do with it still being under the genre "voice memos" or what ?  Anybody help please.  Thanks

    iWeb is an application to create webpages with.
    It used to be part of the iLife suite of applications.
    iWeb has no knowledge of the internal speaker on your iPhone.
    You may want to ask in the right forum.

  • HP AiO Remote app will not recognize scan and copy function of HP Envy 120

    Good morning! HP AiO Remote App is installed on my iPad4 and in the same WiFi network with my HP Envy 120 printer. The printer is recognized by the app and marked with a green led. When I tap on scan or copy in the app menu, it tells me that these functions were available in the app only for printers which provide these features. But HP Envy 120 has both scanner and copier. And last time it worked. Some idea what could have happened here? Thanks. UJ

    Replied on: http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile-Printing-and-ePrintCenter/HP-AiO-Remote-will-n...
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • HP AiO Remote will not recognize scan and copy function of HP Envy 120 printer

    Good morning! HP AiO Remote App is installed on my iPad4 and in the same WiFi network with my HP Envy 120 printer. The printer is recognized by the app and marked with a green led. When I tap on scan or copy in the app menu, it tells me that these functions were available in the app only for printers which provide these features. But HP Envy 120 has both scanner and copier. And last time it worked. Some idea what could have happened here? Thanks. UJ

    Hi UJKarl, welcome to the HP Forums. You should be able to scan from the HP AIO Remote App on your Envy 120 printer. You probably just need to power cycle the printer, iPad and router to regain proper function.
    Turn off your printer with the power button. Power down the iPad by holding the sleep button down until you get the option to 'slide to power off'. Then disconnect the power cord to your router and count to about 10, and then plug it back in. Once the router comes back online, turn the printer on. When the printer comes back online (blue wi-fi light stops blinking), then power the iPad back up. Try again, and it should work.
    Let me know how it turns out.
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • 7515 ios 8 scanning doesn't function using document feeder

    My AiO remote updated on my iPad today and i have issues scanning from the scanner. The printer and tablet functions properly when scanning using the glass however when using the document feeder, AiO remote scans the sheets then before saving it says there is a problem with the scanner, check the scanner. not sure why it works with the glass and NOT with the feeder.

    I am having the exact same problem. I will add that scanning from the document feeder to my Mac Book works fine. The problem with the document feeder is only whenn atttempting to use the AiO software on my iPad.

  • I want to implement thems functionality in  my swing application

    Hi All...
    I want to implement the themes object in my swing application,How ,where to start and move that functionality,If anybody use this functionality in your program experience can u share with me.
    Than to Advance
    ARjun...

    Hi Kuldeep Chitrakar
    I can do that in web intelligence. dont want that
    I am replicating some of the sample report of SQL Servers in BusinessObjects XI R3.1.
    One of the SQL Sever's report is of product catalogue type that gives complete information like name, category, description along with the products image etc... for each of the products.
    I am trying to replicate the above said SQL Server report in Business objects XI R3.1. I am facing problem in bringing the image in to my BO report. The image resides in a table and its datatype is of varbinary(max). I don't know the exact matching while creating an object in the uiverse designer.
    Here is the url link http://errorsbusinessobjectsxir3.blogspot.com/2010/10/business-objects-image-errors.html
    Regards
    Prasad

  • Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems n

    Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems never arose during two years of using LTR-4 and nothing else has changed on my computer.  I have a pretty simple system with only a few plug-ins, which are usually not in operation.  I have 12GB of RAM in my Windows 7 PC.  I could illustrate these problems with screen shots if you would tell me how to submit screen shots.  Otherwise I will try to describe the problems in words.
    The problem is clearly cumulative, growing worse as usage time passes.  Compare View feature gradually slows down and eventually seems to choke as my work session proceeds. If I Exit LTR and re-enter and start all over, things will work normally for maybe 30 minutes, but then the Compare View feature begins to become very slow to respond.   In a recent example with my screen full of thumbnails in Library mode I highlighted two images to compare. LTR started to open the Compare View screen by first having the top row of thumbnails disappear to be replaced by the "SELECT" and "CANDIDATE" words in their spaces  (but no images), but Compare View never succeeded in gaining control of the screen. After some seconds the top row of thumbnails reasserted its position and the Compare View windows disappeared. But LTR kept trying to bring them back. Again the top row of thumbnails would go away, Select and candidate would reappear, try again, and give up. This went on for at least 2-3 minutes before I tried to choose File and Exit, but even that did not initially want to respond. It doesn't like to accept other commands when it's trying to open Compare View. Finally it allowed me to exit.
    To experiment I created a new catalog of 1100 images.  After 30-40 minutes, the Compare View function began to operate very slowly. With left and right side panels visible and two thumbnails highlighted, hitting Compare View can take half a minute before the two mid-size  images open in their respective SELECT and CANDIDATE windows. When the side panels are open and two images are in the Select/Candidate spaces, hitting the Tab button to close the side panels produces a very delayed response--25-30 seconds to close them, a few more seconds to enlarge the two images to full size. To reverse the process (i.e., to recall the two side panels), hitting Tab would make the two sides of the screen go black for up to a minute, with no words visible. Eventually the info fields in the panels would open up.
    I also created a new user account and imported a folder of 160 images. After half an hour Compare View began mis-placing data.  (I have a screen shot to show this.)  CANDIDATE appears on the left side of SELECT, whereas it should be on the right. The accompanying camera exposure data appears almost entirely to the left of the mid-screen dividing line. Although the Candidate and Select headings were transposed, the image exposure data was not, but the data for the image on the right was almost entirely to the left of the line dividing the screen in two.
    Gurus in The Lightroom Forum have examined Task Manager data showing Processes running and Performance indicators and they see nothing wrong.  I could also send screen shots of this data.
    At this point, the only way I can process my images is to work 30-40 minutes and then shut down everything, exit, and re-start LTR.  This is not normal.  I hope you can find the cause, and then the solution.  If you would like to see my screen shots, tell me how to submit them.
    Ollie
    [email protected]

    Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems never arose during two years of using LTR-4 and nothing else has changed on my computer.  I have a pretty simple system with only a few plug-ins, which are usually not in operation.  I have 12GB of RAM in my Windows 7 PC.  I could illustrate these problems with screen shots if you would tell me how to submit screen shots.  Otherwise I will try to describe the problems in words.
    The problem is clearly cumulative, growing worse as usage time passes.  Compare View feature gradually slows down and eventually seems to choke as my work session proceeds. If I Exit LTR and re-enter and start all over, things will work normally for maybe 30 minutes, but then the Compare View feature begins to become very slow to respond.   In a recent example with my screen full of thumbnails in Library mode I highlighted two images to compare. LTR started to open the Compare View screen by first having the top row of thumbnails disappear to be replaced by the "SELECT" and "CANDIDATE" words in their spaces  (but no images), but Compare View never succeeded in gaining control of the screen. After some seconds the top row of thumbnails reasserted its position and the Compare View windows disappeared. But LTR kept trying to bring them back. Again the top row of thumbnails would go away, Select and candidate would reappear, try again, and give up. This went on for at least 2-3 minutes before I tried to choose File and Exit, but even that did not initially want to respond. It doesn't like to accept other commands when it's trying to open Compare View. Finally it allowed me to exit.
    To experiment I created a new catalog of 1100 images.  After 30-40 minutes, the Compare View function began to operate very slowly. With left and right side panels visible and two thumbnails highlighted, hitting Compare View can take half a minute before the two mid-size  images open in their respective SELECT and CANDIDATE windows. When the side panels are open and two images are in the Select/Candidate spaces, hitting the Tab button to close the side panels produces a very delayed response--25-30 seconds to close them, a few more seconds to enlarge the two images to full size. To reverse the process (i.e., to recall the two side panels), hitting Tab would make the two sides of the screen go black for up to a minute, with no words visible. Eventually the info fields in the panels would open up.
    I also created a new user account and imported a folder of 160 images. After half an hour Compare View began mis-placing data.  (I have a screen shot to show this.)  CANDIDATE appears on the left side of SELECT, whereas it should be on the right. The accompanying camera exposure data appears almost entirely to the left of the mid-screen dividing line. Although the Candidate and Select headings were transposed, the image exposure data was not, but the data for the image on the right was almost entirely to the left of the line dividing the screen in two.
    Gurus in The Lightroom Forum have examined Task Manager data showing Processes running and Performance indicators and they see nothing wrong.  I could also send screen shots of this data.
    At this point, the only way I can process my images is to work 30-40 minutes and then shut down everything, exit, and re-start LTR.  This is not normal.  I hope you can find the cause, and then the solution.  If you would like to see my screen shots, tell me how to submit them.
    Ollie
    [email protected]

Maybe you are looking for

  • Specific question on video capabilities

    My house mate has some disabilities. She has a PC in her bedroom with a nice 17 in LCD monitor on a cart for when she is sick (frequent). I have an iMAC and am afraid that touting its praises has led her to want a Apple computer. It would make sense

  • Airplay pausing with 1st gen time capsule

    I'm using airplay to stream music from my MacBook Pro (mid 2010) to my apple TV and my stereo that's hooked up to an airport express. Airplay seems to stop and pause at random times (though according to iTunes, the music keeps playing). The streaming

  • What are the proper xattr in Time Machine folder hierarchy?

    Hi there, this is a highly technical question as I am trying to reconnect a corrupt Time Machine volume to its original Macs, one of them running SL, the other Yosemite. I tried what Pondini advises on his website, including a migration of the networ

  • BED change in capture excise(J1IEX)-value moved from Inventorized duty to Credit available

    Dear Friends, Scheduling Agreement has  a material which is subject to non-setoff JMIP(inventorized). WhileGR(105) posting, excise is only captured. When Excise number is checked in J1IEX, excise inventory value is displayed under Duty Values tab and

  • HELP ME- ipod mini wont play songs!

    i have rescently moved houses and had to load my ipod mini on to a new computer and new i tunes list. I re loaded all my music on to the new list and transfered my ipod to factory settings to wipe all my old music. But when i went transfer all of my