Run DA plsql code table updated using the click of checkbox

Hello
I have a box with action Dynamics plsql code to update a table when event = click/change, but only when the box is turned "on" everything seems to be ok, but the code plsql for updating the table does not work because the record in the table is not updated. Any help on this pls?

Tell us is there a LOV for item checkbox?

Try sth like this:

Lets assume the id box is P1_CHECK.
Interior check point to put the list of values like this:


        STATIC:CheckMe;1

    

Then, when you create a dynamic action, put smth like this:

    Event: Clicked
    Selection Type: Item
    Item: P1_CHECK
    Condition: equal to
    Value: 1
    

or

    Event: Clicked
    Selection Type: Item
    Item: P1_CHECK
    Condition: JavaScript expression
    Value: $x('P1_CHECK_0').checked
    

Hope this helps you, Mimi

Published by: Mimi on October 28, 2012 21:06

Published by: Mimi on October 28, 2012 21:09

Tags: Database

Similar Questions

  • All that print from the web doing in the HTML code. I use the family XP Edition version

    All that print from the web doing in the html code. I use the family XP Edition version.  I'm almost on my home computer so I don't know when it happened first.  Try to print the boarding card.  Help.

    Thank you

    Hi GordonHarris,

    ·         You use Internet Explorer? If so, what version of Internet Explorer?

    ·         Did you do changes on the computer before the show?

    Follow these methods.

    Method 1: Follow these steps:

    (a) click Start, Control Panel, Add and remove programs.

    (b) click on set program access and defaults, select custom, select Internet Explorer as your web browser by default.

    (c) click OK.

    Method 2: Follow the steps in the article, if you are using Internet Explorer.

    I can't print or preview before printing a Web page in Internet Explorer

    http://support.Microsoft.com/kb/973479

  • Windows Mail is not refreshing since 09/02/2012. When I try to update using the F5 key, I get the error messages.

    Windows Mail is not refreshing since 09/02/2012.  When I try to update using the F5 key, I get the error messages.  The only way I can see me new emails is to sign on the web page of my Internet service provider, which I don't like.

    original title: windows mail is NOT refreshing

    It would be useful that Microsoft has put a notice to have several products access our email accounts so that us non-technical people could avoid these problems.

    Maybe it's something that Apple should warn the consumer. I have three e-mail accounts and I receive and send all the accounts on three different computers at the same time and have never had this problem. Your case is the first.

  • How or there is no model code keep update/sync the local database indexedDB for MySQL database online?

    How or there is no model code keep update/sync the local database indexedDB for MySQL database online?

    Unfortunately there is no direct connector for an application of WebWorks to a back-end database. You will need to do, is to have some middleware web server (Apache, Node.js, etc.) who manages a web service that you can make an HTTP request to and GET, POST, UPDATE, DELETE data. Middleware and then transmits commands to the back-end database and returns the results to the finished device.

  • Problem opening pdf files.  I have Acrobat Reader DC/Windows by default, but when I click on the file, a file conversion screen with all these codes. Must use the "open with" function which is a nuisance.  Why it will not default?

    Problem opening pdf files.  I have Acrobat DC/Windows by default, but when I click on the file, a file conversion screen now with all these language codes. Must use the "open with" function which is a nuisance.

    Why it will not open by default when I click on the file?

    Hello

    I guess that you are looking for this:

    Open drive

    Go in Edition > Preferences > General

    Uncheck the option, the online storage see the opening of the files

    Click OK and restart

    Thank you

    Abhishek

  • How to insert data into the table by using the expression builder in the assign activity

    How to insert data into the table by using the expression builder in affect business in BPEl, I use SOA Suite 11.1.1.5
    Can someone help me please

    Hello

    I don't think that oraext:query-database() can insert data into the table.

    What are your needs?
    Can not you plan to use the DB adapter with the insert operation?

    Kind regards
    Neeraj Sehgal

  • How to update the table by using the value of a column in a table field

    Hi all
    use APEX4.1,
    I have a tabular presentation based on the HOLIDAY table, it contains the following fields,
    Leave_id
    Employee_name
    No_of_days
    Status
    Here's the column LOV updateable status.
    Lov includes 2 values IE APPROVE and REJECT

    and I have another Table called LEAVE_HISTORY, it contains the following fields.
    Emp_name
    status
    Here whenever the ststus is updated (click the button SUBMIT) in tabular form should also be updated in the LEAVE_HISTORY of the SITUATION of the table column.

    I tried the following in the process of "WE SUBMIT AFTER CALCULATIONS AND VALIDATIONS,"
    begin
    update LEAVE_HISTORY set status= status where upper(employee_name)=upper(emp_name);
    end;
    but it is not kept up-to-date,
    When we updated through forms we can use something like this,
    update LEAVE_HISTORY set status= :P200_status where upper(employee_name)=upper(:P_200_emp_name);  <----here we are referring page item i.e (:P_200_emp_name)
    as the code above, how to run the columns in a table?
    Thank you.

    Hi Gurujothi,

    Try this,

    begin
    update LEAVE_HISTORY
    set status= :STATUS
    where upper(Emp_name)=upper(:EMPLOYEE_NAME);
    end;
    

    Brgds,
    Max

  • In a table by using the Collection update of nulls

    I use collections to create a form in a table. However, I can't get the code to work. Could you please look at my logic and let me know what I am doing wrong?
    Apex version: 4.1
    1 process name: load Collection
    a. process Point: On Load - before the header
    Condition (b) process:
    i. the condition Type: PL/SQL expression
    + ii.     Expression:
     not apex_collection.collection_exists(p_collection_name => 'STAKEHOLDERS_COL')
    +
    c. code:
    if apex_collection.collection_exists('STAKEHOLDERS_COL') = TRUE then
       apex_collection.delete_collection(
             p_collection_name =>'STAKEHOLDERS_COL');
    end if;
    apex_collection.create_collection_from_query(
        p_collection_name => 'STAKEHOLDERS_COL',
        p_query => 'select id
                   , stakeholder_name
                   , stakeholder_role_id
                   , primary_contact_yn
                   , receive_notification_yn
                   , ''O'' original_flag
                   , wwv_flow_item.md5(stakeholder_name, stakeholder_role_id, 
                     primary_contact_yn, receive_notification_yn) 
                   from eba_prjv_proj_stakeholders,
       p_generate_md5 => 'YES'
    );
    * 2.     Report on the collection:
    a. query:
    select 
    apex_item.hidden(1,c001) id,
    apex_item.popupkey_from_query(2,c002,'select user_name d, user_name r from eba_prjv_app_users order by 1', 10) name,
    apex_item.select_list_from_query(4,c003,'select role_description d, id r from eba_prjv_stkhlder_roles order by role_code', 10) role,
    apex_ITEM.SELECT_LIST(5,c004,'N','Yes;Y,No;N') primary_contact_yn,
    apex_ITEM.SELECT_LIST(6,c005,'N','Yes;Y,No;N') receive_notifications_yn,
    apex_item.hidden(7, c006) status,
    apex_item.checkbox(8, seq_id) chkbx,
    apex_item.hidden(9, seq_id) seq_id
    from apex_collections
    where collection_name = 'STAKEHOLDERS_COL'
    AND c006 IN ('O','N','U')
    * 3.     I have a button 'Add a line' add a blank line for inserts. The button "submit page" REQUEST As "ADD". *
    * 4.     The process of adding new line: *.
    a. process Point: after submit - by the calculation and Validation
    b. process of Condition: what key - add row
    c. code:
    begin
    apex_collection.add_member(
    p_collection_name => 'STAKEHOLDERS_COL',
    p_c006 => 'N',
    p_generate_md5 => 'YES' );
    end;
    * 5. I have a button Delete who submits the request page = 'DELETE '. *
    * 6.     Collection update process:
    a. process Point: after submit - by the calculation and Validation
    + b.     Condition of process:
    REQUEST != 'ADD'
    +
    c. code:
    DECLARE
    l_status VARCHAR2(1);
    l_seq_id NUMBER;
    l_original_md5 VARCHAR2(4000);
    l_array_md5 VARCHAR2(4000);
    
    BEGIN
    
    FOR i IN 1..apex_application.g_f01.count LOOP
    
    -- Check previous status of Collection Member
      
       SELECT c006, c007 INTO l_status, l_original_md5
       FROM apex_collections
       WHERE 
       collection_name = 'STAKEHOLDERS_COL'
       AND seq_id = apex_application.g_f09(i);
    
    IF l_status = 'N' THEN
       l_status := 'N';
       
    ELSE
       SELECT wwv_flow_item.md5(apex_application.g_f02(i)
       , apex_application.g_f04(i)
       , apex_application.g_f05(i)
       , apex_application.g_f06(i))
       INTO l_array_md5
       FROM DUAL;
       
       IF l_original_md5 != l_array_md5 THEN
          l_status := 'U';
       END IF;
    END IF;
    
    
    IF l_status IN ('N','U') THEN
       
       apex_collection.update_member(
       p_collection_name => 'STAKEHOLDERS_COL'
       , p_seq => apex_application.g_f09(i)
       , p_c001 => apex_application.g_f01(i)
       , p_c002 => apex_application.g_f02(i)
       , p_c003 => apex_application.g_f04(i)
       , p_c004 => apex_application.g_f05(i)
       , p_c005 => apex_application.g_f06(i)
       , p_c006 => l_status
       , p_c007 => l_original_md5
     );
    END IF;
    END LOOP;
    IF :REQUEST = 'DELETE' THEN
       FOR i IN 1..apex_application.g_f08.count LOOP
       -- Check previous status of Collection Member
     
      SELECT seq_id, c006 INTO l_seq_id, l_status
      FROM apex_collections
      WHERE collection_name = 'STAKEHOLDERS_COL'
      AND seq_id = apex_application.g_f08(i);
    
      IF l_status = 'N' THEN
         apex_collection.delete_member(
         p_collection_name => 'STAKEHOLDERS_COL'
         , p_seq => l_seq_id
        );
      ELSE
        apex_collection.update_member_attribute(
        p_collection_name => 'STAKEHOLDERS_COL'
        , p_seq => l_seq_id
        , p_attr_number => '6'
        , p_attr_value => 'D'
       );
      END IF;
     END LOOP;
    END IF;
    
    end;
    * 7.     Update the collection table
    a. process Point: present - according to calculation and Validation
    b. process of Condition: If the key (APPLY_CHANGES)
    c. code
    DECLARE
    l_table_md5 VARCHAR2(4000);
    l_collection_md5 VARCHAR2(4000);
    BEGIN
    
    FOR c1 IN (SELECT c001, c002, c003, c004, c005, c006, c007,seq_id
    FROM apex_collections
    WHERE collection_name = 'STAKEHOLDERS_COL'
    ) LOOP
    
    IF c1.c006 = 'N' THEN
       insert into eba_prjv_proj_stakeholders
                ( STAKEHOLDER_NAME,
                 STAKEHOLDER_ROLE_ID,
                 PRIMARY_CONTACT_YN,
                 RECEIVE_NOTIFICATION_YN
                 )
                values
                (c1.c002,
                 c1.c003,
                 c1.c004,
                 c1.c005            
                );
    ELSIF c1.c006 = 'D' THEN
       DELETE FROM eba_prjv_proj_stakeholders
       WHERE id = c1.c001;
    ELSIF c1.c006 = 'U' THEN
       -- Check the record hasn't been updated since the query
       -- Get MD5 checksum from the Table
      
     SELECT wwv_flow_item.md5(STAKEHOLDER_NAME, STAKEHOLDER_ROLE_ID, PRIMARY_CONTACT_YN, RECEIVE_NOTIFICATION_YN)
       INTO l_table_md5
       FROM eba_prjv_proj_stakeholders
       WHERE id = c1.c001;
       -- Compare the checksum values and if they are different, raise an error.
       IF l_table_md5 != c1.c007 THEN
          raise_application_error( -20001
          , 'Current version of data in database has changed '||
            'since user initiated update process.');
         return;
      END IF;
    
      UPDATE eba_prjv_proj_stakeholders set
      STAKEHOLDER_NAME = c1.c002,
      STAKEHOLDER_ROLE_ID = c1.c003,
      PRIMARY_CONTACT_YN = c1.c004,
      RECEIVE_NOTIFICATION_YN = c1.c005
      where id = c1.c001;
    end if;
    end loop;
    apex_collection.delete_collection( p_collection_name => 'STAKEHOLDERS_COL' );
    END;
    At the end of the process, I see null values inserted in my table. The report also displays null values.

    Published by: jaouad khalifi on August 17, 2012 04:26

    Published by: jaouad khalifi on August 17, 2012 04:42

    Published by: jaouad khalifi on August 17, 2012 04:46

    Published by: jaouad khalifi on August 18, 2012 02:03

    Hello

    I changed and then brought back to the State that you had.

    The problem here is that you have status and Seq_id returned with APEX_ITEM. HIDDEN, but you have not selected the Show check box for those columns attribute report tab.

    Thus there is no f06 and f09 only named elements in your HTML DOM and therefore no APEX_APPLICATION. G_F06 and G_F09. If your processes

    FOR correct here is what you do

    1. mark the status and Seq_id as indicated in the report attribute tab columns
    2. change the ACE status display hidden to report column Standard. Change display of the Seq_id also report Standard column

    Note that when a column is not marked to show in the report he becomes any and you don't see the associated items in the DOM HTML.

    See you soon,.

  • Get the error Code 'WindowsUpdate_8E5E03FB' 'WindowsUpdates_dt000' when you try to download recommended update using the automatic settings 'updates '.

    I just noticed today, pronouncing the 'permission' to Windows to download and install, it is recommended to update it tries to download the update, hit 11% downloaded and then shows the dialog window "update failed", asking me to "Try Again", etc. etc. I googled the error exactly as stated above, and it takes to me an article 'A' answer the Question which recommends a bunch of steps that I have not the first clue of what they mean, or what they will do. I used the option "Microsoft Fix It" after a search, in an attempt to reset the Windows Update settings, but I don't know if it's working or not, although clearly it did nothing to help in the installation of this download. By examining the log of the updates installed, I am able to receive and install other updates, however, it is with a update I see several attempts in the last days to install, and each of them ended in failure.

    When we look at the site of Question answer, other than to check to ensure the update is, indeed, the Automatic value, that it is in accordance with the instructions given that's where I get lost. The following suggestion is something to do with the "C:\windows\system32\catroot" folder, I've never even heard of, and am more than a little reluctant to go messing around with this stuff. Can any that illuminate what he done, or point me in a direction to a response that is written in 'English' for those of us without much experience of computer programming? Live is support available for all what is the cause? Any suggestions much appreciated!

    See you soon!

    Ken, "Medic95."

    See if KB970430 will install after you uninstall IOBit Security 360 & reboot. ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • New installation of Windows, cannot be updated, use the troubleshooters, install some drivers, etc.

    I just got my new pc in the mail, put everything together, things are going wonderfully.

    However, my old motherboard installed my hard drive as IDE, while my new motherboard used alone RAID or AHCI (im using the same hard drive for my new pc) and so I just reinstall windows using my installation disc. And when I loaded in windows, I installed my card drivers mother perfectly fine CD. However, I can't use windows update, even after the validation of windows. All convenience stores read "a problem is preventing the troubleshooting tool to start" (0x8E50247 error code) actually ive been awarded the xxxxxx247 codes error then Yes. Help, please. I want my PC to normal

    PS I have all my old files always in my windows.old folder. Can I just set that up somehow? If my computer is back to how it was before the passage of material?

    Hello

    To troubleshoot Windows Update in Windows 7, we suggest that you follow these methods below and see if it helps.

    Method 1: Reset the Internet Explorer settings.

    You can reset the Internet Explorer settings to return to the State they were when Internet Explorer has been installed on your PC. This can be useful to solve the problems that could be caused by some settings changed after installation.

    Note: Reset the Internet Explorer settings can reset security settings or privacy settings that you have added to the list of Trusted Sites. Reset the Internet Explorer settings can also reset parental control settings. We recommend that you note these sites before you use the reset Internet Explorer settings. Also re - activate the Add-ons.

    Please click on this link to know how to reset Internet Explorer settings.

    Method 2: Perform the clean boot

    A clean boot is executed to start Windows by using a minimal set of drivers and startup programs. This will eliminate the conflicts of software that occur when you install a program or an update or when your run a program in Windows.

    Click this link to learn how to perform the clean boot in Windows 7.

    Note: Please see: How to reset the computer to start as usual after a clean boot troubleshooting section of Kb to start the computer to a normal startup after you fix the problem.

    Method 3: Run System File Checker scans to check corruption of system files.

    1. Press the Start button, then type cmd.
    2. Right click on cmd and select run as administrator.
    3. If user account control dialog box appears, confirm that the displayed action corresponds to what you want, and then click continue.
    4. Copy and paste the following command in your command-line prompt: sfc/scannow
    5. Press enter to execute the command. It may take a few minutes to complete. If you find 100% full reorganisation, click X to close the command prompt.

    Let us know the result.

  • I get an error code 10 when using the network card.

    Hello

    When you use my internet dongle all my ports usb stopped working. cards network is to come up with and error 10 code. I uninstalled the adapter and re installed however it is always delivered with the same code. If I try to update it says I'm updating but the card still does not work

    Hi Sinead,

    Thanks for posting your question on the forum of the Microsoft community.

    I would like to know some information about the problem so that we can help you better.

    What is the brand and model of your computer?

    "Code 10" error is generated in the Device Manager in one of the following situations:

    -Device Manager cannot start the device.
    -One of the pilots who needs the unit does not start.
    -Device Manager has sufficient information to recognize the error that spread upwards by the device driver.

    Note: in this case, the "Code 10" error can be a very generic message indicating some sort of unspecified driver or device problem.

    I suggest you run this Microsoft fixit and check if it helps.

    Hardware devices do not work or are not detected in Windows
    http://support.Microsoft.com/mats/hardware_device_problems

    I hope this information helps.

    Please let us know if you need more help. We will be happy to help you.

    Thank you

  • How to upgrade a table column using the values in the Oracle collection

    create or replace procedure test_coll
    
    IS
    
    CURSOR upd 
    IS
    SELECT CONTACT_NAME FROM Supplier_16;
    
    TYPE dept IS TABLE OF upd%rowtype;
    cur_var dept;
    
    Type List Is table Of  varchar2(20);
    Name List:=  List('Shilpi','Sunil','Shreyas','Saral');
    
    BEGIN
    
    OPEN upd;
    LOOP
         FETCH upd BULK COLLECT INTO cur_var;
    --    EXIT WHEN upd%NOTFOUND;
    
         FORALL i IN cur_var.FIRST..cur_var.LAST
      
         UPDATE supplier_16
    **  SET Contact_name= name(i);  ***
         
         COMMIT;
    
    END LOOP;
    CLOSE upd;
    
    END;
    On the "BOLD" line, I don't know how I should move the values of the collection of name I said without which are set all the values in the table supplier_16 = 'Saral.

    Help, please.

    Aashish S. wrote:
    Thank you very much...

    Yes, I slide collections and was trying to reach somwthing on similar lines to which you provided the code example...

    My essay is equipped to take a collection: initialized with values of say 3-4...

    Take other tables... A column... and update the column in the table (not PK, FK anything) using the values of the initialized collection...

    However, I am stuck between the two on how the UPDATE clause should be...

    OK, if it's just because you want to practice with collections, you might do something like this...

    SQL> set serverout on
    SQL> create table supplier_16 as
      2  select 'Frederick' as contact_name from dual union all
      3  select 'Robert' from dual union all
      4  select 'Jeremy' from dual union all
      5  select 'Simon' from dual
      6  /
    
    Table created.
    
    SQL> create or replace procedure test_coll is
      2    CURSOR upd IS
      3      SELECT CONTACT_NAME
      4      FROM Supplier_16
      5      FOR UPDATE;
      6    Type List Is table Of  varchar2(20);
      7    Name List := List('Shilpi','Sunil','Shreyas','Saral');
      8    v_contact_name varchar2(30);
      9    v_idx          number := 1;
     10  BEGIN
     11    OPEN upd;
     12    LOOP
     13       FETCH upd INTO v_contact_name;
     14       EXIT WHEN upd%NOTFOUND;
     15       UPDATE supplier_16
     16       SET    contact_name = name(v_idx)
     17       WHERE CURRENT OF upd;
     18       DBMS_OUTPUT.PUT_LINE(v_contact_name||' update to '||name(v_idx));
     19       v_idx := v_idx + 1;
     20    END LOOP;
     21    CLOSE upd;
     22    COMMIT;
     23  END;
     24  /
    
    Procedure created.
    
    SQL> exec test_coll;
    Frederick update to Shilpi
    Robert update to Sunil
    Jeremy update to Shreyas
    Simon update to Saral
    
    PL/SQL procedure successfully completed.
    
    SQL> select * from supplier_16;
    
    CONTACT_N
    ---------
    Shilpi
    Sunil
    Shreyas
    Saral
    

    Of course, there is treatment rank by rank and is not best for performance, but it allows you to access your collection that you created names.

  • Peovisioning attribute to multiple values in a table SQL using the GTC in detail

    I have a recon trust implemented Sun LDAP for IOM followed to auto put into service at table 'MyUser' to SQL using GTC. It works great so far.

    Now the difficult part of the requirements. I have a multivalued attribute called "AppRoles" associated with Sun's LDAP user. I would like access to this attribute to the 'MyUserToRole' of SQL table (this is a picture of detail table Master "MyUser"). What should be the best approach to this task?

    Thank you!
    Kabi

    For the look-up:
    Once you run Trusted Recon, all your AppRoles are inserted in this research and the different lines for different users. Use the IOM API for this. A basic structure could be as follows:

    Code - Decode
    User01 - Role01, Role02
    User02 - Role02, Role03, Roel04
    User03 - Role08, Role12

    In this way all the roles are stored in this research. Bu the only problem with it could be the change in the look upwards manually which could be tolerated as there are glitches with almost all of the solutions implemented.
    --------------------

    For the field of the UDF
    Yes, their would be a limitation in the text box and it is * 200 * characters. So if that's the case then you should go for the look-up which has no such restrictions at least for your condition.

  • Table updated with the list

    I have a form with a list of table row id numbers in the order that I want the lines to be displayed. I need day field of 'dispalyOrder' of the table based on this list.

    Currently, I am looping through the list and set the "Form.displayOrder" variable with the number of loops and setting the "Form.catID" variable with the element in the County using ListGetAt list. I then do a cfupdate to update the line.

    It's fine for the short list, but when there are 100 or more items in the list there are a lot of hits to the database and usually stops at one point.

    Is there a way to make a to the database to update all the lines?

    I'm a programmer turned designer so that I can't seem to find online help I don't understand yet.
    Thanks for any help provided.

    I use 7 MX with a SQL 2000 database.


    My current code is attached below.

    Now all the code in your first post is replaced by this one cfquery (which should be 100 times faster.)

    Please note that I used my best guess on the form and the column names.

  • Dial the node library with cluster table feature using the pointer of table data

    Hi all.

    I am writing a wrapper of LabVIEW for an existing DLL function.

    The service was, as one of its parameters, an array of structures.  The structure is very simple, containing two integers.  I use the call library function node to access.

    In Labview, I created an array of clusters, when the cluster has two integers of 32 bits as members.  So far so good.

    Now, I have to pass this in the node library function call.  I use here in trouble.

    I used the LAVA so the topic in the knowledge base as my main sources of information, although I read a lot of topics in the forum on the subject too.

    I don't understand I could write a new function that takes as a parameter a struct with the size as the first member and an array as the second, and I might just do this and do call the regular service, but I was hoping to do more simply.

    The file function C LabVIEW generates for me the COLD Lake when I choose "To adapt to the Type" and "Data in the table pointer", the prototype he expects is:

    int32_t myFunc (handful of uint32_t, uint16_t channel,
    int32_t FIFOnumber, Sub data [], int32_t numWords, int32_t * actualLoaded,.
    int32_t * actualStartIndex);

    And the prototype of the function in my DLL is

    int myFunc borland_dll (DWORD channel, channel of Sina,)
    FIFOnumber int, struct mStruct * data, int, int numWords * actualLoaded, int * actualStartIndex);

    It sounds like a match for me, but it doesn't work (I get garbage in the data).  The topic referenced above LAVA, I realized it would work.  This isn't.

    If I have to cast the data to the pointer-to-pointer I get when I generate c code in my wiring to a CIN struct and by generating, then I seem to get what I expect. But it seems to work when I choose "pointers to handles" too, and I'm expecting data table pointer to give a different result.

    Is it possible to get it works directly, or I have to create a wrapper?  (I am currently using LabVIEW 2011, but we have customers using 2009 and 2012, if not other versions as well).

    Thank you.

    Batya


