I cant find my GPIB device in the VISA resources list

Hi,
I am using Labview 8.5.1. I am trying to program my Agilent multimeter with Labview. I have downloaded the drivers for the model. HOwever, I dont see the device on the VISA resources list. All I see is COM, LPT1 and refresh. Is there a solution for this?
Regards,
Wiki

Hi r31415smith,
There maybe a little of confusion here but, I believe when communicating with a GPIB device you would want to use VISA commands and when you are looking to communicate over the serial port you use the VISA-Serial commands.  The Basic Serial Write and Read.vi is looking specifically for a serial port.  
If you downloaded the keithley drivers from here and installed them using the directions from here.  Then there should be Keithley examples installed on your computer.  If you open Labview 2010 and navigate to Help > Find Instrument Drivers.  A dialog will open up and show you the installed instruments.  Then, if you click on Keithley 24xx it will show you example files for communicating with your instrument.
I think that if the Basic Serial Read Write had worked in the 8.5 the example file may have been change to only work with a visa serial instead of general VISA.  
Hopefully this has helped you out and shed some light on what is going on. 
Regards,
Mike Altmann
LabVIEW Platform PSE
National Instruments

Similar Messages

  • I have installed Adobe Premiere Pro cc on my laptop, but I cant find a way to start the program. No Icon, and it is not showing up in the start meny. It is showing up in add/remove programs, but nt anywhere else.

    I have installed Adobe Premiere Pro cc on my laptop, but I cant find a way to start the program. No Icon, and it is not showing up in the start meny. It is showing up in add/remove programs, but nt anywhere else.

    If you are using a Mac, simply hit Command-Spacebar to bring up Spotlight Search.  Begin typing the name of the application and when you see what you are looking for, press enter.  You should get a hit by the second or third letter you type.  Great way to launch apps on computers that you are not familiar with.
    Windows 7 and 8 should have something similar.  I think you simply press the Windows key and begin typing.  Press enter when you see a match.
    Both Mac and Windows search tools can be customized to search for applications, files, emails and so forth.  For Windows, look for Taskbar and Start Menu Properties.  For Mac, go to Preferences Spotlight.  Turn off items you know you won't need to speed up searches.
    Make Windows 7 Start Menu Search Find Your Applications Faster

  • I am using I Photo 9.2.3 with OS 10.6.8 When I upgraded to current I photo some of my Iphoto books i put together disappeared.  Cant find them anywhere, including in the time machine...I photo cant open older files...How can a find  th book entitled "Mom"

    I am using I Photo 9.2.3 with OS 10.6.8 When I upgraded to current I photo some of my Iphoto books i put together disappeared.  Cant find them anywhere, including in the time machine...I photo cant open older files...How can a find  the book entitled "Mom"  ?  Does Apple keep ordered books on file?

    Apple keeps books for a short time (used to be 40 days. I've not seen a recent time frame)
    What version did you have?
    Books do nor exist except in the iPhoto database so you can not "find" a book vista TM. You restore a previous library (be sure NOT to overwrite your current library) and switch to it
    LN

  • I cant find my favourite app in the Appstore . Its The new TubeBox . Where is ? Its deleted? Why?

    I cant find my favourite app in the Appstore . Its The new TubeBox . Where is ? Its deleted? Why? Sorry my bad English

    Most likely, is no longer available from the iTunes store.

  • I cant find my Port mapping in the settings on my Time capsule.

    I cant find my Port mapping in the settings on my Time capsule. i have tried to look under advanced where it should be but it aint there. any help would be lovely. Thanks.

    If the TC is bridged there is no port forwarding.

  • Hi, I have the new mac, and I cant find how to download all the audiobooks I've purchased, I've gone to purchased, but they are no where to be seen,m can anyone help. Robert

    Hi, I have the new mac, and I cant find how to download all the audiobooks I've purchased? I've gone to purchased, but they are no where to be seen,m can anyone help. Robert

    You cannot redownload audiobooks at all.  The audiobook industry does not allow this.
    As always have been the case, you should copy everything from your old computer, or your backup copy of your old computer, to your new one.

  • HT201210 cant find my camera app after the ios 7 update and no airdrop

    cant find my camera app after the ios 7 update and no airdrop app

    No Airdrop for iPhone 4S. And the Camera should be the same place it was before. Did you try searching Spotlight for it?

  • The specified Resource List is invalid while adding memeber to resource lst

    HI team,
    I am trying add a item to a already exist resource list in Oracle Projects by Using an API with below code but i ma getting an error Single Planning Resource failed!.
    Error: The specified Resource List is invalid.
    Please help me in resolving in this issue.
    CODE:
    DECLARE
    l_return_status VARCHAR2(2000);
    l_msg_count NUMBER;
    l_msg_data VARCHAR2(2000);
    l_resource_list_member_id NUMBER;
    p_chr_temp_str VARCHAR2(512);
    l_chr_error_message VARCHAR2(2000);
    l_list VARCHAR2 (240 Byte) :='AS DEFAULT PRL UKH'; -- Taken from select name from pa_resource_lists
    BEGIN
    FND_GLOBAL.APPS_INITIALIZE(120345,51072,275,0,114);
    PA_RESOURCE_PUB.ADD_RESOURCE_LIST_MEMBER(
    p_commit => FND_API.G_FALSE,
    p_init_msg_list => FND_API.G_FALSE,
    p_api_version_number => 1.0,
    p_resource_list_name =>l_list,
    p_resource_list_id =>1061, -- Taken from select reource_list_id from pa_resource_lists
    p_resource_group_alias =>null,
    p_resource_group_name =>null, --
    p_resource_type_code =>NULL,--'ORGANIZATION',
    p_resource_attr_value =>'ORGANIZATION',
    p_resource_alias =>'TEST12345', -- Alias Name
    p_sort_order => PA_INTERFACE_UTILS_PUB.G_PA_MISS_NUM,
    p_enabled_flag => PA_INTERFACE_UTILS_PUB.G_PA_MISS_CHAR,
    p_resource_list_member_id => l_resource_list_member_id,
    p_msg_count => l_msg_count,
    p_msg_data => l_msg_data,
    p_return_status => l_return_status );
    dbms_output.put_line(SubStr('p_return_status = '||l_return_status,1,255));
    dbms_output.put_line('p_msg_count = '||TO_CHAR(l_msg_count));
    dbms_output.put_line(SubStr('p_msg_data = '||l_msg_data,1,255));
    dbms_output.put_line(SubStr('l_resource_list_member_id = '||l_resource_list_member_id,1,255));
    IF (l_return_status != Fnd_Api.G_RET_STS_SUCCESS) THEN
    dbms_output.put_line('Single Planning Resource failed!.');
    IF (l_msg_count > 0) THEN
    p_chr_temp_str := SUBSTR(Fnd_Msg_Pub.get(Fnd_Msg_Pub.G_FIRST, Fnd_Api.G_FALSE),1,512);
    FOR I IN 1..(l_msg_count -1) LOOP
    p_chr_temp_str := SUBSTR(Fnd_Msg_Pub.get(Fnd_Msg_Pub.G_NEXT, Fnd_Api.G_FALSE),1,512);
    END LOOP;
    dbms_output.put_line('Error: '||p_chr_temp_str);
    END IF;
    END IF;
    END;
    Thanksin Advance,
    Regards,

    You can do it one of two ways:
    1. Change the rule of the top level to deny everything.
    or
    2. Add a rule below your "map C to Z" to deny everything.
    The way it works is that when SGD finds a local drive, it'll try find a matching rule. If it doesn't find it, it'll go up the datastore structure and check for rules. And the first rule that applies, it'll use that rule. So, in your case, when SGD sees drive A (for example), it looks at the rule of the person (or profile) object and it does not find a matching rule since you only have one rule (map C to Z), so it goes up the datastore structure, and try finding a matching rule. Since you have no other rules in between, it goes all the way to the top and try to map drive A to "U" (default first drive letter).
    Hope this helps.

  • How do I get the VISA resource drop down menu to be auto populated in my stand alone application (exe file)?

    Hi all,
    Here's a hopefully simple question.
    I am building an application (i.e. an exe file) from a simple program which use VISA to read and write to a RS-232 com port. When I run it before building the application everything works fine and the VISA resource control, which is a drop down menu, is automatically populated with available com ports. When I run the application on a computer without LabVIEW installed nothing appears in this window. I have made an installer which includes NI LabVIEW Rutime Engine 8.5, NI Measurement & Automation Explorer 4.3 and NI-DAQmx 8.6.1. Is there anything else I need to include? Any specific settings I need to do when I build the exe-file?
    I use LabVIEW 8.5.
    Thank you.
    Solved!
    Go to Solution.

    DAQmx is only for NI DAQ cards so I'm not sure why you installed that. The driver for VISA applications is NI-VISA (surprise!)
    Add the NI-VISA run-time to your installer.

  • Cant Find After effects App On The app list in Creative Cloud

    I Cant find the after effects app on creative cloud when i go to app list.

    lamyhd wrote:
    I Dont really understand stuff in computers, i dont know how to check my system and i dont know how to check what after effects need ,
    If this is the case, I'm not sure After Effects is ideal software for you to use. Working with a professional video application will require you to have some technical knowledge.
    That being said, here are the system requirements for After Effects.

  • Cant find external AV device

    I am new to both the Mac and Final Cut Express. I have a Sony FX7 HD Camcorder. When I start up Final Cut Express, I get a message that it cannot find my external device. I have not been able to import or capture any footage to work with. I can capture footage from the camcorder to iMovie. Is there some configuration setting that I need to modify?

    Hello, and welcome to the Final Cut Express forum!
    You are getting this message for one or more reasons. You either 1) do not have your camcorder connected and turned on when you start FCE and/or 2) your FCE Easy Setup does not match your camera, and/or 3) you have other FireWire devices connected to your Mac at the same time as your camcorder.
    The FX7 is an HDV/DV camcorder, so 1) it needs to be connected via FireWire and 2) in FCE you should be using one of the HDV Apple Intermediate Codec easy setups, which one depends on how you shot your video in the camcorder. Of course, if you shot DV video then you need to select an appropriate DV easy setup.
    To check or change your Easy Setup, do +Final Cut Express > Easy Setup > Format = All Formats > Use = select the appropriate Easy Setup for your camcorder.+

  • The internet pages don't display properly I'm using osx10.3.3, yahoo for example asks me to update, but I cant find out how to as the apple store just keeps sending back to the same page with no down load option...do i need to up date or is it just my mac

    The internet pages don't display properly I'm using osx10.3.3, yahoo for example asks me to update, but I cant find out how, as the apple store just keeps sending back to the same page with no down load option...do i need to up date or is it just my mac

    What Mac model do you have? You might be able to upgrade the OS to Tiger 10.4 or Leopard 10.5.
    Even browsers for Tiger 10.4 will get the update message.
    You could try a newer browser than Safari, which is obsolete, by downloading Firefox v2.0.0.20 at http://www.oldapps.com/mac/firefox.php
     Cheers, Tom

  • Using version 4.0.1 and cant find option 'Organize Bookmarks' on the drop-down menu for bookmarks.

    I'm using version 4.0.1 and can't find the option to 'Organize Bookmarks' on the drop-down list from the Bookmarks Menu.
    I need this option to add my bookmarks to the Gemsta webpage.

    "Bookmarks > Organize Bookmarks" has been renamed to "Show All Bookmarks" in Firefox 4.
    * https://support.mozilla.com/kb/how-do-i-use-bookmarks

  • HT1947 WHERE IS THIS "REMOTE" BUTTON IN ITUNES????? I CANT FIND IT ANYWHERE AND CANT FIND WHERE TO PUT IN THE CODE!!!!

    I CANNOT FIND THE REMOTE BUTTON ON THE NEW ITUNES TO ENTER THE PIN FOR PAIRING MY REMOTE. HELP ME

    Greetings tc414, I experienced the exact same problem as you and was able to find a solution. You are not crazy, the docs are there like you said directly from "apple help" when looking for "remote". Clearly visible to anyone who actually cared to take the 20 seconds required to look. And yes you can connect with an android device fairly easily, most of the time.
    In my case I had 5 devices paired with itunes which is the limit so the itunes button did not display at all. to clear this I went to "preferences" "devices" and there should be an option to "forget all remotes". It would of course be nice if you could manage these individually but hey it's itunes and thats how it is. Anyway click that and restart itunes. When I did this my remote button magically showed up again and I had no problem pairing my GS3 running the paid version of "remote for itunes" for android. By the way I also pair my ipod and as far as instructions go they are the same for either device. Remote for itunes an android is quicker though.
    Good luck and I hope this works for you!
    Cheers!

  • I cant find my ipod device on itunes

    Good evening,
                        Hello. Apple Inc. I can't find my iPod touch in iTunes.... How can i find it?

    Try the remainng itesm of:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

Maybe you are looking for