I'm attempting to learn to use NI-IMAQ. Configuration Question

I'm attempting to learn to use NI-IMAQ. I'm currently using an HP laptop (Windows 7) and it has an in built laptop webcam (VGA) which I would like to use to learn how to use NI-IMAQ. I'm attempting to configure the device in the Measurement & Automation Explorer (as described in another help KB article) but the device is not showing up. Any suggestions would be appreciated.

slow wrote:
Also, is the mentioned NI-IMAQ for USB the same as IMAQ 4.6.4, NI-IMAQ I/O 2.2 and NI-IMAQdx 3.2?
No all are different drivers.
Sasi.
Certified LabVIEW Associate Developer
If you can DREAM it, You can DO it - Walt Disney

Similar Messages

  • ChessBoard , my attempt and learning to develope chess board

    this is my attempt to learn how to create simple chessboard in java.. ill post my code as i progress, any suggestions is greate.
    i use netbeans :) and jdk1.6rc. peace
    * ChessBoard.java
    * Created on November 26, 2006, 10:06 PM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    * @author Bilal El Uneis
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ChessBoard extends JFrame implements MouseListener
    JPanel [][] squares;
    /** Creates a new instance of ChessBoard */
    public ChessBoard()
    Container c = getContentPane();
    c.setLayout(new GridLayout(8,8, 1 , 1));
    squares = new JPanel[8][8];
    for(int i=0; i<8; i++)
    for(int j=0; j<8; j++)
    squares[i][j] = new JPanel();
    if((i+j)%2 == 0)
    squares[i][j].setBackground(Color.white);
    else
    squares[i][j].setBackground(Color.black);
    squares[i][j].addMouseListener(this);
    c.add(squares[i][j]);
    public void mouseClicked(MouseEvent e){ }
    public void mouseEntered(MouseEvent e){ }
    public void mouseExited(MouseEvent e) { }
    public void mousePressed(MouseEvent e) { }
    public void mouseReleased(MouseEvent e) { }
    public static void main(String args[])
    ChessBoard test = new ChessBoard();
    test.setSize(300,300);
    test.setResizable(false);
    test.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    test.setVisible(true);
    }

    ok .. still trying to find time to play with my gui thing.. i got my board to basically give me info when my mouse is on piece or square.. also created a class called movablePiece that listen to mouse events too.
    changes made to board and board2 disapears ..
    here is the code ..
    * BoardSquare.java
    * Created on December 8, 2006, 11:08 PM
    * @author Bilal El Uneis
    * [email protected]
    import java.awt.event.*;
    import javax.swing.*;
    public class BoardSquare extends JPanel implements MouseListener
        public BoardSquare()
            super();
            addMouseListener(this);
        public BoardSquare(String name)
            super();
            setName(name);
            addMouseListener(this);
        public void mouseClicked(MouseEvent e)
        public void mousePressed(MouseEvent e)
        public void mouseReleased(MouseEvent e)
        public void mouseEntered(MouseEvent e)
            System.out.println("wellcome to square " + getName());
        public void mouseExited(MouseEvent e)
        public static void main(String args[])
            JFrame frame = new JFrame();
            frame.setSize(200,200);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add(new BoardSquare("test square"));
            frame.setVisible(true);
    * Board.java
    * Created on November 29, 2006, 11:04 AM
    * @author Bilal El Uneis
    * [email protected]
    import java.awt.*;
    import javax.swing.*;
    public class Board extends JPanel
        protected BoardSquare[][] squares;
        /** Creates a new instance of Board */
        public Board()
            setSize(800,700);
            setLayout(new GridLayout(8,8));
            squares = new BoardSquare[8][8];
            createSquares();
        public Board(int h, int w)
            setSize(h,w);
            setLayout(new GridLayout(8,8));
            squares = new BoardSquare[8][8];
            createSquares();
        private void createSquares()
            for(int i=0;i<8;i++)
                for(int j=0;j<8;j++)
                    BoardSquare panel = new BoardSquare(""+i+""+j);
                    panel.setBackground(getColor(i,j));
                    add(panel);
                    squares[i][j] = panel;
        private Color getColor(int x, int y)
            if((x+y)%2 == 0)
                return Color.WHITE;
            else
                return Color.BLACK;
        public void addPiece(Piece p, int x, int y)
            squares[x][y].add(p);
            paintAll(getGraphics());
        public void removePiece(int x, int y)
            if(squares[x][y].getComponentCount() > 0)
                squares[x][y].remove(0);
                paintAll(getGraphics());
        public static void main(String args[])
            Board t = new Board();
            //add pawns to board
            for(int i=0; i<8; i++)
                t.addPiece(new Piece("Rpawn.gif"),1,i);
                t.addPiece(new Piece("Bpawn.gif"),6,i);
            //add castles
            t.addPiece(new Piece("Rrook.gif"),0,7);
            t.addPiece(new Piece("Brook.gif"),7,7);
            t.addPiece(new MoveablePiece("Rrook.gif"),0,0);
            t.addPiece(new Piece("Brook.gif"),7,0);
            //add horses
            t.addPiece(new Piece("Rknight.gif"),0,6);
            t.addPiece(new Piece("Bknight.gif"),7,6);
            t.addPiece(new Piece("Rknight.gif"),0,1);
            t.addPiece(new Piece("Bknight.gif"),7,1);
            //add pishops
            t.addPiece(new Piece("Rbishop.gif"),0,5);
            t.addPiece(new Piece("Bbishop.gif"),7,5);
            t.addPiece(new Piece("Rbishop.gif"),0,2);
            t.addPiece(new Piece("Bbishop.gif"),7,2);
            //add queen
            t.addPiece(new Piece("Rqueen.gif"),0,4);
            t.addPiece(new Piece("Bqueen.gif"),7,4);
            //add king
            t.addPiece(new Piece("Rking.gif"),0,3);
            t.addPiece(new Piece("Bking.gif"),7,3);
            //create jframe and add the board to it :)
            JFrame frame = new JFrame();
            frame.setSize(800,700);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setResizable(false);
            frame.add(t);
            frame.setVisible(true);
            //test moving one piece to see if i can
            JOptionPane.showInputDialog("testing pawn move");
            t.removePiece(1,0);
            t.addPiece(new Piece("Rpawn.gif"),2,0);
    * Piece.java
    * Created on November 29, 2006, 11:35 AM
    * @author Bilal El Uneis
    * [email protected]
    import javax.swing.*;
    public class Piece extends JLabel
        /** Creates a new instance of Piece */
        public Piece()
            super(new ImageIcon("Bking.gif"));
            setName("Bking.gif");
        public Piece(String image_file)
            super(new ImageIcon(image_file));
            setName(image_file);
        public static void main(String args[])
            JFrame frame = new JFrame();
            frame.setSize(200,200);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            Piece piece = new Piece("Rking.gif");
            frame.add(piece);
            frame.setVisible(true);
            System.out.println(piece.getName());
    * MoveablePiece.java
    * Created on December 8, 2006, 4:36 PM
    * @author Bilal El Uneis
    * [email protected]
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MoveablePiece extends Piece implements MouseListener
        /** Creates a new instance of MoveablePiece */
        public MoveablePiece()
            super();
            addMouseListener(this);
        public MoveablePiece(String piece_name)
            super(piece_name);
            addMouseListener(this);
        public void mouseClicked(MouseEvent e)
        public void mousePressed(MouseEvent e)
            System.out.println(getName() + " pressed..");
        public void mouseReleased(MouseEvent e)
        public void mouseEntered(MouseEvent e)
            System.out.println("u enterd " + getName());
            System.out.println("Parent is " + e.getComponent().getParent().getName());
        public void mouseExited(MouseEvent e)
        public static void main(String args[])
            MoveablePiece p = new MoveablePiece();
            JPanel panel = new JPanel();
            panel.setName("black panel");
            panel.setSize(50,50);
            panel.setBackground(Color.black);
            JFrame frame = new JFrame();
            frame.setName("frame");
            frame.setLayout(new GridLayout());
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setSize(300,300);
            frame.add(p);
            frame.add(panel);
            frame.setVisible(true);
    }i know i can go with the easy way and just hardwire the code so that i can move the piece is square was clicked or piece.. but im trying to make every class able to function on its own as standalone.. that way u can use what ever class u want and not have to be tied for using everything because every class needs the other in a way that is hard to understand..
    any suggestions will be greate, im just learning here :) . peace
    Bilal El Uneis

  • I am attempting to have cells use data from a selective month from the year before so that I can show actual from the prio. years each month.

    I am attempting to have cells use data from a selective month from the year before so that I can show actual from the prio. year each month. I need to create a spreedsheet using the the Acutlas from the year-to-date and from last year-to-date, but need to report each month.

    Hi Tony,
    Answering your question would be easier given a screen shot of the source table and one of what you want the summary table to look like.
    Is the data you want for each month in a single cell o the source table, or does the summary table need to collect February's data (for example) from several cells and do some math with those numbers before presenting them on the summary table?
    Regards,
    Barry

  • Need Recommendation of Online Sources in Learning to Use the Relational DBs

    Please recommend some online sources in learning to use the relational databases; such as the ways relational databases are different from flat files, how to retrieve data from relational database tables. Thank you.

    Actually I figured the OP was looking for a source that would instruct one in building ones own database rather than using an existing one.
    Myself I would just buy a book (or read the one I already have.) I wouldn't expect to find to many sources like that online althoug one might find some college course materials for a class.

  • Recd following error when attempt to open ebook using ADE 4.0  : "Unable to Download. Error getting License. License Server Communication Problem: E_LIC_LICENSE_SIGN_ERROR" iMac 10.8.5  Chrome Version 37.0.2062.124

    recd following error when attempt to open ebook using ADE 4.0  : "Unable to Download. Error getting License. License Server Communication Problem: E_LIC_LICENSE_SIGN_ERROR" iMac 10.8.5  Chrome Version 37.0.2062.124
    chat with customer service at book company i purchased file:
    "Me: I installed the proper adobe software, adobe digital editions 3.0 (now have updated to 4.0) on my mac running os 10.85 however I am getting the following error code when i try to open the file:
    "Error getting License. License Server Communication Problem:
    E_LIC_LICENSE_SIGN_ERROR"
    Charles P.: Okay, what you need to do unfortunately, is contact Adobe at  http://www.adobe.com and they will need to get your license issue resolved.
    Charles P.: Is there anything else I can assist you with today?
    Me: title of error is    Unable to Download
    Me: i dont see how that would be an adobe problem?
    Charles P.: I understand, but it appears that the reason for the download issue is because of the license error the license is related to the Adobe Digital editions software. I understand how this could be confusing but it's due to the authorization of the ADE software. Adobe would need to correct your account issue with the license
    Me: ok but i thought this was a free license from adobe??!!  this is just a digital editions reader, right??
    Charles P.: That is correct it is a free license but your account has to be associated with one license and yes the Digital edition is a ebook reader that our ebooks use for you to view

    Well, just for the halibut I tried opening the book again today and , GLORY BE!,  it worked.
    Guess it may have taken overnight for Adobe to OK my license to their free ADE software. Also works now using Bluefire app as the reader on my android phone, although it was a pain
    to get the book file in the right file folder for bluefire to see it.
    I hope that time also heels the issue with all other Error Getting License users.
    panman

  • I am learning Italian using CD in iTunes. Is it possible to play a track at a slower speed so that I can catch what is being said?

    I am learning Italian using a CD in iTunes. Is it possible to play a track at a slower speed to hear better what is being said?

    Right, I understand those fundamentals.  We outsource a lot of out view creation and do not have permission to create views for Business reasons; these are beyond my control.  However, I can see the source code to many Views.  We have also
    been told that we should not use tables in our queries.  Therefore, I need to use existing Views.  Specifically, I would like to add an additional value to an IN() constraint.  This would change the constraint as showed below: 
    IN('A', 'B', 'C') ---> IN('A',
    'B', 'C', 'L')
    I am wondering if this change can be made when the view runs and only for this one report, with the change being made from the report.  This would be very easy if the constraint was removing a value.  Obviously I could change the constraint from
    IN('A', 'B', 'C') to IN('A','B') very easily with out modifying the View. This would be done by writing a query against the view and in the WHERE clause adding the new IN('A', 'B') statement.  However, I want to do the opposite and add a value...

  • Learning to use SPP

    Hi all, I have been working with and delivering training on SAP for 8 years now (out of 30+ years total as a trainer, training manager and consultant) but despite having used a variety of other tools and methods have never worked for a client with the productivity pak. Now I have been approached by one who does use it and wondered if there are any resources available to learn to use the pak.
    Thanks in advance for any help
    David

    Hi all, I have been working with and delivering training on SAP for 8 years now (out of 30+ years total as a trainer, training manager and consultant) but despite having used a variety of other tools and methods have never worked for a client with the productivity pak. Now I have been approached by one who does use it and wondered if there are any resources available to learn to use the pak.
    Thanks in advance for any help
    David

  • How can I learn to use my new Mac Air?

    How can I learn to use my new Mac (I am a long time user of Windows), without having to go to Apple Store. Ours is 50 mi. away. Is there such a remote service? (Apple's or otherwise)

    If you enjoy learning by reading, here's an excellent book in my opinion:
    Switching to the Mac: The Missing Manual, Mountain Lion Edition
    The author, David Pogue, is the New York Times technical writer.  He is, in my opinion, an excellent author.  This book is accurate and complete.
    I have no financial interest in the author, publisher, or Amazon (the link points there).  But I did use a previous version of this book when I started with Macs and am a satisfied customer.

  • Learning to use flash on a pre-built template.

    I am new to flash, and web design at that matter. I am
    learning to use flash using a pre-built template. Does anyone know
    how to get the buttons on the template to link to files?
    Thanks!

    Pallett,
    > I am new to flash, and web design at that matter. I am
    > learning to use flash using a pre-built template.
    Ouch! That may be problematic. Where di you get the
    pre-built
    template?
    > Does anyone know how to get the buttons on the
    > template to link to files? Thanks!
    The global getURL() function links to files (see details in
    the
    ActionScript 2.0 Language Reference) -- but honestly, since
    the specifics of
    your template are completely unknown to us, you may find a
    hard time getting
    answers until you provide more information.
    In general -- this is my opinion here, but I'll try to back
    it up -- 3rd
    party templates are not a good way to learn Flash. The reason
    for this is
    because template repositories, such as TemplateMonster.com,
    farm out their
    template designs. There are no centralized standards of
    quality in such
    templates: 10 to 1, you will not see consistent, clean FLAs
    -- on the
    inside, I mean. Designers from all over the world throw
    together as many
    templates as they possibly can (to make as much money as they
    possibly can,
    of course), with no real quality assurance, because none of
    them work under
    the same roof.
    I've seen countless posts to this forum along the lines of,
    "Hey, I just
    bought this template, but I can't make sense of it!" And
    that's because the
    FLA's layers won't be named, layer folders won't be used,
    Library assets
    won't be named (or will be named poorly), and very little (if
    anything) will
    be explained in regard to *how* the designer put together
    whatever's there.
    That said, I certainly don't mean to frighten you into
    thinking
    templates are a bad thing. Good and bad, in this context, are
    somewhat
    subjective. But I encourage you to look elsewhere for
    *learning* Flash.
    There are plenty of online tutorials and resources, and in
    fact, the
    included documentation in Flash (F1 key) is a great place to
    get your
    bearings.
    David
    stiller (at) quip (dot) net
    Dev essays:
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • I am attempting to update students' iPads using the Apple Configurator software. However, information for 3rd party apps, like Notability and Explain Everything, is being lost.

    I am attempting to update students' iPads using the Apple Configurator software. However, information for 3rd party apps, like Notability and Explain Everything, is being lost.

    Mike,
    If by "still nothing" you mean they are not showing up in the AU manager after reinstalling them....
    Im guessing the AU Cache itself is now corrupted so.....
    Quit LPX
    Open Finder
    Press the option key and click "Go" in Finder's menu and select "Library". (This is the User Library and not the System Library and is normally hidden which is why you have to hold down the option key when clicking on Go.... to reveal it in the drop down menu that will appear)
    Go to "Caches" dir and remove "AudioUnitCache" dir.
    Now Restart your Mac.....
    and then Launch LPX and let it rescan your plugins and see if that fixes things....
    Fingers crossed...
    Nigel

  • Links to learn and use Oracle Auditing

    Hi All,
    I wanna featured links to learn and use Oracle DB Auditing
    I knew recently that auditing has two types: Manual and By Oracle right? I want that one by Oracle
    Is this the right forum for this thread?
    Thank u
    Note: I'm using Oracle DB 10g R2

    Dev. Musbah wrote:
    Hi All,
    I wanna featured links to learn and use Oracle DB Auditing
    I knew recently that auditing has two types: Manual and By Oracle right? I want that one by Oracle
    Is this the right forum for this thread?
    Thank u
    Note: I'm using Oracle DB 10g R2Find this link to use Oracle Auditing:
    http://download.oracle.com/docs/cd/B19306_01/network.102/b14266/cfgaudit.htm

  • Need to learn to use perspective grid tool

    I've had zero experience with the perspective grid and have a project coming in involving up to 50 graphics which may require it - so I need to learn to use it fast (next 2-3 weeks).
    What is the best way of learning this? online tutorial? book? Instructional DVD? In person hands-on training facility?
    My company would support my training so all ideas are welcome - thanks!

    What is the best way of learning this? online tutorial? book? Instructional DVD? In person hands-on training facility?
    Why do you not even include in your list of options that which should be the default  first choice?: Read and work through the provided official documentation. It's right there, under the Help menu.
    The Perspective Grid is a simple feature, with only a few options. You just need to familiarize yourself with the interface for it. That's exactly what the provided documentation is supposed to do. It should not take anywhere near 2-3 weeks, assuming at least basic working familiarity with the rest of the program. If you lack that, your first course is again:  read (and work through) the manual.
    JET

  • I am new at Captivate 8 and I have created a learning project using an existing power point presentation.  I have added a button that will allow my students to view a video on the subject.  When I run the project in Preview the button works but when I pub

    I am new at Captivate 8 and I have created a learning project using an existing power point presentation.  I have added a button that will allow my students to view a video on the subject.  When I run the project in Preview the button works but when I publish it, it stops working.

    I added an Interactions button and in the Actions on Success I open an URL or file. I have placed the video on our web server.   In the URL I point to our web server "http://www.wmabhs.org/Media/Add Client 3rd Party Coverage.mp4".  If I run this from any browser it works.  So what do you think I have done wrong?

  • What is the best way to learn to use the gaming development software in creative cloud?

    What is the best way to learn to use the gaming development software in creative cloud?

    Ask in the forum(s) for the program(s) you are using
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Quick and easy way to learn to use Oracle Spatial?

    Could anyone recommend a quick and easy way to learn to use Oracle Spatial?

    Depends on your style.
    Reminds me of a story a contractor to an IT department I worked in once told me.
    He used to work in Silicon Valley in the '70s and told a story of a company that
    hired a particular programmer who was brilliant but unstable. They used to set
    up a room with a VT100 and a bottle of Tequila. The programmer would arrive
    and set to work. As the Tequila emptied it was replaced. At some point over
    the following days or weeks a scream would be heard from the room, followed
    by a crash as the VT100 went through the window and the programmer disappeared.
    They would replace the window, the VT100, the Tequila and wait till he came back
    from "walkabout".
    "Extreme Programming" '70s tyle!
    OH&S would never allow this nowadays! That, plus Prozac means these sorts
    of programmers are probably very rare!
    Cheers!
    S.

