Using NI CompactDAQ for helmet safety Crash Test - case study OR

Hi all

I have a question about the counter function in LabVIEW. The example below shows a case study for a test sefaty helmet using CompactDAQ.

http://sine.NI.com/cs/app/doc/p/ID/CS-785

They say:

The helmet is declining, a sensor passes through a barrier of speed, as we use the counter/timer function to measure the speed of helmet just before impact. This triggers the data acquisition system, that measure the acceleration that the head feels upon impact.

My question is: if they used a photoeletric sensor, what is the purpose of using a meter? Why don't you just simulate the relaxation of trigger.vi DAQmx early?

I guess that the counter/timer function is to measure the elapsed time between two positions: there should be two-door sensor? To calculate the speed, you can divide the distance between the two doors with the passage of time.

Tags: NI Software

Similar Questions

  • Using ODI SDK for more safety information

    Hi all

    Did someone already used ODI SDK to get information in the security module? I try to get the following information with the SDK:

    SELECT THE METH. I_METH,

    METH. I_CONTEXT,

    METH. I_OBJECTS,

    METH. I_INSTANCE

    OF SNP_USER_OBJ_METH METH;

    Also, do you have examples of how to set the security of an ODI (e.g. workload) object to a user using the SDK? Is this possible?

    Thank you.

    Little play of related security functionality is supported through SDK. Now sdk does not support the control of the access privileges for a user.

  • The scheme < SOA > _OPSS is already used for the safety of the point of sale. Please create a new scheme

    All,

    version: 12.1.3

    I am trying to create a new area where I wanted to use the same scheme used in the existing domain.  It failed with the below error

    com.oracle.cie.domain.security.external.ConfigSecurityException: oracle.security.opss.tools.lifecycle.LifecycleException: security of the store DB configuration error. Oracle.security.opss.tools.lifecycle.LifecycleException of exception: the SOA12C_OPSS schema is already used for the safety of the point of sale. Please create a new schema.

    Is it mandatory that the scheme (creating the UCR) used in a field cannot be used for the new domain?  or am I missing something? Please notify.

    Thank you

    Sen

    That's the point... So actually you were never more than one domain using the same patterns, you have never shared patterns on different fields... You had a domain which would sometimes... Not possible in 12 c but because of OPSS more... Maybe you could just the OPSS schema duplicated, but you would always use the platform so that it was not intended to...

  • Lightroom question: my mac crashed, had backups, installed new OS 10.11 EL Capitan, use creative cloud for PS and LR, where go my Presets to develop, can not find them anywhere, any suggestions, thanks.

    Lightroom question: my mac crashed, had backups, installed new OS 10.11 EL Capitan, use creative cloud for PS and LR, where go my Presets to develop, can not find them anywhere, any suggestions, thanks.



    Thanks for the info, will try that.

    Sent from my iPad

  • Challenges using dynamic SQL for data quality tests

    (published for the wrong forum)

    Background:

    I'm developing a data quality, mechanism, on Oracle 11 g, which uses five blocks of PL/SQL by test test script:
    < li > two to supervise the event test by inserting a record in this regard in a fact table and update after the test with the result of the counts;
    table < li > two to create an image "should be" of the tested data set and store it in a scene.
    < li > and the remaining block to perform the analysis by selecting a union of the staging table data and the data "such what" of the target table, abandoning all matching files so that only incompatibilities (errors) remain and store this information in a results table, labeled with either recording source "should be" ("should be") or target ("such what").

    I intend to do this pilot by the data, so that each block is stored as a value in an array of scripts, associated with one or more test scripts through the record key values and pulled in a SQL statement execution by a stored procedure in a package called by Informatica Oracle dynamic. In this way, a variety of data quality tests can be programmed as automated controls that work every night and trigger alerts if problems are detected.

    I have two challenges:
    < li > PL/SQL blocks that create the DataSet "should be" can be very long, and I learned through Discussion Forums OTN size maximum of 32767 K for a string of PL/SQL variable cannot be large enough to fit the entire block, and the EXECUTE IMMEDIATE statement accepts not the CLOB.
    < li > if there is no anomaly, the trick of COUNT () ON the PARTITION that I use to get the counts of subquery won't work, because the analysis block everything is an INSERT INTO < i > < /i > table (column1, Column2, etc.) SELECT (< i > < /i > comparison query) statement, to avoid that my duty to hit the table target several times. My approach to this is driven by performance problems.

    First question: can I I EXECUTE IMMEDIATE nest, so that the SQL block running offers another EXECUTE IMMEDIATE statement that calls another block of SQL? This would solve my problem first.
    Second question: what is the way most effective to get the record account of subqueries in an INSERT INTO (SELECT) statement? I feel I'm too close the code to see the obvious answer here.

    Here is a shell of the block analysis ((deuxieme question):
    DECLARE
    
    StartDate DATE;
    EndDate DATE;
    TEST_KEY NUMBER;
    
    BEGIN
    
    INSERT INTO TEST_EVENT_DETAIL 
        (TEST_EVENT_KEY,TEST_EVENT_DETAIL_KEY,COLUMN1,COLUMN2,COLUMN3,COLUMN4,
        COLUMN5)
    SELECT
        TEST_KEY as TEST_EVENT_KEY,
        TEST_EVENT_DETAIL_SEQ.NEXTVAL AS TEST_EVENT_DETAIL_KEY,
        RESULTS.TABLENAME as COLUMN1,
        RESULTS.COLUMNNAME1 as COLUMN2,
        RESULTS.COLUMNNAME2 as COLUMN3,
        RESULTS.subqry_count as COLUMN4,
        null as COLUMN5  -- there are more generic columns, this is just an example; columns not used by a particular test are filled with nulls
    FROM
    (SELECT MIN(TABLENAME) as TABLENAME,
        min(subqry_count) as subqry_count, 
        COLUMNNAME1,
        COLUMNNAME2
      FROM 
    (SELECT TABLENAME as TABLENAME,
        count(TABLENAME) over (partition by TABLENAME) subqry_count,
        COLUMNNAME1,
        COLUMNNAME2
      from
    (
    /** Source Data **/
     SELECT 'SOURCE' as TABLENAME,
        COLUMNNAME1,
        COLUMNNAME2
       FROM TEST_EVENT_STAGE A
     WHERE A.TEST_EVENT_KEY=TEST_KEY
      UNION ALL
    /** Target Data **/
      SELECT 'TARGET' as TABLENAME,
        COLUMNNAME1,
        COLUMNNAME2
      FROM TABLENAME B
      WHERE ____________
    ) TMP
    )
    GROUP BY COLUMNNAME1, COLUMNNAME2
    HAVING COUNT(*) = 1 -- this drops out all records that don't match
    ORDER BY COLUMNNAME1, COLUMNNAME2, TABLENAME ASC
    ) RESULTS;
    
    END;
    and here's some pseudocode for the stored procedure that would call the PL/SQL (first question) blocks:
    Declare
    
    TestProcessStart DATE;
    TestKey     NUMBER;
    StartDate      DATE;
    EndDate      DATE;
    BlockStatus        varchar2(200);
    BlockSQL        varchar2(32767);
    
    begin
     
    Set BlockSQL=(select SCRIPT_BLOCK from DIM_SCRIPTS where SCRIPT_KEY=(select SQL_BLOCK2 from DIM_TEST where TEST_KEY=TestKey));
    
    execute immediate 'begin ' || BlockSQL || '; end;'
       using in BlockSQL, in out BlockStatus ;
    
     if BlockStatus != 'OK' then
        dbms_output.put_line('error');
     end if;
    end;
    Any ideas/recommendations?

    PL/SQL blocks that create the data set "should be" can be very long, and I learned through the Forums of Discussion OTN 32767 K maximum size for a string of PL/SQL variable cannot be large enough to fit the entire block, and the EXECUTE IMMEDIATE statement does not accept the CLOB.

    Not in 11g more: EXECUTE IMMEDIATE statement:

    »
    dynamic_sql_stmt

    Literal string, string variable or string expression representing a SQL statement. Its type must be CHAR, VARCHAR2 or CLOB.
    «

  • Esxi4 + iSCSI crash test trouble

    Thus,.

    I have use ESXi4 + iscsi datastore without flaw.

    But today I tried a crash test.

    In Vsphere Client, I delete (disconnect) the Datasore and then I removed the iSCSI card. Exactly what would have happened if my server crash ESXi and I need to reinstall from scratch.

    Then I re - create a my target iSCSI iSCSI adapter: ok

    I connect a new data store based on my iSCSI adapter, but the problem is: I can not just ride my 'old' iscsi volume, he always wants to create new formatted volume!

    So, how could I, only, to mount my existing iscsi volume?

    Thanks for the kind help

    Used items:

    ESXi4

    VSphere Client

    StarWind free with volume of virtual hard disk

    You will be able to add again, because you will remove the masking of the logic unit number at the end claimrule.

    You also can anyone the LUN on the storage side, but it's the way specific to the operation.

    Marcelo Soares

    VMWare Certified Professional 310/410

    Technical Support Engineer

    Globant Argentina

    Review the allocation of points for "useful" or "right" answers.

  • TDMS use multiple test cases

    I ask if people find the hierarchy TDMS a shy level of perfection, or am I wrong in using the technology.  TDMS files intended to contain data for a single test, or are people able to store multiple tests in a single file?  Here's my use case:

    I generate about 35 tests per minute.

    Each test has 3 phases/segments (warm-up run, cooldown phase)

    Each segment of phase / has 4 to 6 channels.

    Each channel is D 1 data table.

    If I understand correctly, TDMS is a hierarchy of level 3, so I need to create a new file for each test (yuck), or use a group for each test, a channel for each phase and reshape the channel data 2D to 1 d for a single channel entry.

    Any other ideas?

    With your use case, Yes, it seems that it is a shy level of perfection.

    What you can try to do, it's, it grouped as follows:

    • A TDMS file

      • Group for each test

        • A channel for every bit of information about this test

    You will need to name your channels with information on what segment they were from.

  • Other download links for Microsoft Safety Scanner?

    I tried to download Microsoft Safety Scanner http://www.microsoft.com/security/scanner/en-us/default.aspx for more than a dozen times now, but still it is interrupted. I have more virus in my computer, it's just that I think that my Internet connection is too slow. My cousin asked me help on how to get rid of a bunch of virus on his computer at home, that I offered help by using the Scanner, as I do for my friends over the past two months. (I never asked them for anything in Exchange). Do you have any other download links for Microsoft Safety Scanner? I can't try to download. I tried to go outside in cafes Internet just for the download, but its still the same and even worse, computers on these places are full of virus. Other links? Torrent or maybe? (they never get interrupted).

    PS.
    Do you know how to get rid of the trojan dropper and startpage? Theyre the virus which has been troubling my cousin for a while now...

    http://answers.Microsoft.com/en-us/protect/Forum/protect_scanning/help-me-i-cant-complete-the-download-of-the-safety/a4f5cd65-3192-450F-A038-861c15acb831

    I. - delete your temporary files

    Click Start > all programs > Accessories > System Tools > Disk Cleanup

    II. - have your system scanned as a result of security/antivirus installed.

    III. - run this tool from Kaspersky: how to remove malware belonging to the family of Rootkit. Win32.TDSS

    http://support.Kaspersky.com/viruses/solutions?QID=208280684>

    IV. - download, install, update and run both of these tools to a-squared free scans:

    MalwareBytes anti-malware (MBAM)

    http://www.Malwarebytes.org/products/malwarebytes_free>

    SUPERAntiSpyware (SAS)

    http://SUPERAntiSpyware.com/superantispywarefreevspro.html>

    V-1. open IE 32-bit (only) to https://consumersecuritysupport.microsoft.com/

    2. click on I think my computer is infected

    3. on the resulting page, click on run the Microsoft Safety Scanner

    4. Select appropriate service bit

    Download - 32-bit

    Download - 64-bit

    then click CONTINUE

    VI. - http://safety.live.com.

    VII. - https://support.microsoftsecurityessentials.com/ and select the link that says - I think my computer is infected

    UTC/GMT is 08:40 on Friday, March 16, 2012

  • How to use transfer windows for xp to xp. When I plug usb computers are delivered to the top with the same screen and when I try to use the transfer to the new computer, it just said information gathering and sits for hours

    How to use transfer windows for xp to xp.  When I plug usb computers are delivered to the top with the same screen and when I try to use the transfer to the new computer, it just said information gathering and sits for hours

    Hello, welcome.

    The process is automatic and the maximum transfer rate should be about 20 GB/HR. If the process crashes during that long of a time, it's probably because of something internal rather something you're doing wrong.
    For reference purposes, I included this link. It goes into the details of the migration from XP to Vista (and the basic steps you follow). The instructions are for migrating to Vista via the network, but you can easily follow the steps and choose a different option for your specific installation.
    For both machines, I recommend you to prepare for the transfer using the following procedure:
    1. click on START > run
    2 type "msconfig" (without the quotes) and press enter
    3. go to the "Startup" tab and uncheck all the entries displayed
    4. click on 'Apply' at the bottom right
    DO NOT RESTART YOUR COMPUTER AGAIN
    5. click on START > run
    6. Type "cmd" (without the quotes). Right-click on the result at the top of the menu START and select 'run as administrator '.
    7. type chkdsk /r and press enter
    8 allow the system to attempt disassembly of the volume
    9. allow the system to plan restarting
    10. restart your computer
    11 let checkdisk analyze the file system on your hard drive
    12. Once completed, perform the same steps on the other machine
    13. Once completed, repeat the transfer

    Let us know what happens
    Thank you!

    Ryan Thieman
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • I try to use windows excel for windows vista and am asked for a product key. How can I find out what order to use the product?

    I try to use windows excel for windows vista and asks me to enter a product key. I am the sole owner of the computer but have no installation CD for recharge Excel. How can I find out what order to use the product? From now the product doesn't let me do anything. Help, please!

    Hello

    Did you pay for Office (including Excel) in a packaging separated when you bought your computer?

    Office is not included with your purchase of computer for free.

    Most new computers come with a trial version of Office that lets 'x' number of days usuage.

    After this test times out, you will have to buy Office.

    And the product key on the computer case or laptop for the operating system, not for the desktop Suite.

    Here is the link for the Microsoft Store to Office products:

    http://www.microsoftstore.com/store/msstore/HTML/pbPage.Office_Category_Page?ICID=Home_4up_1_OfficeCatPage

    And you might be interested in the free Open Office Suite of Office Applications.

    http://www.OpenOffice.org/

    For any other question about Office, please repost in the Office Forums:

    http://answers.Microsoft.com/en-us/Office

    See you soon.

  • driver for bluetooth adapter soopa for helmet conect energy BT5

    I need driver for bluetooth adapter soopa for helmet conect energy BT5 for laptop HP Pavilion dv 6700 are.

    Please give me the link to obtein the pilot. Thank you very much
    Mail to; E-mail address is removed from the privacy *.

    Hi Carlos,

    According to the description, I understand that you want to install the Bluetooth drivers for headphones on your Windows 7 machine. I will certainly help you get this fixed number.

    I suggest you try to search for the drivers on the link below:

    https://www.energysistem.com/en/support?F=epgjfcacdeii&A=mpokoebncenp

    If this does not help, then may contact the manufacturer of the device for drivers appropriate according to your specifications.

    Hope this information is useful. Please come back to write to us if you need more help, we will be happy to help you.

  • Reset the State of the permissions for the BBM integration tests

    For the purposes of testing, I want to cancel my BBM surveys application registration and clear all permissions for this.

    Now when I remove and redeploy the application, he recorded again but do so without up permissions dialog window to ask if I want to allow it to access BBM or not.

    What should I do to get that back? If I go to the window of permissions of Applications in the settings (which is extremely buggy, incidentally) and disable the authorization of BBM, it does nothing but block the application to use BBM.

    Try to change your application id then. (The in the bar descriptor). That * has * to work, by definition. If it isn't, then you're doing something wrong, I think. If you change the id app, it's actually a different application.

  • Advice for the real world test device

    I keep running into problems of developing applications of BB where my code works perfectly well on all simulators, but as soon as I do the direct product of dozens of reports to be "unable to connect" is from (or another bug) flood from a random set of devices (the last wave is of Tower owners on Sprint and of course the app works fine on the tower for the Sprint Simulator using the same operating system) I am not able to go out and buy a Blackberry for all models on the carrier, and the labor to do these tests is beyond what my company can manage anyway.

    I'm looking for is advice of some experienced developers.  What do you do to get around this?  How do you verify that your code will run on real devices?  When you get hit by a real single bug, how to solve it?

    Thank you

    ~ NN

    Agree with Simon.

    deviceAnywhere is one that comes to mind, there are at least another company that was in the penultimate a DevCon, but I don't remember his name.

    Each new customer has a new experience with networking and you slowly build your code to handle the case.  Have to say that we are lucky, because we mainly deal with businesses, so use BES connections for most.  And the United Kingdom, there are only 5 carriers, so it is easy to code a quick test and determine what APN settings to use for each.

    Debug object, a method I would recommend is to write your own journal and provide your users with an easy way to email it to you.  Indeed, offer to send when you know you have a problem.

  • soapUI for the SOAP connection test

    Hello everyone,

    I created my use of "stub" JSR 172. I tested it. But he showed me, the action failed. I was told that I can use soapUI before application BB test connection to the test server.

    At all ideal with soapUI?

    Thank you in advance!

    I'm certainly not a specialist using soap ui, but it allows to check the requests and responses.
    usually I just read the wsdl file and let soapui do the rest, you have a list of all the functions available for the Web service.

    to test Web services, another tip would be to encapsulate platform of your code (use no specific classes of bb) independent and test your webservice with junit. If you need classes specific suppy with a reminder (transport and transportSE, for example)

  • Oracle of the MAF error ' cannot read the DataControl uses on loadDataControl for the id:

    Need help!

    I created a simple SOAP web service for a remote database that works very well in 12 c WebLogic Server and also in the Jdeveloper HTTP Analyzer. When I use the same web service in the attached code, I get the following error (I've included output System.out.println in Ref. to the flow of the code) I use Jdeveloper 12 c MAF 2.0.0.0.41 on Mac OSx 10.9.

    Chk #0

    Processing line # 1

    Chk #1

    Chk #2

    [SEVERE - oracle.adfmf.framework - AmxBindingContext - loadDataControlById] Cannot read the DataControl uses on loadDataControl for the id: WLFNewActWS. [SEVERE - oracle.adfmf.framework - SynchronizationDC - syncDataFromOfflineToOnline] [Ljava.lang.StackTraceElement;@467c53d3

    @


    Sorry about that, I think I'm wrong you.

    OK, I created an example to test what goes wrong.

    1. server side, create a project named Employee_ws

    a. Department_ws.java

    public interface {Department_ws}

    public boolean addDepartment (a Department);

    }

    b. Department.java

    public class {Department

    public Department() {}

    Super();

    }

    int departmentId.

    String departmentName;

    locationId int;

    managerId int;

    {} public void setDepartmentId (int departmentId)

    this.departmentId = departmentId;

    }

    public int getDepartmentId() {}

    return departmentId.

    }

    {} public void setDepartmentName (String departmentName)

    this.departmentName = departmentName;

    }

    public String getDepartmentName() {}

    return departmentName;

    }

    {} public void setLocationId (int locationId)

    this.locationId = locationId;

    }

    public int getLocationId() {}

    return locationId.

    }

    {} public void setManagerId (managerId int)

    this.managerId = managerId;

    }

    public int getManagerId() {}

    return managerId;

    }

    }

    c. Department_impl.java

    @WebService

    / public class Department_impl implements Department_ws {}

    public Department_impl() {}

    Super();

    }

    @Override

    @WebMethod

    {} public boolean addDepartment (@WebParam (name = "arg0") a Department)

    If (Department! = null) {}

    int departmentId = department.getDepartmentId ();

    String departmentName = department.getDepartmentName ();

    int locationId = department.getLocationId ();

    managerId int = department.getManagerId ();

    Connection Conn;

    try {}

    Conn = ConnectionFactory.getConnection ();

    conn.setAutoCommit (true);

    Statement šment = conn.createStatement ();

    String inset_sql =

    "INSERT INTO dept (department_name, location_id, department_id, manager_id) VALUES ('+ '.

    departmentId + "," "" + departmentName + "'," + locationId + "," + managerId + ")";

    šment. Execute (inset_sql);

    Returns true;

    } catch (Exception e) {}

    System.out.println (e);

    }

    }

    Returns false;

    }

    }

    d. ConnectionFactory.java

    import java.sql.Connection;

    to import java.sql.DriverManager;

    import java.sql.SQLException;

    Connect to the database

    public class {ConnectionFactory

    public ConnectionFactory() {}

    Super();

    }

    protected static connection conn = null;

    public static connection getConnection() bird Exception {}

    If (conn == null) {}

    try {}

    String driver = "oracle.jdbc.driver.OracleDriver";

    String url = "jdbc:oracle:thin:@localhost:1521:orcl";

    User String = "employee";

    String password = "employee";

    Class.forName (driver);

    Conn = DriverManager.getConnection (url, user, password);

    } catch (SQLException e) {}

    System.Err.println (e.getMessage ());

    }

    }

    return conn;

    }

    public static {} Sub closeConnection()

    try {}

    If (conn! = null) {}

    Conn.Close ();

    Conn = null;

    }

    } catch (Exception ex) {}

    throw new RuntimeException (ex);

    }

    }

    }

    You can run Department_impl.java to start the Web service. i.e. http://127.0.0.1:7001 / Employee_ws-Client-context-root/Department_implPort? WSDL

    Server side sql:

    CREATE USER employee IDENTIFIED BY employee DEFAULT TABLESPACE users

    Temp TEMPORARY TABLESPACE

    Users WE QUOTA UNLIMITED;

    GRANT create employee to logon.

    GRANT alter used to logon.

    GRANT create any employee at table;

    GRANT create trigger employee TO;

    GRANT create any employee to view;

    GRANT create sequence employee TO;

    GRANT create synonym employee TO;

    GRANT create type employee TO;

    GRANT create employee to procedure;

    CREATE TABLE (DEPT

    DEPARTMENT_ID NUMBER (7, 0) NOT NULL,

    DEPARTMENT_NAME VARCHAR2 (50).

    NUMBER OF LOCATION_ID (7, 0),

    MANAGER_ID NUMBER (7.0)

    );

    2 create a mobile application of CRG named Dept

    a. Department.java (even for the server)

    b. SynchronizationDC.java

    import java.util.ArrayList;

    import java.util.List;

    Import oracle.adfmf.framework.api.AdfmfJavaUtilities;

    Import oracle.adfmf.framework.exception.AdfInvocationException;

    public class SynchronizationDC {}

    public SynchronizationDC() {}

    Super();

    }

    public void syncDataFromOfflineToOnline() {}

    It's just for testing, so I build Department manually instead of mobile db data, please replace in your business logic

    A Department = new Department();

    department.setDepartmentId (1);

    department.setDepartmentName("1");

    department.setLocationId (1);

    department.setManagerId (1);

    NamesList list = new ArrayList (1);

    List ParamsList = new ArrayList (1);

    List TypesList = new ArrayList (1);

    namesList.add ("arg0");

    paramsList.add (department);

    typesList.add (Department.class);

    try {}

    AdfmfJavaUtilities.invokeDataControlMethod ("Dept_WS", null, "addDepartment", namesList, paramsList,

    typesList);

    } catch (AdfInvocationException e) {}

    System.out.println (e);

    }

    }

    }

    c. new an AMX pag called Dept.amx

    "http://www.w3.org/2001/XMLSchema-instance" xmlns:amx ="http://xmlns.oracle.com/adf/mf/amx"

    xmlns:dvtm ="http://xmlns.oracle.com/adf/mf/amx/dvt" >. "

    Text = "syncDataFromOfflineToOnline."

    Disabled = "#{!}" Bindings.syncDataFromOfflineToOnline.Enabled}"id ="cb3"/ >

    d. deploy on Android Simulator

    Click the button and a new record have been db insert through the webservice, search the remote db recording

    If above does not solve your problem, please let me know, thanks.

    Byron

