Can LabVIEW integrate other languages?

Hi, I was wondering if it would be possible to write some code in another language (say RobotC) and integrate it into LabVIEW.
I know it's possible with MATLAB using math box code, but I would like
to utilize the high speed port using LabVIEW which currently doesn't
support it.
RobotC on the other hand, does.
So can I somehow use LabVIEW to utilize the RobotC code so I can access the high speed port?
Alternatively, can a NXT support multiple languages simultaneously?
Cheers,
Rob

duplicate post -- continue here

Similar Messages

  • How can I typing other language in IMAC?

    Like i said
    how can i typing other language in my imac..?
    I want to type chinese...
    But my Imac was chose English..

    I want to type chinese...
    Go to system preferences/international/input menu and check the box for the kind of Chinese you want, plus the box for "show input menu in Finder". Then select your Chinese IM in the "flag" menu in the Finder. For info on how the use the various Chinese IM's go here:
    http://www.yale.edu/chinesemac/pages/input_methods.html#Apple
    Just ask if you have more questions.

  • Where can I download other language for N95? And h...

    Where can I download other language for N95? And how?
    Thanks

    You can't.
    Nokia care points can add languages for you.

  • Can I read other language webpages on iphone?

    Can I read other language webpages on iphone?
    Do I need to install other fonts to get it work?

    It works fine with Japanese webpages. But iphone doesn't support some other languages. Are there any way I can install it myself?
    At this time, no, there is no way you can get the iPhone to display languages which it does not yet support, which includes Arabic, Hebrew, Thai, Vietnamese, Devanagari, etc.
    If you would tell people exactly what language you are interested in, it would easier to help you.

  • Can I use other language to write messages?

    can you use other european language to write messages?

    If you are talking about typing messages, emails, notes, etc., go to Settings | General | Keyboard | International Keyboards | Add New Keyboard.  Add the keyboards for any languages listed that you may wish to use. When you are using the keyboard, a small globe will appear to the left of the space bar.  Each time you touch it, it will cycle to another of your chosen keyboards.

  • How can I download other language versions?

    Since I am working on a Chinese OS, the downloader automatically downloads a Chinese language version of Digital Edition without offering the user a choice. I prefer however to work with the English software, so how can I download an English language version???

    I guess that answers the question, though it is an answer neither the OP nor I were hoping for.  Oddly, I have 3 computers with non-English Windows XP as the OS and the one I installed first just happens to run Digital Editions in English.  I wonder if the key is that I had downloaded that first one before creating the Adobe account.
    Other s/w manufacturers let you choose a language version and Adobe appears to do the same, with the 'change country' thing at the top, but it doesn't allow one to change the s/w language.  Annoying.

  • How can I add other languages to my dictionary ?

    i have a french dictionary and i want to add english so that I will be able to seek words' definitions.

    OOpen dictionary.app in applications and go to its preferences and check the boxes for the dictionaries you want.

  • Large applications - Labview and other programming languages

    Hello Labview Users,
    as the forum saw this very interesting thread about large applications programmed in Labview
    (see: http://sine.ni.com/niforum/niforum?requireLogin=False&forumDU=http://forums.ni.com/ni/board/message?... ) I would like to ask the community about their experiences with Labview applications in combination with other programming languages.
    In advance: I have several years of experience in programming Labview applications starting from quick-and-dirty solutions which had to run within few hours and complex test solutions. I saw Labview growing and becoming better with the released versions and lot of things I missed in former times got implemented in the meantime. Actually I have to develop a complexe ATE solution with numerous equipment to control and numerous data to be captured and archived. Despite the Verison 8 I still feel still some drawbacks of the LV concept which let me hestitate to setup the solution completly in Labview:
    1) It is alway hard to re-use code of complex applications since it is not possible to do some kind of global search an replace of functions
    variables etc. It nearly impossible to re-use approved code structures (e.g a state machine) if the "inner part" is changing more the a little bit.
    2) If the application requires a certain flexibility (e.g. exchangeable test equipment of varying vendors) this is hard to implement since you have to define a lot of parameters through your hierarchy if you dont want use global variables which slow down your application and hide
    the code functionality.
    3) Despite modern PCs the look and feel of LV applications appears somewhat slow compared to other applications. For complex user interfaces the polling methode generates a lot of complex code. (I dont have expierence with the event-structure).
    Now my questions:
    Do you have experience of implemention of complex solutions dividingthe code modules using Labview and other languages? Which other
    languages did you use? Why did you use these languages (speed, flexibility of text based code, available library functions)? Did you found out this to improve your development time and code maintainibility?
    (I concider a solution where I do the single tests with Labview-VIs but delegate all the test sequencing and data collection stuff written in PERL which allows really very compact code)
    I'm curious what your experiences are.
    rainercats

    Given that you're asking these questions in a forum for LabVIEW users the opinions given are going to be somewhat slanted towards the general like of LabVIEW. I've been working with LabVIEW for a long time, ever since 2.something on a Mac. I've written numerous large-scale applications as well as "mundane" instrument drivers. As you've noted you're experienced with LabVIEW, so you know some of its strengths and weaknesses.
    To address your specific questions:
    (1) Yes, that has always been a limitation in LabVIEW, but I don't believe it is an overriding one to choose C over LabVIEW. Putnam provided one workaround for the search and replace of VIs. Once you've programmed in LabVIEW long enough you get used to doing it this way. Is it clumsy? Yes. As for the re-use of code structures, that's not entirely true. You can create a "template" VI (a regular VI, not a .vit) that contains the code you want to re-use and place in your palette with the "Merge VI" option set. That way you can select it from your functions palette, plop it down on your diagram, and you get the "template" VI's diagram placed right into your new VI.
    (2) This is not something that is specific to LabVIEW, as this exists with any programming language. It's not the language that limits you here, it's how you've designed your code. In a language like C++ you would go with classes. You can do the same thing in LabVIEW. IVI is another option (though not preferred by me).
    (3) As Putnam mentioned, you should be using the event structure.
    Other thoughts:
    The biggest strength I see with LabVIEW is that each VI is a miniature program, which allows development and debugging of functions a snap. With a language like C you have to write another program to call that function in order to debug it. The biggest weakness? I would say user interface. Yes, even with the event structure. Don't get me wrong, the event structure has vastly improved the way user interfaces and event handling in general are done with LabVIEW, but it simply doesn't hold muster to a program written in C or VB. ActiveX anyone? LabVIEW still doesn't do ActiveX properly in terms of actually getting the controls to work. Programming ActiveX controls is just plain aggravating what with all the property nodes taking up so much diagram space.
    It certainly makes sense to use the best tools available to you to get the job done. In my recent projects I had to write software to run automated tests on some products my company made. The test modules were written in LabVIEW. The tests executive was a proprietary engine driven by a SQL Server database. I had to write a "wrapper" DLL that interfaced between the LabVIEW code and the executive since the executive hadn't been designed to call LabVIEW DLLs directly. This allowed us to use LabVIEW as the preferred language for developing the test modules and let the guys who were fiddling with the test executive do their bit. Of course, TestStand's premise is basically that.

  • Can i install other laguages on the iphone 4? and other Questions

    can i install other languages on iphone 4?
    Question about the shipping can i pay for faster shipping than 3 weeks if so how long will it take?
    in my country the post provide for me an address in the UK so i can't fill the shipping information properly i need help with that
    the address is
    Flight Logistics Group Ltd (where should i enter the company name?)
    Global Logistics Centre, Horton Road, Colnbrook (which is the street name and the city etc)
    SLOUGH( what's this?)
    SL3 0DL(is that a postcode?)
    United Kingdom

    thank you all for your kind replies i found the language and the iphone support it is this means that if i bought the iphone 4 all the languages will be available
    _Language support for English (U.S.), English (UK), French (France), German, Traditional Chinese, Simplified Chinese, Dutch, Italian, Spanish, Portuguese (Brazil), Portuguese (Portugal), Danish, Swedish, Finnish, Norwegian, Korean, Japanese, Russian, Polish, Turkish, Ukrainian, Hungarian, Arabic, Thai, Czech, Greek, Hebrew, Indonesian, Malay, Romanian, Slovak, Croatian, Catalan, and Vietnamese
    i heard that the iphone 4 in UK is sold without contract therefore it's unlock (sim-free) is not that true? i don't care much about the warranty all what i want is is it sim free or not?
    Message was edited by: qeez

  • Can I integrate my exe program into my LabView software?

    I developed a LabView software. Can I integrate my old xx.exe program into this LabView software? Any information on this point would be appreciated.
    Yun

    The way to do this is to redirect the text output from the program to a file, and then read the file into LV. I unfortunately don't have all the information with me, but do a search in the archives here. The way I learned about is was a discussion a couple years ago. You can also check online for information related to writing DOS batch files--which is how you actually run the DOS program--that should get you pointed in the right direction.
    So it is possible, messy, but possible.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How i can copy the script from one language to other language

    dear all,
    how can i copy script i.e i changed =in EN, but i want copy convert same effects in DE (from one language to other language but not all language)

    hi,
    From the SAP standard menu, choose SE71.
    On the Form Painter: Request screen:
    1)Enter the name of the form (ZORDER01) in the Form field.
    2)Enter DE in the Language field.
    3)Click created and press OK.
    4)From menu bar, choose form->copy from
    5)In the popup, give formname as (ZORDER01) and language as EN and click ok.
    6)Save the form and activate it.
    Regards,
    Sailaja.

  • How can I turn off other languages on my ipad running ios7?  It has Japanese or Chinese and the international keyboard is set to English.  Thank you.

    How can I turn off other languages on my ipad the next generation running ios7?  I have the international language set to English but it's showing a foreign language and sometimes it shows the foreign language with English.  Thank you.

    The complete backup and restore procedure is explained in the link above.
    If you don't want to do a restore, then your iPad may remain in the unstable state you have for the moment.
    You can change the country in the App Store. Have a look at the bottom of the App Store screen, you can change the country and also do the permanent change via Manage > Account.
    You can change the language in iTunes via General Preferences > under General tab.

  • Which team can help if the name of iView is not translated in other languag

    Hi All,
    Do you know which team can help if the name of iView is not translated in other language such as Portuguese?
    Thanks,
    Eda

    Above statement is correct: contact Portal Team to debug the iView/application.
    But you need to also check with your IT team - because it might be the case that the proper browser setting/network setting is figured to be EN (English - assuming).
    To test, you yourself can verify if it's the case, change the browser language to Portuguese and test the application. If it gets translated to Portuguese, then that means it's the browser/network/ISP setting/configuration.
    Regards,
    Jan

  • Link labview with other software which can do hydraulic simulation such as Nanas Fluent.

       Hi all:
              I currently want to exchange data between labview with Ansys fluent. That is: sending flow boundary condition and initial condition from labview to hydraulic simulation software (ansys fluent), and get simulation result back to labview from that software.
             I didn't find any modules online to link labview and fluent together. (There are others such as Labview Solidworks module)
             Is any one know how to link labview to any software which can do hydraulic simulation?
             Thank you very much. :-)
      -Bowen

    Do you know of any other programs that exchange data with Ansys?  If so how do they do it?  ActiveX is a common way for communicating between LabVIEW and other programs, is this an option?
    Justin Parker
    National Instruments
    Product Support Engineer

  • Why can't ibook give meaning of words in other languages like Arabic?

    Why can't ibook give meaning of words in other languages like Arabic?

    Nobody in these forums can tell you why some feature you want is not yet available, but you can ask for it here:
    http://www.apple.com/feedback/

