How can I obtain a scope like presentati​on using measuremen​t studio and VB?

I would like to use the scope active X control provided in Measurement Studio to provide an oscilloscope presnetation of data acquired using the NI 6110 high speed digitizer boards.
Is this possible?
Some sample code would be helpful.  I am used to setting up virtual channels in the Measurement and automation software and then referencing the virtual channel number in the properties of the active x control in VB.  I can't figure out how to accomplich this with the scope active x control.
Thanks

Hello Cubby!
I am assuming when you say you want to use the Scope ActiveX control in
VB6 that you are refering too the IVISCOPE activeX control.  This
control will allow you to have the O-Scope type interface with little
to no programming.   Please notice this will be different
then using MAX because you will need to have an IVI session of your
scope set up.
After Adding this component to your project simply lay it on the
form.  Next in the property page associated with the control find
the 'Custom' property.  Click on the '...' button inside the
property which will bring up a attribute page.  Finally, select
your IVI scope session that was configured in MAX or if your using an
NI scope board enter the resource in the DAQ::x::INSTR format.  To
verify that everything is setup correctly click on the 'Configuration'
tab and click the Verify button.
For further help see....
http://digital.ni.com/public.nsf/websearch/CEECFCB​F5015AB6F862568A100640EB0?OpenDocument
If you have more questions please feel free to ask.  I could not
locate any example code,  but you should be able to get it working
by simply configuring the control correctly.  Have a great day!
Allan S.
National Instruments

