How can i run the example programme without hardware

Hi,
     We are using NI-9233 for our Project. We would like to run the example programme, the NI-9233 getting started(host).vi ... I would like to ask that how can i run the Programme without Hardware.& How shall i get the input signal (simulating signal)?because we would like to test it while we are waiting for the hardware to be delivered . 
thanks
Best regards

As Mike indicated , " you can use MAX to simulate some (not all) DAQmx devices. There's a NI-USB-9233 device that you can probably use. Open MAX, then expand "My System", the expand "Devices and Interfaces", then right-click on "NI-DAQmx Devices" and select "Create New NI-DAQmx Device -> NI-DAQmx Simulated Device". Select the device from the list. See the online help for MAX for further help.
If you don't see "NI-DAQmx Devices" in MAX you need to install NI-DAQmx. You can download it from NI here. "
hi,
     the link you gave me to download is "NI-DAQmx Devices" ... There is no software to download for Labview 8.2.1. So should i use 8.1 or 8.3 instead of 8.2.1 ? If not, can you tell me the CD no. that includes the "NI-DAQmx Devices" folder of Labview 8.2.1 version? Because we can get the cd from our school's component store. Thank you so much.
Best Regards,
Su

Similar Messages

  • How can I run the examples?

    I need make any test about WebLogic, I have WebLogic Server in Solaris 2.6.
    Thanks in advancing.

    Well,
    I do not know about Solaris, but for the Windows you have a pritty good explanation
    HTML-files for each example.
    So if you want to run for example the WebServices-example, you will look for the
    HTML-File under C:\bea\samples\examples\webservices\rpc Folder.
    I guess it is very the same on Solaris
    good luck
    naz

  • I have an ipod touch 4s with iOS 6.1.6 and i can't download some apps because i need iOS 7 for example FACEBOOK how can i have the iOS 7 without buying another ipod or will the update of iOS 7 apeare sometime for my ipod touch 4s?

    I have an ipod touch 4s with iOS 6.1.6 and i can't download some apps because i need iOS 7 for example FACEBOOK how can i have the iOS 7 without buying another ipod or will the update of iOS 7 apeare sometime for my ipod touch 4s?

    See App Store: Install the latest compatible version of an app to get Facebook for iOS 6.

  • How can I run the report for different input values at the same time?

    Reports version: Report Builder 6.0.8.13.1
    Oracle version: Oracle8i Enterprise Edition Release 8.1.7.0.0
    I want to run the same report for different input parameter values and spool each o/p to different file and ftp to a server. For this, as a first step, I am spooling different input values in to a file, reading those values through a loop and calling the report for that input values. Each report run/execution is taking 15 minutes. Total report execution is taking approximately 4 hours (assuming 16 different input values) to complete. So I have to wait 4 hours to see ALL outputs.
    I would like to run the report parallel for ALL the input values and I should be able to see the ALL outputs with in 15 or 16 minutes.
    In my shell script, I added & symbol at the end of the report call to start/run the job in the background. Due to this the control passed to the next step after the report call. At this place I have an ftp command to send the output file to a different server and it is giving error some thing like “o/p file is not available/created yet". This is due to the fact that report writer is NOT yet completely started/initiated or it is NOT completed the spooling.
    How can I run the report at the same time for all the input values and save the time?
    Thanks in advance.
    Kishore.

    Increase the number of server engines running right now it seems there is only one engine running ,increase it to 4 or 6
    and then atleast 4 or 6 reports will run simultaneously.
    For FTPing the output add to your sript to check whether it is locked and if not then only try to ftp .
    Also for more better functionality read the document (chapter 15 ) for 10g reports for its new fuinctionality.
    http://download.oracle.com/docs/cd/B14099_17/bi.1012/b14048/toc.htm
    Thanks
    Subodh

  • I have 2 ipod touches. I backed up the new one with old's info. The old one will not unlock with the password I had wrote down and I tried my new ones password.  How can I reset the old ipod without affecting the new one and how can I unlock the old one?

    I have 2 ipod touches. I backed up the new one with old's info. The old one will not unlock with the password I had wrote down and I tried my new ones password.  How can I reset the old ipod without affecting the new one and how can I unlock the old one?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software

  • Help:How can I run the J2EE Client Application? Thanks

    Help:How can I run the J2EE Client Application that will access the remote J2EE1.4 application server which runs on another host computer?
    I have developped a stateles senterprise java bean name converter and deloyed it in the j2ee1.4 application server on the host machine A. The converterbean provides the remote home interface and remote interface. At the same time I have developped the j2ee application client named convertappclient. When I access the conveter bean at host computer A through the script 'appclient.bat' as 'appclient -client convertappclient.jar', the client can access the bean sucessfully. Now I want to access the bean through the script 'appclient.bat' at host computer B,what files should I copy from host computer A to host computer B;and what the command line should be like? Thanks!
    The following are the code of the enterprise java bean and it's home interface .
    The client code is also provided.
    The enterprise java bean:
    package converter;
    import java.rmi.RemoteException;
    import javax.ejb.SessionBean;
    import javax.ejb.SessionContext;
    import java.math.*;
    public class ConverterBean implements SessionBean {
    BigDecimal yenRate = new BigDecimal("121.6000");
    BigDecimal euroRate = new BigDecimal("0.0077");
    public ConverterBean() {
    public BigDecimal dollarToYen(BigDecimal dollars) {
    BigDecimal result = dollars.multiply(yenRate);
    return result.setScale(2, BigDecimal.ROUND_UP);
    public BigDecimal yenToEuro(BigDecimal yen) {
    BigDecimal result = yen.multiply(euroRate);
    return result.setScale(2, BigDecimal.ROUND_UP);
    public void ejbCreate() {
    public void ejbRemove() {
    public void ejbActivate() {
    public void ejbPassivate() {
    public void setSessionContext(SessionContext sc) {
    The bean's remote home interface :
    package converter;
    import java.rmi.RemoteException;
    import javax.ejb.CreateException;
    import javax.ejb.EJBHome;
    public interface ConverterHome extends EJBHome {
    Converter create() throws RemoteException, CreateException;
    The bean's remote interface:
    package converter;
    import javax.ejb.EJBObject;
    import java.rmi.RemoteException;
    import java.math.*;
    public interface Converter extends EJBObject {
    public BigDecimal dollarToYen(BigDecimal dollars) throws RemoteException;
    public BigDecimal yenToEuro(BigDecimal yen) throws RemoteException;
    The j2ee application client:
    import converter.Converter;
    import converter.ConverterHome;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.rmi.PortableRemoteObject;
    import java.math.BigDecimal;
    public class ConverterClient {
    public static void main(String[] args) {
    try {
    Context initial = new InitialContext();
    System.setProperty("java.naming.factory.initial","org.jnp.interfaces.NamingContextFactory");
                   System.setProperty("java.naming.provider.url","jnp://10.144.97.250:3700");
    Context myEnv = (Context) initial.lookup("java:comp/env");
    Object objref = myEnv.lookup("ejb/SimpleConverter");
    ConverterHome home =
    (ConverterHome) PortableRemoteObject.narrow(objref,
    ConverterHome.class);
    Converter currencyConverter = home.create();
    BigDecimal param = new BigDecimal("100.00");
    BigDecimal amount = currencyConverter.dollarToYen(param);
    System.out.println(amount);
    amount = currencyConverter.yenToEuro(param);
    System.out.println(amount);
    System.exit(0);
    } catch (Exception ex) {
    System.err.println("Caught an unexpected exception!");
    ex.printStackTrace();
    }

    Surprisingly I find an upsurge in the number of posts with this same problem. I recently found a post which gave a nice link for this. Follow the steps and it should help:
    http://docs.sun.com/source/819-0079/dgacc.html#wp1022105

  • When I import my Sony video, which is in m2ts format, the file size is a few times larger.  This affects the volume of clips for creating the blu-ray or DVD discs.  How can I squeeze the file size without sacrificing the quality of output?

    When I import my Sony video, which is in m2ts format, the file size is a few times larger.  This affects the volume of clips for creating the blu-ray or DVD discs.  How can I squeeze the file size without sacrificing the quality of output?  Is there any other ways of achieving this?

    wongrayd wrote:
    Thanks.  I do not have the experience on burning discs from iMovie for the movie after editing (ie for video discs players).  It seems that i cannot find the relevant command in the tool bar for this purpsoe.  Would you please show me the way?
    The command is gone because iDVD has been discontinued by Apple. After Apple discontinued iDVD they removed the iDVD burning link from iMovie. I still use iDVD sometimes, only because I have an old copy.
    wongrayd wrote:
    You have mentioned about Handbrake as a converter.  What is the RF no. (under Constant Quality) meant?  It seems that the smaller the no. is, the better quality will be.  What is the optimal no.? or should we use the Average Bitrate? Again, what is the best rate?  Furthermore, which format is more suitable or the best: H264 or mpeg 2/4?
    I don't know what RF means. When I have used HandBrake, I've used presets that apply to what I want to do, so I don't know the meaning of each individual setting. However, it appears that many of them are listed in the HandBrake User's Guide that is linked from the Help menu in the program:
    https://trac.handbrake.fr/wiki/HandBrakeGuide
    wongrayd wrote:
    For iMac, except iMovie, what other software is the best for the amateur?  I have read Photoshop.  Can this support m2ts files and user friendly?
    Photoshop is not amateur-level software, and although it can edit a video, it cannot burn a DVD. Unfortunately, because I still use iMovie, I haven't tried anything else. You might want to read the reviews of various DVD-burning applications in the Mac App Store.
    And maybe another forum member will jump in and help us here!

  • HT1414 how can I remove the restriction passcode without having to reset device

    how can I remove the restriction passcode without having to reset device

    Put in the restrictions passcode, and then Disable Restrictions.
    Otherwise, you can't.  That's the ENTIRE purpose of a passcode lock.

  • How can i run the java bean sample program download from OTN

    hello to all
    i have a p[roblem. i have downloaded the sample progam from oracle web site which is a java code that connect with the oracle and shows a form. how can i run the from.
    can any body help me pleaSEEE
    thanks
    kamran ahmed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi Darryl.Burke
    So your telling, we cannot run our Java Program when system shutdowns...In my application, when user has schedule for next days and he shutdown his PC. On the next day when System Started i should able to get back my schedule on the Specified time(I'm TimerTask class in Java)... How can i achieve this using Java? can u tell me clearly..

  • How can I keep the last word without devision?

    Hallo! By applying page brake if it is a word at the end which has a syllable division the division line disappears so that I have an orthographic error: e.g. if the last word is "marketing" and is being devided:
    Before: End of current page: marke-
    Start of next page: ting.
    After applying page brake:
    End of current page: marke
    Start of next page: ting.
    How can I keep the last word without devision?

    In the Hyphenation Options dialog, uncheck the option "Hyphenate across
    columns"

  • How can I run the "Find my Iphone" app in my Itunes?

    How can I run the "Find my Iphone" app in my Itunes?

    Find my iPhone App can only run in iPhone and not iTunes.  If you have activated iCloud and set Find my iPhone to ON, you can sign in to https://www.icloud.com to run Find My iPhone there.

  • How can I use the Creative Cloud without having a Credit Card? Why are there no other possibilities?

    How can I use the Creative Cloud without having a Credit Card? Why are there no other possibilities?

    Hi @DRB1961, 
    I do not think the Zeen will work if you no longer have the C510 printer. The printer is necessary to ensure the Zeen is up to date. The Zeen is simply not a standalone device, it is a component of the printer.   I can not say this with certainty that it will not work, so it is worth trying to reset the Zeen to finding out for sure.
    When you see this message, "must dock the Zeen to the printer to continue", can you access the settings using the 3rd icon above the touch screen? If so we can do a factory reset, if not there is no other way I can think of to bypass this message.
    I just tried a reset on a Zeen I have access to, after the initialization, it prompts me to attach the Zeen to the printer to continue with product setup. it appears my original speculation was correct. No, you can not use the Zeen without the printer.
    Clicking the thumbs up below helps show me that you are grateful of my efforts   If you have any additional questions, I am happy to help.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • How can i disable the internal speakers without voiding the warranty?

    The students here annoy other students trying to study, I have made an extension for the headphone so that it is mounted under the monitor, facing the front and hot glued the headphone jack to the back, but the students ripped out the extension and threw it away so that they could play very awful music and annoy everyone.
    How can I disable the internal speakers on our imacs without voiding warranty? There has to be a way!
    Thanks-

    Have you considered corporal punishment? One instructor I had in high school, when he had detention duty, played classical music an operas all during detention. He was quite "evil". He would have some slow "sleepy" music going for a bit, then it would throw in something to wake every one up like the 1812 Overture or something, and repeat this a few times...and have the music loud enough to prevent talking. Many detention-ees thought that was "cruel and unusual punishment." (LOL)
    But to your question. Since opening the case would normally void the warranty (unless you can find a empathetic Apple technician), what I would suggest is a "sleeve". Imagine some sheet metal and form it into a rectangular tube. The tube would closely follow the shape of the iMac covering all the cable ports. Then bolt the tube and iMac to the table. (Or at the very least, bolt the tube to the iMac.) Basically, make it so that there little room between the tube and iMac, that no one could access the ports without removing the tube. You'll also need to secure the cables to the tube so that no one can just pull out the cables, yet leave enough slack to allow for removal of the tube for maintenance. Even if the metal is not a full tube, but the Mac and metal is bolted to the table in such a way as to prevent access to the ports could be sufficient deterrent. If metal is not possible, then perhaps plastic or wood.
    I realize that is requires some work, and there is a drawback as pranksters could start dropping stuff inside the tube. Perhaps just have a clear plastic "wall" preventing all physical access to the Mac. Only a USB extension cable for the keyboard/mouse. Use Remote Disk sharing to mount CDs, if necessary.
    Some thoughts, anyway. Good luck!

  • My wife has new ipad. I have i-phone synch on a mac laptop. How can I synch the new ipad without synch my contact and other things, but only the music etc//

    My wife has a new I-pad2. i have I-phone synched on a mac laptop.
    How can she synch the ipad to the laptop i-tunes to synch music etc ??

    Configure in iTunes.
    Be forewarned that iCloud can throw a monkey wrench into this.  Post back if you have that situation.

  • HT1539 Some downloaded movies are in HD and won't play on my iPod Classic.  How can I get the SD version without having to buy another version?

    How can I get the SD version of HD movies that I already own and are downloaded on my computer.  These HD movies won't play on my iPod Classic.

    Just figured out how to get the SD version of HD movies to play on the iPod Classic.  In the iTunes Store, look at the purchased list and down at the bottom where it lists the Total: # Movies, to the right is a checkbox [ ] Download HD When Available.  If you uncheck the box, it allows you to get the SD version of those HD movies from the cloud.

Maybe you are looking for

  • Vista Help Needed

    All, I have a macbook pro that rocks! Unfortunately I have to also run windows using bootcamp for work purposes. I had originally loaded XP but ran into driver problems with the network card. I talked to another mac guy and he said he had Vista runni

  • Data flow not visible while creating remote cube.

    Hi SDN, I am working on a remote cube. I need to link the infosource to remote cube. I have  selected the source system and assigned. I have done,  like--Remote cube --> Context Menu --> Show Data flow , and I wanted to see the source system , Info s

  • Is it true that the Apple store will unlock any IPAD without checking?

    I left my IPAD on a plane. It was password locked. It was never returned. I bought a replacement, but was still worried about my data. Used find my IPAD, but it has never shown up. When buying my replacement the guy at the Apple store told me that if

  • Is there any good categorization/tagging software?

    I want to make a list of movies, tag them based on genre, and be able to search the tags (like in iTunes). I make a lot of lists, and being able to tag them all would help a lot in schoolwork and so on. Does anyone know of a good user-friendly progra

  • I can't get my photos from ipod to pc

    i can't get my photos from ipod to pc.how i can get this?