Need help to calculate the start and end time and place the result in a term like text box

I did a search on the forum for calculating start and end time and found the code depending on which I am using as a formcalc on the duration field.
==============================================================
Form1. Page1.duration::calculate - (FormCalc, client)

If (HasValue (StartTime) and HasValue (EndTime)) then
industrial var = Time2Num (StartTime.formattedValue, "h: mm A")
var = Time2Num out_ (EndTime.formattedValue, "h: mm A")
If (IN2 > = out_) then
xfa.host.messageBox ("start time cannot be greater than or equal to the end time.")
$.rawValue = null
on the other
var out_ - IN2 = diff
$.rawValue = diff/3600000
endif
on the other
$.rawValue = null
endif
=============================================================

Then, when I enter for example from 15:30, an hour of beginning and end of 04:00

The duration field will say 0.5

How can I get my form to say 30 minutes instead of placing a decimal?

Secondly, how can I use field models LC where the employee can just type 330 or 03:30 and it automatically based on the computer's clock on time to start 15:30?

Any help will be greatly appreciated.  Thank you.

Attached is the form for display:

https://Acrobat.com/#d=f1kxh5qjuow5ujyZduF8OQ

To view the results in a regular time format, you can use:

$.rawValue = Num2Time (diff/3600000, "HH: mm")

For a flexible time entry check this example.

http://thelivecycle.blogspot.com/2011/05/flexible-Eingabe-von-Daten-und-Zeiten.html

Tags: Adobe LiveCycle

