Looking for a company to write Labview compatible software

Extech Instruments is a manufacturer of hand held test instruments (www.extech.com) . Along with our proprietary products we also import and private label a number of instruments from the far east. Many of these instruments have custom RS232 software available that allow them to communicate with a Windows XP compatible PC via the serial port.
We are looking at being able to offer these instruments with LabView compatible software/drivers? that would allow our users to integrate the instruments into their data acquisition systems.
We are looking for a company that would be able to take the existing instrument and software and do the programming so that we can offer a finished product with a LabView Compatib
le �label� on it.
If you know of such a company please let me know.
Thanks.

Hi Scott,
I am the National Manager of Neo Vista Systems Integrators Pty Ltd, a National Instruments Alliance Member. We have extensive experience in providing "LabVIEW compatible" drivers for several companies in the same position as yours - developing a package that your customers can use to communicate with custom hardware, and have a great deal of experience with liasing with National Instruments in the creation of fully compatible code and licensing. All of the technical specialists that work on driver development are National Instruments Certified LabVIEW Developers (see here for more information of the CLD qualification), so they know LabVIEW back-to-front, and as they use LabVIEW drivers themselves, they know what structures and functionality that your customers are after. I'd like to hear more about you and your application. You're welcome to email me at [email protected] � also, please feel free to browse our website, as it will give you a better understanding of our expertise, previous products, and corporate direction: www.nvsi.com.au. If you'd like, I'd be happy to provide you with example code and documentation to demonstrate our skills in driver production.
Looking forward to hearing from you,
Christopher
PS: Several US customers are particularly happy with the project developmental time zone difference between Australia and the US, as whilst we provide a project manager that can be contacted 24hrs, the code development is carried out while you sleep - therefore any changes you request at the close of business can often be delivered to you email inbox by the next morning.
Christopher G. Relf
Certified LabVIEW Developer
National Manager - Australia
Neo Vista System Integrators Pty Ltd
[email protected]
Phone: +61 2 9817 8813
Fax: +61 2 9879 4527
EULA
1) This is a private email, and although the views expressed within it may not be purely my own, unless specifically referenced I do not suggest they are necessarily associated with anyone else including, but not limited to, my employer(s).
2) This email has NOT been scanned for virii - attached file(s), if any, are provided as is. By copying, detaching and/or opening attached files, you agree to indemnify the sender of such responsibility.
3) Because e-mail can be altered electronically, the integrity of this communication cannot be guaranteed.
Copyright © 2004-2015 Christopher G. Relf. Some Rights Reserved. This posting is licensed under a Creative Commons Attribution 2.5 License.

