Stuck with Labview?

So your stuck with Labview. Don't let that restrict your choice of DAQ
boards.
Amplicon provide PC based data acquisition boards with a range of software
support, including Labview drivers.
Take the ADLink DAQ2200 for example:
http://www.amplicon.co.uk/data/daq2200.html
Packed with drivers and like all Amplicon products, you'll recieve free
telephone techincal support.
http://www.amplicon.co.uk

Yes I was stuck.
Now I am infected, and glad of it.
Ben
Ben Rayner
I am currently active on.. MainStream Preppers
Rayner's Ridge is under construction

Similar Messages

  • Stuck with making my event structure examine if two arrays are equal

    Hi there, I'm new to labview. I'm trying to write an event structure; examining if one array equals another array. The program will carry on if they are equal, otherwise it will continue checking... Any help is appreciated.
    My program is attached.. It is eventually going to be a memory game when I get it working..
    Sequence 1, case structure 10 is were I'm stuck with the case structure.
    Thank you in advance
    Attachments:
    attempt 2.vi ‏18 KB

    Seems to me like you should implement a true State Machine.  This way you can repeat states and/or jump states as needed.
    State Machine
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Stuck with run mode

    Hi
    I am stuck with run mode on one of my VI (I can't edit it or even see the diagram). here's what I verified
    1. tools>option>miscellaneous> I uncheck "Open VIs in run mode"
    2. I hit Ctrl+M, it is still in run mode
    3. I close LabVIEW and reopen, it's still in run mode
    4. I check the VI file type, it's not a read only
    Do u have any idea about how I can go back to edit mode to modify the diagram? I'm using LabVIEW 7.1
    Thanks

    Without having the VI in front of me it is difficult to say exactly what settings you have turned on.
    I would suggest trying the following things to get your VI out of run mode.
    1) Ensure that "Open VIs in Run Mode" is turned off in Tools->Options->Miscellaneous
    2) Open the VI by dragging it into another block diagram and double clicking on it
    3) With the VI open hold down control and press the '.' key. This is the same as pressing the "Abort" button.
    4) Hold down control and press 'M' to switch out of run mode
    If you can reproduce the behavior in a VI which you are able to post on the forum, I am sure we will be able to figure out what steps are needed to edit the VI.
    Scott Yellig
    Applications Engineer
    National Instruments

  • Windows virtual machine with labview on a Mac

    I am about to buy a Mac laptop with virtualization software (either VMware or Parallels), then create a Windows 7 virtual machine and put Labview for Windows Professional on it.
    I searched the board and found some discussion of this configuration but it is several years old.
    I would just like to hear from people who have done this and learn from their experiences.  Are there any pitfalls, features that don't work, performance problems, setup difficulties, whatever.  Also, do you prefer VMware or Parallels. 
    One other thing:  I would like to create at least four virtual machines (Windows with Labview development, Windows without LV to test the applications in a non-labview environment, and similar for MacOS}.  Is this a reasonable thing to do?
    Regards,
    David

    Hi David,
    As indicated above I have been running a windows virtual machine using VMware on a 17 inch macbook pro for quite a while now.  I have not experienced significant problems.  Labview and labview generated apps work fine in the virtual environment.
    But would I do it again?  I think not.  The economics don't work.  You can buy a quite capable Windows laptop for less than $500.  The virtual machine alternative costs $200 for a copy of Windows, $80 for virtualization software (Parallels or VMware) plus extra memory on the Mac (I have 8 gb) plus a more powerful machine, etc.  I ended up paying over $3,000 for the Mac hardware and extra software.  The alternative would have been $1,500 for a 15 inch Mac plus $500 for a Windows laptop.
    Also, there is definitely a performance penalty.  Virtualization is not free.  Start up and shutdown times for Windows are more than twice as long under VMware than with a cheap HP laptop.
    It is nice having all my files (Mac and Windows) on the same machine but I could have easily networked the Mac and Windows and had effectively the same result.  Expected benefits, such as a single backup disk for both operating systems didn't work out.  Apple's time machine software views the entire Windows environment as a single lump, so I am still stuck with two backup drives.
    So the good news is that it works.  The bad news is that the costs (in my opinion) exceed the benefits.
    David'

  • Sending internet E-Mail with LabVIEW?

    Hi folks,
    I'm stuck with a task that obviously wasn't foreseen when NI created the
    internet toolkit for LabVIEW - I want to send E-Mail via SMTP, not only
    inside our company's mail system but also to recipients with mail addresses
    from other (internet) domains.
    Our internet mail server (like most others, too) requires an
    authentification before it allows to send mail, and since SMTP does not have
    any authentification mechanisms it uses the poular "MAIL after POP"
    proceeding, that is: You have to look after incoming mails first with POP
    (post office protocoll), which is using a login name and password, and
    afterwards your machine is allowed to send internet mail via SMTP (simple
    mail transport protocoll) for several
    minutes.
    My problem is: The internet toolkit does not offer any POP functions at all,
    so sending SMTP mail to a domain different from our own one does not work!
    Does anyone know where to go from here? Has any helpful soul ever
    implemented POP functions with LabVIEW?!?
    Many thanx,
    Hans-Jürgen Philippi

    In info-labview group Jack Hamilton mentioned that he has done that and also
    offered to share it, so you could email him for more assistance, his email
    is [email protected]
    Also if you are on MS machine, then you can use Outlook to send mail using
    ActiveX, it will use your default mail account, where at least in my case I
    have already specified SMTP username and password.
    Also you could find SMTP spec and just use that since SMTP is a plain text
    protocol then it should not be too hard.
    Try telneting to some SMTP server, type hello and you will see that response
    is plain text.
    "Hans-Jürgen Philippi" wrote in message
    news:8i7ni8$475lf$[email protected]..
    > Hi folks,
    >
    > I'm stuck with a task that obviously wasn't foreseen when NI created the
    >
    internet toolkit for LabVIEW - I want to send E-Mail via SMTP, not only
    > inside our company's mail system but also to recipients with mail
    addresses
    > from other (internet) domains.
    >
    > Our internet mail server (like most others, too) requires an
    > authentification before it allows to send mail, and since SMTP does not
    have
    > any authentification mechanisms it uses the poular "MAIL after POP"
    > proceeding, that is: You have to look after incoming mails first with POP
    > (post office protocoll), which is using a login name and password, and
    > afterwards your machine is allowed to send internet mail via SMTP (simple
    > mail transport protocoll) for several minutes.
    > My problem is: The internet toolkit does not offer any POP functions at
    all,
    > so sending SMTP mail to a domain different from our own one does not work!
    >
    > Does anyone know where to go from here? Has any helpful soul ever
    > implemented POP functions with LabVIEW?!?
    >
    > Many thanx,
    > Hans-Jürgen Philippi
    >
    >
    -----= Poste
    d via Newsfeeds.Com, Uncensored Usenet News =-----
    http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
    -----== Over 80,000 Newsgroups - 16 Different Servers! =-----

  • Open and close multisim contact with LabVIEW

    Can I open and close multisim contact with labview and read the receptor estatus (p.e. lamp)?
    Thanks.
    Attachments:
    Dibujo.JPG ‏13 KB

    Hi Guddan,
    I created a RFC having a query which is taking a long time to execute. So i want to close RFC connection with portals which is via java connector(JCO) before that query and open the connction again after that query.
    I guess i will need to understand your requirement a little more in detail, as i understand you have an RFC which has a query within to fetch some data and is taking a long time to do so. In the meantime you don't want to keep the connection open?
    My question would be, Is the role of this RFC to only execute the query and fetch the data or does it do something else?
    If it does other things and these are independent of the query execution, then you can span a parallel call within the RFC to execute the query and in the meantime the RFC does the other things (or vice versa) hence reducing the overall time taken.
    If the sole purpose of this RFC is to execute the query, then you will not be able(i mean to say there is no simple and direct way of doing this) to close the connection after the Query is started and re-establish the connection after its execution, for a simple reason that - how will you know if the query has completed it's execution, so that you can establish the connection back.
    Alternate solutions, make this a two way asynchronous call, 1) You invoke the RFC asynchronously and close the connection, the RFC in turn will execute the query and transfer the data to JCO via another RFC call.
    If this needs to be a synchronous call, then you will need to optimize the query to its best.
    Regards,
    Chen

  • Lost ActiveX connection with LabVIEW server

    I have called LabVIEW in TestStand and tried to execute the test cases .
    While executing I got the following error:  ( Lost ActiveX connection with LabVIEW server.
    The LabVIEW adapter will try to reconnect on the next execution attempt.-18001; An error occurred accessing the LabVIEW ActiveX automation server.).

    Same error.  Is anyone from NI going to bother commenting on this?  It's been >8 months...

  • I followed all the directions to get Norton 360 to work with Firefox 8, but nothing works. I love Firefox, but if my Norton 360 won't work with it I'll be stuck with IE, which I do not like. Please Help Me!

    I followed all the directions to get Firefox 8 to work with my Norton 360, but nothing has worked. Is there anything else I can do? I didn't know there was an issue when I first upgraded to Firefox 8 so didn't choose the Norton plug ins immediately so I uninstalled Firefox hoping to be able to do it correctly when I Downloaded it again. Unfortunately it didn't ask me any thing regarding Norton so I went to Plug ins as directed to Enable Norton 360's plug ins, but none were listed.
    What can I do now? I LOVE Firefox! If we can't make it work I'll be stuck with Internet Explorer which I do not care for at all!
    I need to have Norton Security to protect my computer. Please help me find a solution to this problem ASAP.
    Thank you,
    Susan L Woods
    [email protected]

    Hi Susie, I use Norton 360 and have the latest Firefox 8 installed is working fine for me. Firefox 8 support for [http://community.norton.com/t5/Norton-360/Firefox-8-Support-for-Norton-Toolbar/td-p/581640 Norton Toolbar] was released on Nov 8th. Install the appropriate add-ons based on the version of Norton 360 you're using (see official Norton link above). Hope this helps.

  • My iphone5s was accidentally disconnected while updating OS8.2 in my MacBook Pro and now it's stuck with an apple logo on its screen and won't turn on or off. What should I do?

    My iphone5 was accidentally disconnected while updating OS8.2 in my MacBook Pro and now it's stuck with an apple logo on its screen and won't turn on or off. What should I do?

    Connect to iTunes and restore. If you have difficulty, you may have to put the device into Recovery Mode. See the instructions in this support document. If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support

  • How can I create a scene and move 3D models in INSIGHT with Labview?

    Hi!
    I need some help in doing a LabView application. What i have to do is controlling a 3D model represented in Insight with Labview. Something similar like the six-axis-robot example. I follow the insight configuration wizard, but nothing moves. Comparing the ".cis" files in my program and the one from the six-axis-robot, i found that in the six-axis-robot file contains something called localsystem and the one made by me, doesn't. Can be this the problem? How can I make it work? I would need some kind of step-by-step response, because i'am a beginner with Insight and 3D models. Thanks in advance!
    Regards!
    Juan

    Thanks for the advice!
    I'm actually finding the next problem. Although in my VRML file the objects are defined separately in a jerarchy tree, I can't move(rotate, translate) each object individually. I have noticed that when i define a new local system and asign it the points of the object i want move in the way you explain (right click, and then dragging the points to the new local axis), the movement of this object is dependent of the other local systems i have defined for other objects , specially if the slave  nodes of the .cis file has a lower numeration than the object i want to move. The fact is, the movements assigned , for example to the nodes 1 to 100, will affect to the rest of the nodes if i also define for the rest of the nodes other movements. How can i solve this? I send you my .cis file, just in case my explanation is not enough clear. In this file you can see that movements assigned to nodes 1 to 4078, will also affect to nodes 4079 to 7168, and what i would like to do is define a movement for each obeject independently.
    Thanks again!
    Attachments:
    ring.zip ‏2 KB

  • HT1212 My ipad mini has been crashing a lot recently so I started a system reset. However, it's now stuck with the progress bar less than a quarter gone: this has been the case for several days now. I have tried resetting from itunes but it needs the pass

    Now it's stuck with the progress bar less than a quarter full. I have also tried resetting through itunes which works right up to the point where itunes states that it needs the passcode to be inputted into the ipad to connect to it. At which point it then sticks at the same progress bar point. HELP!! please, this ipad is really important to my work.

    Well the term "hotlined" I have never heard before. In any case many states (like NY) just passed regulatory powers to the State Public Service Commission of which it may be called something different in your state. You could file a complaint with them. Or file a complaint with your state attorney generals office, they also take on wireless providers.
    The problem here is the staff you speak to are poorly trained, in days gone by it took one call to them and they pulled up your account and see the error and had the authority to remove any errors. They did not remove legitimate account actions, but used their heads instead of putting a customer off or worse lying to the customer.
    Its a shame you have to go through what you going through.
    Good Luck

  • Excel with Labview 6?

    I'm trying to get Excel '97 to work with Labview 6.02, but I'm always receiving error message: -2147319784: "old format or invalid type library". I modified windows registry as told in LV knowledgebase. After that I could see Excel components in ActiveX pull down menus. I have tried to run demos such as "Open Excel And Make visible.vi" but they always output the error message. I have tried this with both Windows 2000 and NT. Other programmes, for instance MS Access, seem to work fine. What is the catch?

    Anders,
    You have run into a special case of the problem that actually has a work around for it. However, you will have to contact LabVIEW technical support to obtain the temporary fix since they need to keep track of all the people with this special case.

  • I am using report generation toolkit 1.1 with Labview 7.0 and Office 2003 profession​al. The create new report VI opens Excel but throws error (-21471672​62- from automation open VI) when I try to open MS word. please help...

    I am using report generation toolkit 1.1 with Labview 7.0 and Office 2003 professional. The create new report VI opens Excel but throws error (-2147167262- from automation open VI) when I try to open MS word. please help...

    Hi Leo22,
    Does this error occur if you use any of the example programs that come shipped with LabVIEW? I would try opening one of the examples that write data to Word and see if those give you an error. Also, have you tried just putting down a New Report.VI and change the report type to Word? If this simple vi (that's all you need to open Word) breaks, I would check to see if there are any instances of Word still open. Check the task manager to see if any word processes are still open. There should not be a problem accessing Word 2003 from LabVIEW 7.0. If neither of these solutions work, please give some more detail about your application and we can research further. Thanks!
    Jeremy L.
    National Instruments
    Jeremy L.
    National Instruments

  • Calling a VI which uses "system exec.vi" with LabVIEW run-time engine as adapter

    Hi,
    My TestStand sequence calls a VI which includes a call to "system exec.vi". When I try to load it in TestStand and if LabVIEW adapter is set to run-time engine, I get an error message "Unable to load Vi...". If I switch the adapter to "Development system", then it works fine.
    Is there any way to use "system exec.vi" in a VI which is called in TestStand with LabVIEW run-time ?
    Thanks,
    Alex
    Solved!
    Go to Solution.

    Hi Alex,
    In you case, you are getting a -18002 error.
    The reason is explained in the following link:
    -18002 Errors in TestStand
    http://digital.ni.com/public.nsf/allkb/D82FEAF0B4BA293A862575710053E252?OpenDocument
    Please have a look at the 2nd reason. This is your case.
    Hope it helps,
    Regrads
    Julien De Freitas / Applications Engineer / Certified LabVIEW Developer (CLD)
    National Instruments Switzerland

  • HT204120 My iPhone 5s is stuck with 3948 photos (shown on the iTunes storage bar) on and I can not find a way to delete them all! It's very annoying as it takes up 6.54 GB of space and leaves me no room to add films, music...etc on to it. Please help me!!

    My iPhone 5s (16GB) is stuck with 3948 photos (shown on the iTunes storage bar) on and I can not find a way to delete them all! It's very annoying as it takes up 6.54 GB of space and leaves me no room to add films, music...etc on to it. Please help me!!! I have already tried the numerous articles Apple have sent my way and I am still having no luck.I'd be eternally grateful if anyone could find a solution for me as this has been a problem for almost a year. Thank you.

    If they were put there via iTunes sync process, then simply untick the Music box before syncing again.

Maybe you are looking for