Maybe you are looking for

  • Problems of mouse with display port 1.2 in MST (display 4K)

    With macOS Sierra, there is a strange thing with 4K display connected via DisplayPort DP 1.2 STD mode (required for the 60 Hz refresh rate). As the screen is divided into two screens sub in this mode - mouse behaved differently on each half of the sc

  • glitch between Firefox and Avast security 9 online

    I like to keep my private browsing window, but every time I have activate the online safety of Avast added on it by itself opens each time. below is a YouTube video showing what I mean... http://youtu.be/6p_mIPWxfF4 I like Avast online protection, ve

  • Satellite Pro L - where can I find the serial number?

    I received a damaged Toshiba Satellite, I can't find a serial number or number of product on him and he has what looks like a label of Hong Kong Customs in this respect, is possible that I can find some ID when I boot it? The display is damaged and I

  • Increase the frequency of sampling on the cdaq 9174 with neither 9212

    Hi all! I am trying to increase my sampling rate on my nor 9212, that I use with a cdaq 9174 and LV 2015. Apparently, the sampling frequency depends on the time of conversion and can be changed between the high speed, the Best 60 Hz rejection, best 5

  • Disabling

    Our old computer crashed and he still holds the old activation. We need for that to be resolved. Please contact me if I can get the reset of activation. This would be-Adobe Acrobat X pro.