Similar Questions

  • Need help with keyframes for start and stop an effect

    I use a mask and blurred for a few seconds. I understand that I must use keyframes to indicate when to start and stop this effect in the video, so that the same area is not trimmed for video full.

    The problem is, I can't find help by correctly setting the keyframes. When I opened the menu keyframes in the effect, it seems that I must together for both the mask took and the blur effect. I did... to start and stop at specific times, but the rest indeed throughout the video, so of course miss me something by using keyframes. The manual to create effects is not useful. I need assistance with keyframes as what I'm doing is clearly not working. Help!

    If the mask does not move that you don't have to set the keyframe. For the blur, click the stopwatch next to 'bluriness' add keyframes as below, the Reds don't blur and blue those maximum blur this fade effect.

  • Need help to calculate the difference between times

    Hi all

    I have two fields that stores just the hour in 24-hour ex: 08:00 and 20:00 now I want to calculate the difference between two times

    Kindle help me

    Thanks for your help

    Thank you
    Ravi

    Hello

    diiference in hours

    SQL> WITH T AS (SELECT '08:00' ST_TIME, '20:00' END_TIME FROM DUAL)
      2  SELECT (TO_DATE (END_TIME, 'HH24:MI') - TO_DATE (ST_TIME, 'HH24:MI')) * 24 DIFF_HOURS
      3    FROM T;
    
    DIFF_HOURS
    ----------
            12
    
    SQL> 
    

    G.

  • Need help to calculate the delta value

    Can someone help me with this please?

    I have a table source as:
     
     device        index     value                     time 
        a              1         15               2009-07-07 12:00:00
        a              1         20               2009-07-07 13:00:00
        a              1         25               2009-07-07 14:00:00
        a              1         30               2009-07-07 15:00:00
    
        a              2         10               2009-07-07 12:00:00
        a              2         20               2009-07-07 13:00:00
        a              2         30               2009-07-07 14:00:00
        a              2         35               2009-07-07 15:00:00
    
        a              3         30               2009-07-07 13:00:00
        a              3         40               2009-07-07 15:00:00
    And looks at the final table, I need to generate
     
     device        index     value                     time 
        a              1         5               2009-07-07 13:00:00
        a              1         5               2009-07-07 14:00:00
        a              1         5               2009-07-07 15:00:00
    
        a              2         10             2009-07-07 13:00:00
        a              2         10             2009-07-07 14:00:00
        a              2         5               2009-07-07 15:00:00
    
        a              3         30             2009-07-07 13:00:00
        a              3         0               2009-07-07 14:00:00
        a              3         40             2009-07-07 15:00:00
    Thanks a lot for your help!

    Looks like you need to fill in some gaps.

    You can use a join partitioned to fill the gaps, then use the analytic funcitons. For more information about partitioned joins, see [http://download.oracle.com/docs/cd/B19306_01/server.102/b14223/analysis.htm#sthref1836].

    Here's my original query with a medium update query (t2 - t3 now)

    with t1 as (select 'a' device, 1 IND, 15 "VALUE", to_date('2009-07-07 12:00:00','rrrr-mm-dd hh24:mi:ss') "TIME" from dual
      union all select 'a', 1, 20, to_date('2009-07-07 13:00:00','rrrr-mm-dd hh24:mi:ss') from dual
      union all select 'a', 1, 25, to_date('2009-07-07 14:00:00','rrrr-mm-dd hh24:mi:ss') from dual
      union all select 'a', 1, 30, to_date('2009-07-07 15:00:00','rrrr-mm-dd hh24:mi:ss') from dual
      union all select 'a', 2, 10, to_date('2009-07-07 12:00:00','rrrr-mm-dd hh24:mi:ss') from dual
      union all select 'a', 2, 20, to_date('2009-07-07 13:00:00','rrrr-mm-dd hh24:mi:ss') from dual
      union all select 'a', 2, 30, to_date('2009-07-07 14:00:00','rrrr-mm-dd hh24:mi:ss') from dual
      union all select 'a', 2, 35, to_date('2009-07-07 15:00:00','rrrr-mm-dd hh24:mi:ss') from dual
      union all select 'a', 3, 30, to_date('2009-07-07 13:00:00','rrrr-mm-dd hh24:mi:ss') from dual
      union all select 'a', 3, 40, to_date('2009-07-07 15:00:00','rrrr-mm-dd hh24:mi:ss') from dual
    ), t3 as (
    select t1.device
         , t1.ind
         , nvl(t1.value,lag(nvl(t1.value,0)) over (partition by t1.device, t1.ind order by t2.time))
           - lag(nvl(t1.value,0)) over (partition by t1.device, t1.ind order by t2.time) "VALUE"
         , t2.time
      from t1
      PARTITION by ( t1.device, t1.ind)
      right join (select distinct time from t1) t2
        on t1.time = t2.time
    )
    select * from t3 where value is not null
    
    DEVICE IND                    VALUE                  TIME
    ------ ---------------------- ---------------------- -------------------------
    a      1                      5                      07-JUL-2009 13:00:00
    a      1                      5                      07-JUL-2009 14:00:00
    a      1                      5                      07-JUL-2009 15:00:00
    a      2                      10                     07-JUL-2009 13:00:00
    a      2                      10                     07-JUL-2009 14:00:00
    a      2                      5                      07-JUL-2009 15:00:00
    a      3                      30                     07-JUL-2009 13:00:00
    a      3                      0                      07-JUL-2009 14:00:00
    a      3                      40                     07-JUL-2009 15:00:00      
    
    9 rows selected
    

    Note: I had to finegle the first half NVL function to the value expression for the result is 0 instead of-30. If you want it to be - 30 place just change this function nvl to nvl(t1.value,0) instead.

    Published by: Sentinel July 8, 2009 16:40

  • Need help to count the characters in several layers of text

    I use following code to count the number of characters and words in a single text layer. Is it possible to count the number of characters and words in a several layers of text. ?? Help, please

    Java Script code:

    //

    /*

    < javascriptresource >

    < name > Count words and characters < / name >

    < / javascriptresource >

    */

    function run()

    {

    var layer = activeDocument.activeLayer;

    If (layer.kind is LayerKind.TEXT)

    {

    Var words = layer.textItem.contents;

    Words = words.replace (/ (\r\n|\n|\r) "/ gm," "");

    var countwords = words.split("").length;

    var compteLettres is words.split("").join("") .length;.

    Alert ("\n" + countwords + "Words\n" + compteLettres + "Characters", "Count");

    }

    on the other

    {

    Alert ("select a layer of text.', 'Count');

    }

    }

    Run();

    2015, use it at your own risk.

    #target "photoshop - 70.032»

    If (app.documents.length > 0) {}

    var theTexts = main();

    alert (count (theTexts.join ("\n")));

    };

    ////////////////////////////////////

    int main() {}

    the file;

    myDocument var = app.activeDocument;

    get the number of layers;

    Var ref = new ActionReference();

    ref.putEnumerated (charIDToTypeID ("Dcmn"), charIDToTypeID ("Ordn"), charIDToTypeID ("Trgt"));

    var applicationDesc = executeActionGet (ref);

    var number = applicationDesc.getInteger (stringIDToTypeID ("numberOfLayers"));

    treat the layers;

    var theLayers = new Array;

    for (var m = 0; m<= thenumber;="" m++)="">

    try {}

    Var ref = new ActionReference();

    ref.putIndex (charIDToTypeID ("Lyr"), m);

    var layerDesc = executeActionGet (ref);

    var layerSet is typeIDToStringID (layerDesc.getEnumerationValue (stringIDToTypeID ("layerSection")));.

    isBackground var = layerDesc.getBoolean (stringIDToTypeID ('background'));

    otherwise the layer group.

    If (layerSet! = "layerSectionEnd" & layerSet! = "layerSectionStart" & isBackground! = true) {}

    theName var = layerDesc.getString (stringIDToTypeID ('name'));

    theID var = layerDesc.getInteger (stringIDToTypeID ('layerID'));

    var hasText = layerDesc.hasKey (stringIDToTypeID ("textKey"));

    If the layer type;

    If (hasText == true) {}

    var textDesc = layerDesc.getObjectValue (stringIDToTypeID ('textKey'));

    Letexte var = textDesc.getString (stringIDToTypeID ("textKey"));

    theLayers.push (theText)

    }

    }

    }

    catch (e) {};

    };

    return theLayers

    };

    Count characters.

    function count (theString) {}

    Var words = theString//layer.textItem.contents;

    Words = words.replace (/ (\r\n|\n|\r) "/ gm," "");

    ////////////////////////////////////

    Remove double spaces and space at the end;

    While (words.indexOf("")! = - 1) {words = words.replace ("","")};

    spaces var end = \s$/;

    Words = words.replace (spaces, "");

    ////////////////////////////////////

    var countwords = words.split("").length;

    var compteLettres is words.split("").join("") .length;.

    return ("\n" + countwords + 'Words\n' + compteLettres + 'Characters');

    };

  • Need help to send the result of the query via utl_stmp

    11.2.0.3
    got the code of http://www.oracle-base.com/articles/misc/email-from-oracle-plsql.php#multiline send e-mail
    CREATE OR REPLACE PROCEDURE send_mail (p_to        IN VARCHAR2,
                                           p_from      IN VARCHAR2,
                                           p_subject   IN VARCHAR2,
                                           p_message   IN VARCHAR2,
                                           p_smtp_host IN VARCHAR2,
                                           p_smtp_port IN NUMBER DEFAULT 25)
    AS
      l_mail_conn   UTL_SMTP.connection;
    BEGIN
      l_mail_conn := UTL_SMTP.open_connection(p_smtp_host, p_smtp_port);
      UTL_SMTP.helo(l_mail_conn, p_smtp_host);
      UTL_SMTP.mail(l_mail_conn, p_from);
      UTL_SMTP.rcpt(l_mail_conn, p_to);
    
      UTL_SMTP.open_data(l_mail_conn);
      
      UTL_SMTP.write_data(l_mail_conn, 'Date: ' || TO_CHAR(SYSDATE, 'DD-MON-YYYY HH24:MI:SS') || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_mail_conn, 'To: ' || p_to || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_mail_conn, 'From: ' || p_from || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_mail_conn, 'Subject: ' || p_subject || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_mail_conn, 'Reply-To: ' || p_from || UTL_TCP.crlf || UTL_TCP.crlf);
      
      UTL_SMTP.write_data(l_mail_conn, p_message || UTL_TCP.crlf || UTL_TCP.crlf);
      UTL_SMTP.close_data(l_mail_conn);
    
      UTL_SMTP.quit(l_mail_conn);
    END;
    /
    I want to call send_mail to pass a query result to "p_message":
    as an example:
    Select the sid, program, module, session machine $ v where program = 'XXX ';

    And have struggled with the lack of experience in PLSQL.
    Give advice.
    TIA

    The simplest possible thing would be something like

    DECLARE
      l_message VARCHAR2(32000);
    BEGIN
      FOR i IN (your_query)
      LOOP
        l_message := l_message || i.col1 || ' ' || i.col2 || ' ' || ... || i.col3 || utl_tcp.crlf;
      END LOOP;
    
      <>
    END
    

    This assumes that the total amount of data we're talking about is reasonably low (which is small enough that you can use a VARCHAR2). And you want a text with a data dump email basically unformatted. You may be better served with an HTML message that includes the appropriate in the body HTML formatting. And you might need your procedure send_mail to accept a CLOB rather than a VARCHAR2.

    Justin

  • Really basic - need help with interpreting the result autotrace

    I am reviewing tunning of database to verify the effectiveness of my sql statements and I think AUTOTRACE is the first thing to look into.

    I created two identical tables containing 250,000 lines. First of all, there is no evidence of a fact

    SET AUTOTRACE ON
    SELECT * FROM TEST_250000
    WHERE CUSTOMER_NO > 241000.

    Hash value of plan: 4257243307

    ---------------------------------------------------------------------------------
    | ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |
    ---------------------------------------------------------------------------------
    | 0 | SELECT STATEMENT | 15353 | 2623K | 750 (2) | 00:00:10 |
    |* 1 | TABLE ACCESS FULL | TEST_250000 | 15353 | 2623K | 750 (2) | 00:00:10 |
    ---------------------------------------------------------------------------------


    Statistics
    -----------------------------------------------------------
    0 recursive calls
    0 db block Gets
    2687 gets coherent
    0 physical reads
    0 redo size
    390398 bytes sent via SQL * Net to client
    427 bytes received via SQL * Net from client
    12 SQL * Net back and forth to and from the client
    1 sorts (memory)
    0 sorts (disk)


    Hash value of plan: 174749588
    -------------------------------------------------------------------------------------------------
    | ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |
    -------------------------------------------------------------------------------------------------
    | 0 | SELECT STATEMENT | 9000 | 606K | 121 (1) | 00:00:02 |
    | 1. TABLE ACCESS BY INDEX ROWID | TEST_250000_INDEX | 9000 | 606K | 121 (1) | 00:00:02 |
    |* 2 | INDEX RANGE SCAN | TEST_250000 | 9000 | 22 (0) | 00:00:01 |
    -------------------------------------------------------------------------------------------------

    Statistics
    -----------------------------------------------------------
    0 recursive calls
    0 db block Gets
    Gets 89 consistent
    0 physical reads
    0 redo size
    390399 bytes sent via SQL * Net to client
    433 bytes received via SQL * Net from client
    12 SQL * Net back and forth to and from the client
    1 sorts (memory)
    0 sorts (disk)

    My questions are the following:

    (1) I am assuming that the right time to run the first query is 0.2 sec and costs 1500, while the other is 0.05 second and 164. You simply add to the top?
    2.) which means the cost? I mean what is the unit of it?
    3.) there is a substantial difference in gets consistent. I found a definition (Gets the number of times that a consistent read was requested for a block). Could someone explain what it means to me and why is it so different in the two queries.
    4.) what is the hash value of Plan on?

    Know that it's a lot, but any help appreciated.

    PS: I am posting this in general, but y at - it a forum specializing in the tunning?

    Jana Kralova wrote:
    I am reviewing tunning of database to verify the effectiveness of my sql statements and I think AUTOTRACE is the first thing to look into.

    Uitilities TRACE and TKPROF are even better.

    My questions are the following:

    (1) I am assuming that the right time to run the first query is 0.2 sec and costs 1500, while the other is 0.05 second and 164. You simply add to the top?
    2.) which means the cost? I mean what is the unit of it?

    By comparing the cost of two queries is not something that you should focus.
    See: http://asktom.oracle.com/pls/apex/f?p=100:11:0:P11_QUESTION_ID:313416745628
    http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:956029960417

    3.) there is a substantial difference in gets consistent. I found a definition (Gets the number of times that a consistent read was requested for a block). Could someone explain what it means to me and why is it so different in the two queries.

    http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:6643159615303

    4.) what is the hash value of Plan on?

    "The NUMBER of PLAN_HASH_VALUE digital representation of the SQL plan for this cursor. Comparing a PLAN_HASH_VALUE to another easily identifies whether two plans are the same (rather than comparing two plans line by line). »
    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14237/dynviews_2113.htm#REFRN30246

    Oracle Performance Tuning Guide can be found here:
    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14211/TOC.htm

    Know that it's a lot, but any help appreciated.

    Refer to the documentation (according to the version of your database) @
    http://www.Oracle.com/pls/db102/homepage
    http://www.Oracle.com/pls/db112/homepage
    or start @.
    http://Tahiti.Oracle.com
    and your own research on http://asktom.oracle.com, you will find many examples and explanations.

    PS: I am posting this in general, but y at - it a forum specializing in the tunning?

    I think that you are in the right forum ;)

  • I need help to Flash the bios. I have an Aspire 5810TZ. I start and it just says: "acer".

    I need help to Flash the bios. I have an Aspire 5810TZ. I start and he just says "acer" and goes no further. I went to the download page for BIOS on us.acer.com and it has a zip file with 5 files:
    JM4151135.exe
    IN FLORIDA...
    GPC_V135.bin
    Readme.txt
    FLASH. BAT
    What should I do? I tried to copy the files on a USB key and turn on/off with Fn + ESC key. After the release the power button and pressed Fn - Esc another screen appears after 30 seconds. I gave up and gave her 30 minutes but it does nothing. I read another person that should be flashing power button online. I have to rename one of the files. Help, please!

    Aspire 5810TZ menu of frozen startup.

    I finally understand it.

    I couldn't start a back b/c drive, it me did not start anything.

    I followed this chain of logic:

    -Downloaded the bios (2.35 is the one that worked for me)
    -Find the exe file in the winflash file.
    -Extract the files in archive exe using the 7-Zip program
    -Find the .fd file and rename it to JM41X64. FD (I read in a forum was unique in my laptop)
    -Copied JM41X64. FD and FLASH it is. EXE on a USB
    -A the battery and the hard drive out.
    -With its trendy diet I supported Fn + Esc and that you press the power button once while ensuring that the Fn + Esc has been always held down.
    -J' waited 6 seconds and release the Fn + Esc and seen the flashing flash player
    -After about 10 minutes, restarted the machine and the bios as like new.

    Later, I found that there was a hard drive problem.

    I want you guys should help more. All I needed was the name of the JM41X64 file. FD and you don't know how many hours I put into trying to find how simpy bios flash. It is not that difficult for someone with a b.s. in computer science to learn how. Couldn't we a m.s. back b/c the bios drive was messed up. F12 didn't work.

  • I JUST DOWNLOAD THE CC ON MY DESKTOP N HAVE NO IDEA WHERE TO START PHOTO EDITING IT S LITTLE DIFFERENT OF MY ITEM 12 NEED HELP TO FIND THE TUTORIAL THANK YOU A.S.A.P.

    I JUST DOWNLOAD THE CC ON MY DESKTOP N HAVE NO IDEA WHERE TO START PHOTO EDITING IT S LITTLE DIFFERENT OF MY ITEM 12 NEED HELP TO FIND THE TUTORIAL THANK YOU A.S.A.P.

    Start with the tutorials in the Welcome window to start and takes a course from a site like Lynda.com.

  • I need help to use the 3D feature in Photoshop CC on my Windows 7, everything is gray and I can't use anything

    I need help to use the 3D feature in Photoshop CC on my Windows 7, everything is gray and I can't use anything... Here is my system info:

    Adobe Photoshop Version: 14.2.1 (14.2.1 20140207.r.570 2014/02 / 07:23:00:00) x 64

    Operating system: Windows 7 64-bit

    Version: 6.1 Service Pack 1

    System architecture: Intel CPU Family: 6, model: 7 Stepping: 10 with MMX, entire SSE, SSE, SSE2, SSE3 FP

    Physical processor count: 2

    Processor speed: 2194 MHz

    Built-in memory: 4056 MB

    Free memory: 942 MB

    Memory available to Photoshop: 3399 MB

    Memory used by Photoshop: 71%

    Tile image size: 128K

    Image cache level: 1

    Overview of fonts: medium

    TextComposer: Latin

    Display: 1

    Limits of the display: top = 0, left = 0, low = 768, right = 1366

    OpenGL drawing: enabled.

    OpenGL allows old GPU: not detected.

    OpenGL drawing mode: basic

    OpenGL allows Normal Mode: fake.

    OpenGL allows Advanced Mode: fake.

    AIFCoreInitialized = 1

    AIFOGLInitialized = 1

    OGLContextCreated = 1

    NumGPUs = 2

    GPU [0]. OGLVersion = "2.1".

    GPU [0]. MemoryMB = 1804

    GPU [0]. RectTextureSize = 4096

    GPU [0]. Renderer = "Mobile Intel (r) 4 Series Express Chipset Family"

    GPU [0]. RendererID = 10818

    GPU [0]. Vendor name = "Intel."

    GPU [0]. VendorID = 32902

    GPU [0]. HasNPOTSupport = 1

    GPU [0]. DriverVersion = "8.15.10.1994."

    GPU [0]. Driver = "igdumd64.dll, igd10umd64.dll, igdumdx32, igd10umd32.

    GPU [0]. DriverDate = "20091106000000.000000 - 000.

    GPU [0]. CompileProgramGLSL = 1

    GPU [0]. TestFrameBuffer = 0

    GPU [0]. OCLPresent = 0

    GPU [0]. CUDASupported = 0

    GPU [0]. OCLBandwidth = 0

    GPU [0] .glGetString [GL_SHADING_LANGUAGE_VERSION] = ' 1.20 - Intel Build 8.15.10.1994.

    GPU [0] .glGetProgramivARB [GL_FRAGMENT_PROGRAM_ARB] [GL_MAX_PROGRAM_INSTRUCTIONS_ARB] = [1024]

    GPU [0] .glGetIntegerv [GL_MAX_TEXTURE_UNITS] = [8]

    GPU [0] .glGetIntegerv [GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS] = [16]

    GPU [0] .glGetIntegerv [GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS] = [16]

    GPU [0] .glGetIntegerv [GL_MAX_TEXTURE_IMAGE_UNITS] = [16]

    GPU [0] .glGetIntegerv [GL_MAX_DRAW_BUFFERS] = [7]

    GPU [0] .glGetIntegerv [GL_MAX_VERTEX_UNIFORM_COMPONENTS] = [512]

    GPU [0] .glGetIntegerv [GL_MAX_FRAGMENT_UNIFORM_COMPONENTS] = [1024]

    GPU [0] .glGetIntegerv [GL_MAX_VARYING_FLOATS] = [41]

    GPU [0] .glGetIntegerv [GL_MAX_VERTEX_ATTRIBS] = [16]

    .extension GPU [0] [AIF::OGL:GL_ARB_VERTEX_PROGRAM] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_FRAGMENT_PROGRAM] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_VERTEX_SHADER] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_FRAGMENT_SHADER] = 1

    .extension GPU [0] [AIF::OGL:GL_EXT_FRAMEBUFFER_OBJECT] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_TEXTURE_RECTANGLE] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_TEXTURE_FLOAT] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_OCCLUSION_QUERY] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_VERTEX_BUFFER_OBJECT] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_SHADER_TEXTURE_LOD] = 0

    GPU [1]. OGLVersion = "2.1".

    GPU [1]. MemoryMB = 0

    GPU [1]. RectTextureSize = 4096

    GPU [1]. Renderer = "Mobile Intel (r) 4 Series Express Chipset Family"

    GPU [1]. RendererID = 0

    GPU [1]. Vendor name = "Intel."

    GPU [1]. VendorID = 0

    GPU [1]. HasNPOTSupport = 1

    GPU [1]. DriverVersion = "8.15.10.1994."

    GPU [1]. Driver = "igdumd64.dll, igd10umd64.dll, igdumdx32, igd10umd32.

    GPU [1]. DriverDate = "20091106000000.000000 - 000.

    GPU [1]. CompileProgramGLSL = 1

    GPU [1]. TestFrameBuffer = 0

    GPU [1]. OCLPresent = 0

    GPU [1]. CUDASupported = 0

    GPU [1]. OCLBandwidth = 0

    GPU [1] .glGetString [GL_SHADING_LANGUAGE_VERSION] = ' 1.20 - Intel Build 8.15.10.1994.

    GPU [1] .glGetProgramivARB [GL_FRAGMENT_PROGRAM_ARB] [GL_MAX_PROGRAM_INSTRUCTIONS_ARB] = [1024]

    GPU [1] .glGetIntegerv [GL_MAX_TEXTURE_UNITS] = [8]

    GPU [1] .glGetIntegerv [GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS] = [16]

    GPU [1] .glGetIntegerv [GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS] = [16]

    GPU [1] .glGetIntegerv [GL_MAX_TEXTURE_IMAGE_UNITS] = [16]

    GPU [1] .glGetIntegerv [GL_MAX_DRAW_BUFFERS] = [7]

    GPU [1] .glGetIntegerv [GL_MAX_VERTEX_UNIFORM_COMPONENTS] = [512]

    GPU [1] .glGetIntegerv [GL_MAX_FRAGMENT_UNIFORM_COMPONENTS] = [1024]

    GPU [1] .glGetIntegerv [GL_MAX_VARYING_FLOATS] = [41]

    GPU [1] .glGetIntegerv [GL_MAX_VERTEX_ATTRIBS] = [16]

    .extension GPU [1] [AIF::OGL:GL_ARB_VERTEX_PROGRAM] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_FRAGMENT_PROGRAM] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_VERTEX_SHADER] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_FRAGMENT_SHADER] = 1

    .extension GPU [1] [AIF::OGL:GL_EXT_FRAMEBUFFER_OBJECT] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_TEXTURE_RECTANGLE] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_TEXTURE_FLOAT] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_OCCLUSION_QUERY] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_VERTEX_BUFFER_OBJECT] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_SHADER_TEXTURE_LOD] = 0

    License type: Perpetual

    Serial number: 91198700731897176156

    The application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64-bit).

    Temporary file path: C:\Users\Owner\AppData\Local\Temp\

    Zero Photoshop has async I/O active

    Scratch the volumes:

    C:\, 931.4 G, 429,1 free G

    Required plugins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit) \Required\Plug-Ins\

    Main Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit) \Plug-ins\

    Installed components:

    ACE.dll ACE 2013/29/10-11: 47:16 79,548223 79.548223

    adbeape.dll Adobe EPA 2013/02/04-09: 52:32 0.1160850 0,1160850

    AdobeLinguistic.dll Adobe linguistic Library 7.0.0

    AdobeOwl.dll Adobe Owl 2013/10/25-12: 15: 59 5.0.24 79.547804

    AdobePDFL.dll PDFL 2013/29/10-11: 47:16 79,508720 79.508720

    Adobe AdobePIP.dll 7.0.0.1786 product improvement program

    AdobeXMP.dll Adobe XMP Core 2013 10/29-11: 47:16 79,154911 79.154911

    AdobeXMPFiles.dll Adobe XMP files 2013 10/29-11: 47:16 79,154911 79.154911

    AdobeXMPScript.dll Adobe XMP Script 2013 10/29-11: 47:16 79,154911 79.154911

    adobe_caps.dll Adobe CAPS 7,0,0,21

    AGM.dll AGM 2013/29/10-11: 47:16 79,548223 79.548223

    ahclient.dll AdobeHelp Dynamic Link Library 1,8,0,31

    aif_core.dll AIF 5.0 79.534508

    aif_ocl.dll AIF 5.0 79.534508

    aif_ogl.dll AIF 5.0 79.534508

    AMTLib.dll AMTLib (64 Bit) 7.0.0.169 BuildVersion: 7,0; Brand: Monday, April 8, 2013 02:31:50) 1.000000

    ARE.dll ARE 2013/29/10-11: 47:16 79,548223 79.548223

    Axe8sharedexpat.dll AXE8SharedExpat 2011/12/16-15: 10: 49 66,26830 66.26830

    AXEDOMCore.dll AXEDOMCore 2011/12/16-15: 10: 49 66,26830 66.26830

    Bib.dll BIB 2013/29/10-11: 47:16 79,548223 79.548223

    BIBUtils.dll BIBUtils 2013/29/10-11: 47:16 79,548223 79.548223

    boost_date_time.dll product DVA 7.0.0

    boost_signals.dll product DVA 7.0.0

    boost_system.dll product DVA 7.0.0

    boost_threads.dll product DVA 7.0.0

    CG.dll NVIDIA Cg Runtime 3.0.00007

    cgGL.dll NVIDIA Cg Runtime 3.0.00007

    Adobe CIT.dll CIT 2.1.6.30929 2.1.6.30929

    Adobe CITThreading.dll CITThreading 2.1.6.30929 2.1.6.30929

    CoolType.dll CoolType 2013/29/10-11: 47:16 79,548223 79.548223

    dvaaudiodevice.dll product DVA 7.0.0

    dvacore.dll product DVA 7.0.0

    dvamarshal.dll product DVA 7.0.0

    dvamediatypes.dll product DVA 7.0.0

    dvaplayer.dll product DVA 7.0.0

    dvatransport.dll product DVA 7.0.0

    dvaunittesting.dll product DVA 7.0.0

    Dynamiclink.dll product DVA 7.0.0

    ExtendScript.dll ExtendScript 2013/10/30-13: 12: 12 79,546835 79.546835

    FileInfo.dll Adobe XMP FileInfo 2013 10/25-03: 51:33 79,154511 79.154511

    filter_graph.dll AIF 5.0 79.534508

    icucnv40.dll International Components for Unicode 2011/11/15-16: 30:22 Build gtlib_3.0.16615

    icudt40.dll International Components for Unicode 2011/11/15-16: 30:22 Build gtlib_3.0.16615

    imslib.dll IMSLib DLL 7.0.0.145

    JP2KLib.dll JP2KLib 2013/29/10-11: 47:16 79,248139 79.248139

    libifcoremd.dll Intel Visual Fortran compiler 10.0 (A patch)

    libiomp5md.dll Intel(r) OMP Runtime Library 5.0

    libmmd.dll Intel(r) C Compiler, Intel C++ Compiler, Intel Fortran compiler 12.0

    LogSession.dll LogSession 2.1.2.1785

    mediacoreif.dll product DVA 7.0.0

    MPS.dll MPS-2013/29/10-11: 47:16 79,535029 79.535029

    msvcm80.dll Microsoft® Visual Studio® 2005 8.00.50727.6195

    msvcm90.dll Microsoft® Visual Studio® 2008 9.00.30729.1

    MSVCP100.dll Microsoft® Visual Studio® 2010 10.00.40219.1

    msvcp80.dll Microsoft® Visual Studio® 2005 8.00.50727.6195

    MSVCP90.dll Microsoft® Visual Studio® 2008 9.00.30729.1

    msvcr100.dll Microsoft® Visual Studio® 2010 10.00.40219.1

    MSVCR80.dll Microsoft® Visual Studio® 2005 8.00.50727.6195

    Msvcr90.dll Microsoft® Visual Studio® 2008 9.00.30729.1

    PatchMatch.dll PatchMatch 2013/29/10-11: 47:16 79,542390 79.542390

    pdfsettings.dll Adobe PDFSettings 1.04

    Photoshop.dll Adobe Photoshop CC CC

    Adobe Photoshop CC CC plugin.dll

    PlugPlugOwl.dll Adobe CSXS PlugPlugOwl Dll Standard (64 bit) 4.2.0.36

    PSArt.dll Adobe Photoshop CC CC

    PSViews.dll Adobe Photoshop CC CC

    SCCore.dll ScCore 2013/10/30-13: 12: 12 79,546835 79.546835

    ScriptUIFlex.dll ScriptUIFlex 2013/10/30-13: 12: 12 79,546835 79.546835

    svml_dispmd.dll Intel (r) C Compiler, Intel C++ Compiler, Intel Fortran compiler 12.0

    TBB.dll Intel Threading Building Blocks for Windows 4 1, 2012, 1003

    tbbmalloc.dll Intel Threading Building Blocks for Windows 4, 1, 2012, 1003

    updaternotifications.dll Adobe Updater Notifications Library 7.0.1.102 (BuildVersion: 1.0;) Brand: BUILDDATETIME) 7.0.1.102

    WRServices.dll WRServices Monday, February 25, 2013 16:09:10 build 0.19078 0,19078

    Required plugins:

    3D Studio 14.2.1 (14.2.1 x 001)

    Accented edges 14.2.1

    Adaptive wide-angle 14.2.1

    Angular Strokes 14.2.1

    Average 14.2.1 (14.2.1 x 001)

    Bas-relief 14.2.1

    BMP 14.2.1

    Camera Raw 8.3

    Camera Raw Filter 8.3

    Chalk and charcoal 14.2.1

    14.2.1 charcoal

    Chrome 14.2.1

    Cineon 14.2.1 (14.2.1 x 001)

    Clouds 14.2.1 (14.2.1 x 001)

    COLLADA 14.2.1 (14.2.1 x 001)

    Halftone color 14.2.1

    Color pencil 14.2.1

    CompuServe GIF 14.2.1

    Pencil tale 14.2.1

    Craquelure 14.2.1

    Crop and straighten Photos 14.2.1 (14.2.1 x 001)

    Crop and straighten Photos 14.2.1 filter

    Hatch 14.2.1

    Crystallize 14.2.1

    Cutting 14.2.1

    Dark strokes 14.2.1

    Deinterlacing 14.2.1

    DICOM 14.2.1

    Difference clouds 14.2.1 (14.2.1 x 001)

    14.2.1 glow

    Move 14.2.1

    Dry brush 14.2.1

    Eazel acquire 14.2.1 (14.2.1 x 001)

    Embed watermark 4.0

    Entropy 14.2.1 (14.2.1 x 001)

    Extrude 14.2.1

    FastCore 14.2.1 routines (14.2.1 x 001)

    Fiber 14.2.1

    Film Grain 14.2.1

    14.2.1 Filter Gallery

    3D Flash 14.2.1 (14.2.1 x 001)

    Fresco 14.2.1

    Glass 14.2.1

    Scarlet contours 14.2.1

    Google Earth 4 14.2.1 (14.2.1 x 001)

    Grain 14.2.1

    Graphic pen 14.2.1

    Halftone Pattern 14.2.1

    HDRMergeUI 14.2.1

    IFF Format 14.2.1

    Outlines in ink 14.2.1

    JPEG 2000 14.2.1

    Flattening coefficient 14.2.1 (14.2.1 x 001)

    Blur of the lens 14.2.1

    Correction of the 14.2.1 goal

    Lens Flare 14.2.1

    Liquefy 14.2.1

    Operation of Matlab 14.2.1 (14.2.1 x 001)

    maximum 14.2.1 (14.2.1 x 001)

    14.2.1 average (14.2.1 x 001)

    Measure Core 14.2.1 (14.2.1 x 001)

    Median 14.2.1 (14.2.1 x 001)

    Mezzotint 14.2.1

    Minimum 14.2.1 (14.2.1 x 001)

    MMXCore Routines 14.2.1 (14.2.1 x 001)

    Mosaic tiles 14.2.1

    Multiprocessor support 14.2.1 (14.2.1 x 001)

    Neon 14.2.1

    Paper notes 14.2.1

    Color NTSC 14.2.1 (14.2.1 x 001)

    Ocean Ripple 14.2.1

    14.2.1 oil painting

    OpenEXR 14.2.1

    Paint Daubs 14.2.1

    14.2.1 palette knife

    Patchwork 14.2.1

    Paths to Illustrator 14.2.1

    PCX 14.2.1 (14.2.1 x 001)

    Photocopy 14.2.1

    14.2.1 Photoshop 3D engine (14.2.1 x 001)

    Photoshop Touch 14.0

    Photo filter package 14.2.1 (14.2.1 x 001)

    Pinch 14.2.1

    Pixar 14.2.1 (14.2.1 x 001)

    Plaster 14.2.1

    Plastic wrap 14.2.1

    PNG 14.2.1

    Pointillism 14.2.1

    Polar coordinates 14.2.1

    Portable bitmap 14.2.1 (14.2.1 x 001)

    Poster edges 14.2.1

    Radial blur 14.2.1

    Radiance 14.2.1 (14.2.1 x 001)

    14.2.1 range (14.2.1 x 001)

    Read watermark 4.0

    Crosslinking 14.2.1

    14.2.1 the ripple

    Rough Pastels 14.2.1

    Save for Web 14.2.1

    ScriptingSupport 14.2.1

    Shake Reduction 14.2.1

    14.2.1 shear

    14.2.1 asymmetry (14.2.1 x 001)

    Smart Blur 14.2.1

    Smudge Stick 14.2.1

    Solarize 14.2.1 (14.2.1 x 001)

    Splash 14.2.1

    Spherize 14.2.1

    Sponge 14.2.1

    Sprayed strokes 14.2.1

    Stained glass 14.2.1

    Stamp 14.2.1

    SD 14.2.1 (14.2.1 x 001)

    STL 14.2.1 (14.2.1 x 001)

    14.2.1 Sumi-e

    14.2.1 summons (14.2.1 x 001)

    Targa 14.2.1

    Texture veneer 14.2.1

    14.2.1 tiles

    Torn edges 14.2.1

    14.2.1 twirl watch

    Draft 14.2.1

    Vanishing Point 14.2.1

    14.2.1 variance (14.2.1 x 001)

    14.2.1 variations (14.2.1 x 001)

    Water paper 14.2.1

    Watercolor 14.2.1

    Wave 14.2.1

    Wavefront | OBJ 14.2.1 (14.2.1 x 001)

    WIA support 14.2.1 (14.2.1 x 001)

    Wind 14.2.1

    Wireless Bitmap 14.2.1 (14.2.1 x 001)

    Zig - zag 14.2.1

    Plug-ins option and the third: NONE

    Plug-ins that could not load: NONE

    Flash:

    Mini Bridge

    Adobe Exchange

    Kuler

    Install TWAIN devices: NONE

    Unfortunately, it seems that your computer is not only at the height... And thanks for the info detailed immediately, it helps refine the problems more quickly.

  • Need help to check the switch VMNIC and VNIC DVS mapping...

    Need help to check the switch VMNIC and VNIC DVS mapping...

    I checked the command net-dvs, but it was not useful.

    Thank you

    Ravinder Singh...

    You do not have access on the interfaces between itself or this info is not visible in vCenter? Probably, you should talk to one who is in charge of your nexus dvSwitch.

    I don't know how it works on the nexus 1000v switch, but the output of the net-dvs provides information on balancing policy for all ports (note that he understands the uplink ports that may still occur as "port id of virtual source"):

    # net-dvs. "grep EI ' (Balancing | port)"

    port 320:

    source port = load balancing virtual id

    port 321:

    source port = load balancing virtual id

    port 177:

    source port = load balancing virtual id

    You should also be able to enter this info from esxcli, but I don't know if there is a hook to esxcli for the link. Perhaps, you can branch off with cisco of dvs esxcli vswitch network or something. On the dVS of vmware, you could do:

    # esxcli dvs lacp vmware vswitch network status

    LACP is disabled on DVSwitch.


    # esxcli dvs lacp get config vmware vswitch network

    DVS name LAG ID cards active network Mode

    ------------  ------  -------------  -------  ----

    Vmnic1 Some_DVSwitch 0, vmnic3 false

  • Need help to modify the Script to find the number of vCPU and reservation of memory in VC

    Hello

    Need help to modify the script so that his can person report to the vc all focus level instead of each level of the Cluster.

    Thank you

    KR

    Try this instead:

    $vmsInfo = Get-VM
    #Creating array to place new object
    
    $reportdata = @()
    
    Foreach ($vm in $vmsInfo)
    {
    #Creating new object
    $vmInfo = "" | Select Name, CPUReservationMHz, MemoryReservationGB
    $vmInfo.Name = $vm.Name
    $vmInfo.CPUReservationMHz = $vm.ExtensionData.ResourceConfig.CpuAllocation.Reservation
    $vmInfo.MemoryReservationGB = $vm.ExtensionData.ResourceConfig.MemoryAllocation.Reservation / 1024;
    #Inserting data into new object.
    $reportdata += $vminfo
    }
    $reportdata
    
  • Need help to diagnose the regular system analysis on iMac - processors maxed out

    I need help to identify the cause of a problem that occurs at least 2 - 3 times per day using my iMac (27-inch, mid 2010) running 10.11.5.

    I will use my iMac and then all at once things will start to really trolling. To the point of being completely unusable. Even if I'm able to move my cursor, then click to drag the windows around the screen nothing does really.

    I have iStat menus running so that can see graphics in my menu bar that all 4 cores are completely overfished. Occasionally, I was fast enough to launch the activity monitor to try to see what applications / services are responsible for, the use of % CPU column is completely empty of values, so I can't identify the culprits in a reliable way. I try to keep that column sorted by % CPU use in the hope that he could reveal something and normally it's the kernel_task who is up there.

    I use a Wacom Bamboo dated Tablet (MTE - 450 has) instead of a mouse, and at one point, I was convinced the pilot of PenTabletDrive it is based on was to blame. I contacted Wacom on this subject, and although there is no known issues they pointed out that although the latest drivers will allow me to use the tablet that they no longer support older devices. I was wondering if there was a problem of communication between the device and a driver that is no longer supported. I installed the latest driver supported for my tablet, but the problems persist.

    It may be interesting to note that, when my computer is in this semi-frozen state, I am able to launch the window enough force and quit all open applications leaving me with only the Finder. I guess that means that there are none of my apps running and it is probably one of the services. If I restart the Finder system grinds to a completely enclosed holt.

    I hope someone can let me know what I can find in the Console or elsewhere to help me finally zero in on what is to blame. I can share a log if that helps.

    Thank you in advance!

    Information that might be useful:

    Kept by I tend to be running: Adobe InDesign, Photoshop, Acrobat (all CC 2015), Mail, Safari with several tabs & Dropbox sync constantly.

    Download and run EtreCheck, created by one of his own assistants here in CSA. It is a diagnostic tool that is very useful for us to find problems. It will also give us additional specifications on your Mac. After his execution after the logfile here. It will never contain any personal information.

  • Need help to identify the type of object in the loop of pl/sql

    Hello

    I need help to identify the Type of object declared beneath a procedure as shown below:

    I need to pass the parameter to the procedure as a TYPE of OBJECT and also refer to variables of Type Object in a loop

    create or replace type TEST_VALIDATION_REC is RECORD (order_num varchar2 (30),)

    number of inventory_item_id

    reserved_YN varchar2 (1).

    error_flag varchar2 (1).

    Error_message varchar2 (2000)

    );

    CREATE OR REPLACE TYPE VALD_TBL AS VARRAY (10000) OF TEST_VALIDATION_REC;

    PROCEDURE ADD_TO_ORD)

    p_lot_number_list IN VALD_TBL,

    p_ord_number IN Varchar2,

    p_user_id in NUMBER: = fnd_profile.value ('USER_ID'),-change 1.10

    p_responsibility_id in NUMBERS: = fnd_profile.value ('RESP_ID'),-change 1.10

    p_application_id IN VARCHAR2: = 'PO',-change 1.10

    x_error_flag OUT Varchar2,

    x_error_msg OUT Varchar2

    )

    In the above procedure, I had the VALD_TBL. Is it OK?

    And how in the loop if the records if I use:

    FOR indx1 IN 1.p_lot_number_list. COUNTY

    LOOP

    BEGIN

    SELECT

    inventory_item_id

    IN

    ln_item_id

    Of

    dummy_lot_tab

    WHERE

    lot_number = p_lot_number_list (indx1); - > how direct the item here?

    EXCEPTION

    WHILE OTHERS THEN

    ln_item_id: = NULL;

    END;

    Records are PL/SQL objects.  They are not the SQL objects.  You can create a SQL TYPE (schema level) as a collection (variable-tables only, tables nested).

    So therefore your first statement is syntactically incorrect

    CREATE OR REPLACE TYPE TEST_VALIDATION_REC IS RECORD
    (order_num VARCHAR2(30),
    inventory_item_id NUMBER,
    reserved_YN VARCHAR2(1),
    error_flag VARCHAR2(1),
    Error_message VARCHAR2(2000)
    );
    

    You must put in an anonymous PL/SQL block or the stored procedure

    DECLARE
    
       TYPE test_validation_rec IS RECORD
       (
        order_num VARCHAR2(30),
        inventory_item_id NUMBER,
        reserved_YN VARCHAR2(1),
        error_flag VARCHAR2(1),
        error_message VARCHAR2(2000)
       );
    
       TYPE vald_tbl iS VARRAY(10000) OF test_validation_rec;
    
       lv_tbl vald_tbl;
    
    BEGIN
    
       lv_tbl := vald_tbl();
      -- insert your code here 
    
    END;
    
  • Need help to understand the query result

    Hi gurus

    I was reading one of the question here in this forum and its link is below:

    Query required for scenario

    I had some confusion related to this code and don't understand the logic of the out put, see query below:

    Query

    with sub_services as

    (

    Select su_seq 12323, 'HLR1' so_id, 1 seq Union double all the

    Select su_seq 12323, "HLR2' so_id, seq 2 Union double all the

    Select su_seq 12323, "A09" so_id, seq 3 of all the double union

    Select su_seq 12333, "MO1" so_id, seq 4 Union double all the

    Select su_seq 12333, "MO2' so_id, seq 5 Union double all the

    Select su_seq 12333, "A09" so_id, 6 seq in union double all the

    Select su_seq 12333, 'M0CR' so_id, seq 7 Union double all the

    Select su_seq 12999, "LOL1' so_id, seq 8 Union double all the

    Select su_seq 12999, "LOL2' so_id, seq 9 double

    )

    Select *.

    of sub_services b

    where exists (select 1 from sub_services

    where su_seq = b.su_seq

    and so_id = 'A09.

    )

    order by 2;

    The query result

    12323 A09 3

    12333 6 A09

    12323 HLR1 1

    12323 HLR2 2

    12333 M0CR 7

    12333 4 MO1

    12333 5 MO2

    According to my understanding, the above query should return records in red only because of her is below command

    It exists (select 1 from sub_services

    where su_seq = b.su_seq

    and so_id = 'A09.

    but don't know why he's back 7 files, can someone help me understand the result...

    It is query is functionally identical to the PL/SQL block, but much more effective.

    declare

    number of l_res;

    Start

    for line (select *)

    sub_services) loop

    Start

    Select 1 from l_res

    of sub_services

    where su_seq = row.su_seq and

    so_id = "A09" and

    rownum = 1;

    exception when

    NO_DATA_FOUND then

    null;

    end;

    end loop;

    end;

    Essentially every row in the outer query are tested against him exists query.  Given the correlation between two requests is based only on su_seq each line with a su_seq value returned by him is returned in the output.

    Another way to think he uses instead a join condition.  This query is equivalent to the query to exist

    Select the main

    of main sub_services

    Join select (separate su_seq

    of sub_services

    where so_id = "A09") cond

    We main.su_seq = cond.su_seq;

    John

Maybe you are looking for