Maybe you are looking for

  • Ipod Touch Stops Syncing

    Okay so after making a backup and restoring my Ipod touch, I was working on getting the backup back into it. It goes on smoothly until it runs into one song and then stops completely, freezing Itunes and after a while my computer until the error that

  • Updating Service Product (PMSDO-MATNR)

    Any BAPI/FM/UE/BADI that updates the Service Product during Service Order Creation/Modification (IW31/32)? I tried this code: i_header-OBJECT_NO = 'OR000004000183'. i_header-material =  '020000000000000102'. APPEND i_header. i_headup-material = c_x.

  • Excel converts numeric values to date

    Hi, I have a JSP page which is sending data to excel. response.setContentType("application/vnd.ms-excel"); response.addHeader("Content-Disposition", "attachment;filename=\"a.xls\""); I am using codes above. But excel converts numeric values to date.

  • I have a big problem please help

    Hi... Im trying to log in to my MacBook laptop with a password...but the problem is that the letter r is being only capital...and the Shift button is writing also capital r...so as my password has the letter r in it then I cant log in to my laptop...

  • New to Guided Procedures

    Hi, I ma new to GP and trying to find the scope of GP in our business.I have a few queries 1) Should the initiation always start from GP runtime ? Like, cant I have an WD application (Time-Off Approval) on the portal, which employee's will use it to