Maybe you are looking for

  • 10.11.4 updated

    I os10.11.4 el capitan.do, I need to download the combo updater 10.11.4? when I go to the app store and search for updates, he said: I am currently and no exist.am updated my class? Thank you

  • Satellite Pro P100: The extended warranty is not available?

    Hi, just about to buy a Satellite Pro P100, but when we look at the warranty I don't see this pattern on the list machines covered by the extended warranty available at Toshiba. Any ideas? It makes me a little nervous if Toshiba does not cover this m

  • Satellite A100 - 784 PSAANE: Installation of Vista Edition Home Premium processor in a box

    Hi guys, I would like to ask you a difficult question for me :) I have Toshiba Satellite A100 - 784 PSAANE with Windows Vista Home Basic 32-bit OEM Czech andDVD from Toshiba product recovery. I converted (boxed) Windows Vista Home Premium SP1 Eng as

  • Problem with USB mouse on satellite a215-s7416

    Hi all. I have had this problem since I got this computer in December. I hope someone can help me. I've been using an optical mouse wired usb. It works for about 4-5 weeks then it loses power. For the first days I can unplug and plug again and it wor

  • LabVIEW VI error when executing DLL functions

    Hello OR developers! I have driver for windows application created by Jungo WinDriver program for PCI-E card. Application works very well. I have edited and compiled the project as DLL manual suite. I can read successfully resource information of the