Maybe you are looking for

  • Color2.java:89: missing method body, or declare abstract

    I am creating a color chooser applet but I keep receiving this error please help me to resolve this as my heads wrecked. Here is my code: import java.awt.*; import java.applet.*; import java.awt.event.*; public class Color2 extends Applet implements

  • NAC Profiler 2.18: Endpoint Profiles Missing

    This is a licensed Nac Profiler which has no canned Endpoint Profiles included. I go to Configuration--->Endpoint Profiles---> View/Edit Profile List The message I see is "No Profiles Found" Please clue me in on what I am missing. This is from the in

  • In Dialog server, what type of work process can I use.

    Dear all,   In Dialog server, what type of work process can I use, Can I use all types like dialog, BTC, U1 and U2 , spool, and enque regards, satish

  • How to maintain Multiple Substitution (2003) Infotype

    Folks, I need to maintain multiple substitution for an employee on same date. _Example:_     Employee planned working time ( Infotype 0007 ) - Shift A ( 6 AM to 2 PM )     But he has come in Substitution Shift B ( 2 PM to 10 PM ) instead of Shift A.

  • /var/lib/pacman/local empty

    Hello all, I've been using Arch for a few years, but I obviously haven't learn't anything in the process as I've done a very silly thing. I wanted to empty the pacman cache at /var/cache/pacman/pkg, but instead I did 'sudo rm -r /var/lib/pacman/local