Similar Messages

  • How can i create a Laptop like the ones use in SAP TecEd?

    How can i create a Laptop like the ones use in SAP TecEd hands on labs? with all the NW products install on it.

    Hi,
    Vague question, but to create a laptop with the solution installed - you need to order the solution and and then install it on the laptop. Or download trial versions from SCN and install those as well.
    Regards,
    Srikishan

  • How can I set up a wi-fi network, using one time capsule and two airport express

    how can I set up a wi-fi network, using one time capsule and two airport express ?
    The time capsule is near the Mac. ok
    The first Airport is on the corridor, ok, works well and the App on the iPad signals so, ok
    But when I plug the next Airport on another room nearby nothing happens, and signals disconected ....
    is the signal so weak that is not able to go to ono room to the other ?

    Well, even if you have the first express set up to extend the network, the second express can only extend from the TimeCapsule.
    Maybe you got walls of sheetrook in the way, or kitchen/bathroom tiles, etc, dampening the signal rapidly.

  • I bought a used iPhone and found him email iCloud does not affect me so how can I deleted this email in order to use the device freely and privacy

    I bought a used iPhone and found him email iCloud does not affect me so how can I deleted this email in order to use the device freely and privacy
    help me please

    You can't. Return the phone for a refund, if you can, because without the previous owner's Apple ID/Password, you will not be able to re-activate the phone. It will be useless to you.
    Apple can't/won't help you with this.

  • How can I do to communicate to parallel port using labview 5.0 and NT ?

    I am trying to write and read from parallel port using Labview 5.0. It does not work with NT.
    How can I do to communicate to parallel port using labview 5.0 and NT ?
    Thank you in advance.
    Regards,

    If you are trying to use In/Out port functions that come with LabVIEW they will not work with NT. I think the AccessHW file at the following link will fix that problem:
    http://zone.ni.com/devzone/explprog.nsf/6c163603265406328625682a006ed37d/49664743ded6f1da862564bc004e3a7f?OpenDocument
    Try also this link:
    http://zone.ni.com/devzone/conceptd.nsf/2d17d611efb58b22862567a9006ffe76/0989d3d9dafae64e8625680400679736?OpenDocument
    and do some searchs at NI.com for parallel port, you should find some more usefull info.
    Good luck
    Brian

  • TS1578 How can I remove this "feature" ? I always use caps lock key and it's so annoying ! I'm fed up ! I received my new MBA yesterday, but I think I'm going to come back on Windows because of that ! So is there a solution to remove this annoying feature

    How can I remove this "feature" ?
    I always use caps lock key and it's so annoying (I write very fast) ! I'm fed up ! I received a MBA 13" yesterday, but I think I'm going to come back to Windows because of that !
    So is there a solution to remove this annoying feature ?
    Thank you very much

    Yes, this is really a deal breaker for me as you say ... I'm forced to write three times slower than I did on Windows 8, that's horrible (I used to type about 110 words/min).
    I'm going to return my Mac and I think I'm going to buy an Asus laptop instead ...
    What a shame that Apple does not do anything for this to be configured, I have read other forums and I see that I'm not the only one complaining about that ...
    How to lose customers so stupidly ...
    But thank you for your reply.

  • How can i format an external drive to be used for both windows and mac

    i recently bought a macbook pro and used bootcamo so as to be able to run win7 and mac. I now wish to have an external usb drive so as to backup and tranfer files between the two os's. How can I do this?         

    Firstly,
    There is a forum for MacBook Pro - not this. And for Boot Camp.
    You can:
    add Paragon HFS driver to Windows which works
    add Paragon NTFS for Mac OS X
    USB is of course slow and while people use it for backups and TimeMachine, that is one place where FW800, eSATA or USB3 would be better served.

  • How can I obtain the primary key of a table for an entity relation?

    hello everybody
    I am doing a consultation to a table in my data base, good this table has alone two fields, the first one is the code or pk and the second one is the description, to be presisos they are names of city and code.
    From the beginning!!: This method this one in another class that is a Dialog that is going to call to the class SelecPlace ();
      SelecPlace sl = new SelecPlace();
    public void capturarLugar(){  //  Simple void method in the mentioned class
            String place = txtProcedencia.getText() ;  //  a JTextField
            sl.executeStatement(place) ;                  
        }ok, now we see part of the code of the class SelectPlace
    public class SelecPlace extends AbstractTableModel{
        Connection con = null;
        Statement sentencia = null ;
        ResultSet rs = null;
        ResultSetMetaData rsmd = null ;
        String[] nameColum = {} ;
        Vector datos = new Vector() ;
        public SelecPlace() { }
        public void executeStatement(String query){
          try{
             con = DBManager.getConnection() ;
             sentencia = con.createStatement(rs.TYPE_SCROLL_INSENSITIVE,
                                                                          rs.CONCUR_UPDATABLE) ;
             String sql = "select * from Place where descripcion like %"+query+"%'";
              rs = sentencia.executeQuery(sql) ;
              rsmd = rs.getMetaData();
              int nroColumnas = rsmd.getColumnCount() ;
              nameColum = new String[nroColumnas] ;
              //obtengo los nombres de columnas en cache
               for(int colum = 0; colum < nroColumnas; columna++){
                    nameColum[colum] = rsmd.getColumnLabel(columna + 1) ;
               datos = new Vector();
                while(rs.next()){
                    Vector newRow = new Vector();
                    for(int i = 0; i < getColumnCount(); i++){
                    newRow.addElement(rs.getObject("place_ID"));
                    newRow.addElement(rs.getObject("description"));
                    datos.addElement(nuevaFila);
                fireTableChanged(null);
            }catch(SQLException e){
                System.err.println(e);
                e.printStackTrace(System.err);
                System.out.println("error in statement");
            }catch(ClassNotFoundException cnfe){
                System.err.println(cnfe);
        }Ok, this code me works and I obtain in this case the field description of the table Place
    Now my question is, how can I obtain the primary field of my table?
    I need this value of this field that in the base of information in a bigint, and to take it to the first class before mentioned, for that I am working with a data base related

    Certain duffymo and everyone!!, good I give you my scheme:
    And generalizing my question, I want to obtain the value of the primary key of a table in the database, I obtain more values of the same row, but I need the primary key, and you see one with the primary key I want to turn a Long and it to insert with code java in foreign clave in another table of the database
    Good of this form I believe that it would not be breaking the integrity relacional of the tables

  • How can I obtain the value of a database column in a JSP variable ?

    How can I obtain the value of a table column in a JSP variable?
    For example the <jbo:ShowValue datasource="cl" dataitem="Cont" ></jbo:ShowValue>
    I need to have it in a variable like this:
    <% String cnt=<jbo:ShowValue datasource="cl" dataitem="Cont" ></jbo:ShowValue>; %>
    But it is not workig this way.
    Please help me to obtain the value.
    I am using JDev RC2.
    Thanks.

    Try something like
    String cnt = c1.getRowSet().getCurrentRow().getAttribute("Cont").toString();
    -A
    How can I obtain the value of a table column in a JSP variable?
    For example the <jbo:ShowValue datasource="cl" dataitem="Cont" ></jbo:ShowValue>
    I need to have it in a variable like this:
    <% String cnt=<jbo:ShowValue datasource="cl" dataitem="Cont" ></jbo:ShowValue>; %>
    But it is not workig this way.
    Please help me to obtain the value.
    I am using JDev RC2.
    Thanks.

  • How can I obtain a 'circuit (schematic) diagram' for the: Creative gigaworks T20

    How can I obtain a 'circuit's (schematic) diagram' for the: Creative gigaworks T20
    Thanks

    They have Cs6, however I need to have my own copy, and the highest I can go with my system is CS5, maybe even 5.5. I've a small budget, and most copies are being sold for massive amounts because they're like collector items. I've seen the ones actually affordable within my range from sellers that arent trustworthy, or they're updates which I can't use. I had Cs2, but with updates to operating systems they stopped working. Thank you for your kind assistance.

  • How can I obtain the resources in jar?

    How can I obtain the resources in jar if the class that to want this resource is static?
    I don't succeed use like:
    getClass().getResourceAsStream("/" + name)
    because my class is static.
    Thaks

    You could do this
    new Object().getClass().getResourceAsStream("/" + name)
    or
    Object.class.getResourceAsStream("/" + name)

  • I need to install photoshop cs4 extended from a disk to a new computer because my old computer had a hard drive crash. There is no serial number on the back of the case.  How can I obtain a usable serial number?

    I have to install Photoshop CS4 extended on a new computer from a disk because my old computer had a hard drive crash.  There is no serial number on the back of the case.  How can I obtain a usable serial number?

    Find your serial number quickly
    You can activate software without following up and registering it... at least that was the case in the past.  The serial number is normally located on the disc case or a box inside the main box.  If you did not purchase the disc from Adobe then it is possible you would have dealt with a redemption code, in which case it would have been up to you to keep a record of the serial number, especially if you did not follow up and register the software.

  • Satellite A100-912: How can I obtain a Toshiba step by step upgrade DVD

    I bought a Satellite A100-912 (with XP installed). Now I'm upgrading to Vista Ultimate. I don't have the Toshiba Step By Step Upgrade DVD; so how can I obtain (or buy) a copy of the DVD?

    I bought the notebook after the date (15 Mar 2007) for redeeming the express upgrade DVD for Vista from Toshiba. In this regards, I bought an origiona OEM Windows Vista Ultimate to upgrade from XP. I want to install the Toshiba Softeware that was bundled with notebook and works with Vista and thats why I want the upgrade DVD...

  • How can i obtain a user guide for the ipod nano 16GB 5th gen. with out printing it off the computor

    How can i obtain a user guide for the ipod nano 16GB 5th gen. without printing it off the computor.

    You can't, at least not the one provided by Apple.
    B-rock

  • How can I obtain column subtotals in a spreadsheet already sorted by catagory. Using version 3. Was fairly straight forward in previous version.

    How can I obtain numeric subtotals in a spredsheet already sorted by catagory? Am using version 3. This process was fairly straight forward in previous versions.

    SUMIF or SUMIFS function?

Maybe you are looking for

  • Backup of Leopard Install DVD with disk utility

    I'm in the process of saving a disk image from the Leopard Install DVD, but I'd like to be sure I did it right by selecting the Leopard Install partition on the sidebar in Disk Utility, rather than the drive itself. I did so because when I tried it w

  • Same line items

    Hi,      While creating a sales order ,my requirement is that the system should not accept same line item two or more times. Eg.,   Line item 10     xyz  material           10 units          Line item  20    xyz  material            20 units In the a

  • EVCOM

    Hi, I'm currently looking at the function EVCOM, but I haven't managed to get it to work - not even if I turn on "Excel pop up". Does anyone have an example in Excel to share? Thanks, Lars

  • Time machine backup does not include everything

    My external hard drive kept dismounting so I bought a new one.  when I checked on the backup, I could not find anything from the desktop or Iphoto or Itunes.  How do I get the time machine to back up everything? 

  • About rise time test

    Hi, Use Transition Measurements to test rise time as appendix in detail.My question: 1. Is the program structure reasonable? 2. When the RAMP TIME of amplifier is fixed, the DURATION varies to the different time of input control Am. 3. The duration E