Similar Messages

  • I'm looking for a capture device that is compatible with Adobe Flash Media Live Encoder. I bought elgato but it is not compatible. Anyone know?

    I'm looking for a capture device that is compatible with Adobe Flash Media Live Encoder. I bought elgato but it is not compatible. Anyone know?

    This is just a shot in the dark....
    Do you have all your devices hooked up (and on) when you launch FMLE?  For example -- your camera or digitizer?  When FMLE launches it will try to launch with the last known settings... including input devices.  If it can't find these devices (they're not hooked up and on) it can crash, although in most situations it will simply show a default screen with default settings.
    If you do have your equipment hooked up (and on) when you launch FMLE, try unplugging them and then launching FMLE so that it opens up in default configuration mode (no input devices selected; all default settings).  Then uncheck the "preview" boxes for both your input and output preview windows.  Close FMLE and then plug in your equipment (and turn it on) and relaunch FMLE.  I offer this suggestion as FMLE can sometimes act funny when the preview windows are open with certain types of input devices.  Don't worry -- you don't have to keep the preview windows off forever.  If you can get FMLE to successfully launch with the preview windows off, then you can set your settings however you like and save the profile.  Then quit and relaunch FMLE and then turn the preview windows back on and see if it works.  If it does, great.  Just be aware that making any settings changes while the preview windows are open could result in FMLE crashing.   Again -- this only happens with some capture devices, such as certain Dazzle capture boxes.
    If none of this works, you could always try to upgrade to FMLE 3.2 and see if that solves your problem.

  • Looking for a company that provides monthly IT related newsletters to end users

    We looking for a company that provides good quality content each month to end users, helpful tips, etc.
    I'm having a hard time finding one through search engines.
    Did find one  - http://www.itnewsforyou.com/
    No idea what their newsletters look like, etc..
    Would appreciate any referrals...
    This topic first appeared in the Spiceworks Community

    We looking for a company that provides good quality content each month to end users, helpful tips, etc.
    I'm having a hard time finding one through search engines.
    Did find one  - http://www.itnewsforyou.com/
    No idea what their newsletters look like, etc..
    Would appreciate any referrals...
    This topic first appeared in the Spiceworks Community

  • Re: Looking for a company that provides monthly IT related newsletters to end us

    Thanks Randy. Do they offer a service we can pay and have them send out the email to our customers?
    Looks like a bunch of good resources for us to create our own monthly, but we are short on time for that kind of newsletter creation each month.

    We looking for a company that provides good quality content each month to end users, helpful tips, etc.
    I'm having a hard time finding one through search engines.
    Did find one  - http://www.itnewsforyou.com/
    No idea what their newsletters look like, etc..
    Would appreciate any referrals...
    This topic first appeared in the Spiceworks Community

  • I am looking for a reasonably priced sports video analysis software?

    I am looking for a reasonably priced sports video analysis software? I need it to tag events during a sports game, then be able to recall the tags later.  There is software out there, but not a lot that are MAC compatable.

    There's no way to do those things on an iPad.  If you have already installed a new application on the iPad (Disk Drill) then your file has probably already been overwritten.  Sorry.

  • Looking for a way to write a BufferedImage to a file

    i am currently working with images and transforming them. the image is stored as a BufferedImage object and i was wondering if anybody knows how to write the image back as a new file after its been modified.
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.ImageIcon;
    import javax.swing.JSlider;
    import javax.swing.event.ChangeListener;
    import java.awt.Graphics;
    import java.awt.Image;
    import java.awt.BorderLayout;
    import java.awt.image.BufferedImage;
    public class ExampleFramework extends JPanel {
    private BufferedImage originalImage;
    private BufferedImage filteredImage;
    private JSlider slide = new JSlider(1, 50, 25);
    private int height, width;
    ExampleFramework(String titlebar) {
    createBufferedImages();
    setUpJFrame(titlebar);
    private void createBufferedImages() {
    Image image =
    new ImageIcon("test.jpg").getImage();
    height = image.getHeight(null);
    width = image.getWidth(null);
    originalImage =
    new BufferedImage(width, height,
    BufferedImage.TYPE_INT_RGB);
    filteredImage = new BufferedImage(width, height,
    BufferedImage.TYPE_INT_RGB);
    Graphics g = originalImage.createGraphics();
    g.drawImage(image, 0, 0, null);
    g.dispose();
    this class is not complete but it should give you an idea of the problem am having. there are 2 buffered images and all am looking for is a way to write the contents of the bufferedimage to a file

    First, I get rid of Image:
    private void createBufferedImages() {
        BufferedImage image = ImageIO.read(new File("test.jpg"));
        int targetType = BufferedImage.TYPE_INT_RGB;
        originalImage = convertType(image, targetType);
        filteredImage = new BufferedImage(image.getWidth(), image.getHeight(), targetType);
    static BufferedImage convertType(BufferedImage src, int targetType) {
        if (src.getType() == targetType)
            return src;
        BufferedImage tgt = new BufferedImage(src.getWidth(), src.getHeight(), targetType);
        Graphics2D g = tgt.creategraphics();
        g.drawRenderedImage(src, null);
        g.dispose();
        return tgt;
    }(I don't know how important type RGB is to you, so I put in a convert routine.
    If these images are primarily for viewing, I would make them compatible
    with the screen by using method createCompatibleImage.
    As for writing an image, it can be one line of code:
    imageIO.write(bufferedImage, "jpeg", file);See ImageIO[url].

  • Looking for help - Company is going to Mobile Asset Management service that does not support BB - especially BB 10.

    Hello,
    I am looking for ideas/help. I currently have a BB Z10 (10.1.0.2039) with Verizon Wireless.  The company has a BB Enterprise Server for older devices (I previously was on that).  I bought a Z10 several months ago and have been connecting to the corporate network through Lotus Traveler. They do not have and will not implement a BB 10 Enterprise Server. Some in IT informed that if the company used the BB software they could manage all devices..... not accepted.
    All my contacts, calendar, and company email is funneled to the BB Hub.....
    So my company is implementing a Mobile Asset Management Service that I have to sign up for (Airwatch?).  They only support Android and IPhone.
    Will future versions of the BB OS support Android Apps.... Soon (I have less than 2 weeks)
    I have read where it is possible to put the device in development mode to run Android Apps.  I don't know if that will work with this and have no idea how stable the phone is in that mode. I travel internationally so I don't know how a development mode would work overseas. Any thoughts?
    I like my Z10 but will need to switch to keep functionality if I can't find a work around 
    Any assistance ????
    Thanks for any help.

    Hi and Welcome to the Community!
    BB10 devices have the ability to run .apk apps via special methods. Development Mode is used only for installing the app...not for normal operation. So you install (side-load) the app in Development Mode, then go back to normal mode for normal operations.
    If a .bar file for the .apk app already exists somewhere, you can side load it to the BB10 device and see if it works or not. If there is not yet any .bar file, there is an app called SideSwype that can convert many .apk apps to .bar and install it to your device.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Looking for full time position using Labview and/or PLC's in Long Island NY area

    I have 13 years experience using Labview for user interface/daq applications.  I also have 20 years experience with Programmable Logic Controllers (PLC) programming for industrial machine controls.  My resume follows:
    Adam Wechsler
    111 Holbrook Rd.,Holbrook,NY 11741,(631) 981-1013 [email protected]
    Objective
    Labview programming, virtual instrumentation, industrial machine controls,
    automation, PLC, HMI, GUI, data acquisition
    Education:
    B.S. Mechanical Engineering 5/89
    Polytechnic University, Brooklyn, NY
    A.S. Engineering Science 5/86
    Suffolk Community College, Selden, NY
    (GPA 4.0 Dean's List Spring 1986)
    Experience:
    Controls Engineer 5/1994-3/2009
    Vacuum Instrument Corp., Ronkonkoma, NY
    *Program, troubleshoot, and upgrade automated Vacuum Chamber Industrial Leak Detection systems controlled by Allen Bradley PLCs in an OEM environment.
    *Debug equipment functions and programs prior to shipping, at customer's site, and by phone.
    *Integrate and install various types of peripheral equipment, barcode scanners and printers,
    *Design and develop Labview graphical user interfaces and HMI applications including recipe management and data collection for industrial machinery.
    *Write and review user manuals and installation instructions.
    Production Engineer 10/1989-5/1994
    Izumi Corporation, Yaphank, NY
    *Program, maintain, troubleshoot, and repair PLC controlled hydraulic, pneumatic, and control systems for automation in a hands-on environment.
    *Improve design for manufacturability of new products and prototypes to be urethane/injection molded.
    *Program, maintain, troubleshoot, and repair six axis hydraulic paint spraying robots.
    *Create interface between multiple PLC’s and central computer system.
    *Improved design and productivity of high volume, computer controlled, robotic molding machine by 150%.
    Consulting Projects:
    *Created Labview user interface components, and recipe management system for the testing of motion control servos.
    *Programmed Allen Bradley PLC machine logic for packaging machine for a food service supplier.
    *Created Labview to Allen Bradley PLC setpoint and monitoring interface for electric motor-starter test stand.
    *Programmed Allen Bradley PLC and PanelView operator interface terminal for cosmetic packaging assembly machine.
    *Developed Labview application for Fourier and statistical analysis of myogram biomedical data for researching the efficacy of acupuncture treatment.
    Other:
    *Attended National Instruments Labview training courses, and regularly attend local Labview Users Group meetings as a long standing member.
    *Member IEEE
    *13 years experience with Labview
    *15 years experience with vacuum chamber, mass spectrometer, and related technologies
    *20 years experience with PLC's and automated systems
    *Attended Autocad training course.
    *Willing to travel

    Will also consider contract, part time, or consultant work.

  • Looking for some company for my KRK v8

    I have 2 KRK v8 series 2 and looking for another pair of monitors for reference. My options are:
    BM5A
    GENELEC 1030 (I THINK)
    GENELEC 8040A
    If you could afford any of these, which will you pick?
    ad2

    The Genelec 1032s are about $2500 each. They don't fit with the other two you list, so I assume that's a misprint.
    Is there a reason you've narrowed it down to those? The BM5a's are about $1K/pair and the 8040's are about $1K each. That's quite a difference.
    If you get a chance, listen to the Adam P11A and P22s as well. They're in that same $1K-$1.2K price range (each). The P22s are especially nice. If you can afford the P22s, you probably won't need a sub unless you have a good-sized room.
    I would also recommend the BM6 over the 5a's (but they're ~$1800/pair). More bass, more volume. The BM5s are fine for small rooms; definitely a step up from the A1 Actives. Don't forget to listen to the Adam A7s. They're in that $1K range for a pair as well.
    I'm not a Genelec fan myself, but a lot of people really like them.
    Uh...we need to get a Logic question in here....AFAIK, these are all compatible speakers with Logic Express and Pro. There...!
    Dual 2.5Ghz 2004; 2.5GB RAM   Mac OS X (10.4.8)  

  • Looking for great people who love LabVIEW

    JKI is looking for great people who are passionate
    about LabVIEW and its community, want to do great work, and are looking
    for an environment that shares their values. See here, to find out more about the job opening and what we're looking for in potential team members. See here, for more info about JKI and where we're going.
    Thank you,

    Jon chu wrote:
    I have LabVIEW project experience and I do love it. So I want to join JKI when I graduate in September 2007.
    Thank you.
    [email protected]
    Please check out our openings, here.  To apply, please email us at jobs (at) jameskring (dot) com,
    attaching examples of your LabVIEW work and a current resume in HTML,
    Word, Plain Text or PDF format. In
    the body of the email, explain why you would be a good fit for this job.

  • Looking for a Photo Album or Photo Management Software

    Does anyone know of any good software that I could use like a photo album, something like iView Media (which I have) but maybe a little more visually appealing. I'm not looking for anything to host pics online; I just want something that lets me break down my pictures by year...and then sub-folders for each year so I can have all different subjects. I haven't been able to find anything no matter how much I've googled...THANKS!!

    Medic2872P:
    Welcome to the Apple Discussions. As TD mentioned you can use iPhoto in the alias mode but you take on some additional responsibilities. When you delete a photo from the iPhoto library you do not delete it from the HD. That must be done manually from the Finder. It can be pretty easy to do that before deleting from iPhoto by Control-clicking on the thumbnail and selecting Show Original in the contextual menu. You'll be taken to the folder where the source file is located where you can delete it manually. Then delete it from iPhoto.
    Secondly, you won't be able to add photos to existing source folder and have them imported into iPhoto automatically. So it's best to put each new import in their own folder and import that way. Also you should not rename or move a source file once it's been imported into iPhoto.
    If you're interested in checking it out more thoroughly, read Tutorial No. 2.
    If do decide on converting to an alias based library and want to preserve your keywords from the library, Tutorial #1 would be of help. You can follow #1 and then move the photos from the Originals sub folders into your other folders in the Pictures folder and replace the old files with the keyworded files. Next remove the old Library folder to the desktop, create a new library and set iPhoto's Advanced preferences to not copy file when importing. Then import your "source" folder into the new library and you're back in business.
    But you should remember the caveats I've mentioned. If you're careful you can operate as you'd like.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    MBP 2.16Ghz; G5 Dual Core 2GHz, 2G RAM ea, 250G HD; G4 Dual 1Ghz, 1.5G RAM;   Mac OS X (10.4.9)   22" LCD, 710G FW HDs, Canon: SD700IS/i850/LIDE 50, Epson R200, 30G iPod, 2G Nano

  • Looking for revovery media including OS and added software for SR5010NX

    No recovery partitions on hard drive, so I am  NOT  looking for free solution, but I would like to obtain the OS,  Productivity sofware,  and components drivers. Thank you for time.
    Sincerely
    Gary Poe

    Here are the specs for your Compaq Presario SR5010NX Desktop Computer. Here is the HP Software and Driver Downloads page for your your computer. HP no longer maintains Recovery Discs for your computer. HP Recovery Discs can be ordered from third party vendor ComputerSurgeons.com . These discs will return your computer to a factory like state, including restoring the OS and recovery partitions, all factory installed software, and drivers.
    Please send KUDOS
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • Looking for a Class that provide Computer and Software installation information

    Hi there,
    when you open a computer configuration item in the console you can use the form the view all the installed software.
    I am now looking for a class which I can use to create a view that shows me a list of computers with the installed software. If there is no class how could I build one?
    Thanks,
    Gunter
    Gunter - www.server-log.com

    Hi Gunter,
    The software class is System.SoftwareItem.
    The device class is System.Device.
    The relationship is System.DeviceHasSoftwareItemInstalled.
    The management pack's name is System.Software.Library (System Software Library).
    Cheers,
    Marat
    Site: www.scutils.com  Twitter:
    LinkedIn:
    Graveyard:

  • Write to file??? looking for a solution to write file to the server

    Dear all,
    Since most browsers forbid all file access, so is there is another way to write file to server in applet??? or is there an alternative using combination of JSP??
    Thank you for your attention,
    Dan

    If you have access to the server you are writing the file to then you could have your applet collect information and send it to the server in a form. Then write a bean or other class that handles it and writes it to the server.

  • Looking for book "Internet Applications in LabVIEW"

    This book must either be a really good one or they didn't print very many.  I have been searching for months for an used copy, and the only one available is by some book seller who wants $200 for it.  I have been in contact with Jeffrey Travis (the author) through his site, and he does NOT plan on updating it to a newer edition.  In case anyone wants to know, a new 3rd edition of his "LabVIEW for Everyone" is coming out soon (which I have already pre-ordered on Amazon).  About a week ago I had actually ordered an used copy of "Internet Applications in LabVIEW" when another copy (much more reasonably priced) showed up on Amazon.  The description said the CD was missing, so I emailed Mr. Travis about buying a copy of the CD, and they didn't have a single copy of it.  Well, a few days later an Amazon email told me the order for the book got cancelled because it was out of stock.  Hmmm.  I guess I'll keep watching.  If you have a copy would you like to sell it?  Is there any book that anyone knows of that covers Internet/network-related info like this book?  I have Gary Johnson's "LabVIEW Graphical Programming" 3rd edition and also have the new edition of that book pre-ordered on Amazon.
    Thanks,
    Brad

    For $200 I'd be tempted to sell my copy. I even have the CD.
    It's too bad that Jeffrey Travis will not be updated the book but there's probably not a lot of money to be made. The book was excellent for it's day but an awful lot of the content has been made obsolete with the release of LabVIEW 6 and remote panels. I think the book was written for LabVIEW 5.0. About the only thing that I might refer to the book now would be some of the Internet Toolkit examples. If you have some specific questions about LabVIEW and Internet applications, go ahead and post them.

Maybe you are looking for

  • PDF/A vs. Form Fields (checkboxes, radiobuttons)

    I've question regarding the PDF/A specification and would appreciate some clarification. The specs says: "If an annotation dictionary contains the AP key, the appearance dictionary that it defines as its value shall contain only the N key, whose valu

  • Length of component (DC) name

    Hi, What is the allowed length of a component (DC) name? A DC Project name includes the following details: JDI track, SC, CompName, vendor name. While creating a DC project, if the name exceeds 8 char it shows a warning. What is allowed length here?

  • I get an error when transfering contacts from Sanyo Katana to HTC One by bluetooth

    The phones will connect and start the transfer. Then the HTC will get an error but flashes so quickly that I cannot see what the error is. The screen then goes to "Unexpected error-." and stops. Is this a problem with HTC or the old Katana? Does anyo

  • Adobe Reader X (10.1.2) MUI, deploy, user's are seeing a Language Prompt upon first run?

    I am trying to deploy Adobe Reader X (10.1.2) MUI to Windows 7 64 systems VIA SCCM and the user's are seeing a Language Prompt upon first run.  They can click cancel it will open fine and not prompt again.  I have used Adobe Customization Wizard X an

  • Output display issue in only a particular user account.

    Let me start off by noting that I recently switched to mac from windows. Last night I was browsing around the system just getting a feel for the environment when the color / display changed and looked something like a display one would see from booti