Keithley connexion problem with MAX

Hi everybody,
I have a problem finding a Keithley device in LabView Measurement and Automation Explorer (Max, version 4.6).
I have entered all necessary network parameters in windows (ip adress, subnet mask, etc...) and if I ping the Keithley through the windows command box, I get an answer, so no connexion problem. But when I want to add it in Max, automatic detection doesn't work, and if I enter the ip adress manually and validate I get an error message saying that the device cannot be found and containing the Visa error code 0xBFFF0011.
I have also tried to add it with a raw socket using the port number that I find in the Keithley, it still doesn't work... The most puzzling is that I have another PC running under the same OS, with the same version of Max and the same parameters, and it works on this pc!!
Please help me, I'm getting desperate...
Thank you very much!!

Hello.
As you say the same instrument works with another computer, have you checked if the firewall configuration is the same on both computers?
Did you try to connect your instrument directly to the computer through a local nertwork?
DO you have the same version of the NI-VISA drivers on both computers?
Best regards

Similar Messages

  • Connexion problem with Panasonic DV-PAL camcorder

    Hi,
    I have a problem to have FCE HD 3.5.1 or iMovie 5 recognize my camcorder since I updated to MacOS X 10.4.11 from 10.4.10. At the startup of FCE the message "cannot find the Apple FireWire PAL (720x576) driver" appears and the application does not recognize the camcorder. iMovie cannot recognize it either.
    I have read on the forum that some people already had this kind of problem with the firewire when they switched to 10.4.11. Do you know how to solve it ? May it work better with Leopard?
    Thanks for your answers, Christophe

    I don't have another firewire device connected to the computer. From the history of updates I can see that the first one for QT was an upgrade to version 7.0.3 in November 2005 (together with an upgrade to OS X 10.4.3), but I can't remember whether it was an upgrade from QT 6 or 7. The update of OS X was from 10.4.0 because it was upgrading from the original PowerBook G4 CD install.
    When you say reinstall QT, do you mean removing it and reinstalling it completely?

  • Problem with max min numbers

    I want to make program where a user enters int numbers until he/she enters negative number.
    Program shall then print out min, max, avarage(only with one desimal) and how many numbers that are entered by the user.
    Does anyone have suggestions??

    I have almost done it.
    I just cant get min number to work.
    What might be wrong with my program??
    public class Oppg1
    public static void main( String args[] )
    int total; //summen av de inntastese talla
    int tallTeller; //antall tall tastet inn
    int tall;
    //int tall1;
    int min,max; //tallverdien
    int antTall;
    double gjennomsnitt; //nummer med desimal verdi
    String tallString;
    max=0;
    min=0;
    total=0;
    tallTeller=0;
    antTall=0;
    //les inn f�rste tall fra bruker
    tallString=JOptionPane.showInputDialog("Tast inn heltall eller avslutt med vad � taste neg tall");
    //konverter tallString til int
    tall=Integer.parseInt(tallString);
    while (tall>0) {
    total=total +tall; // adderer tall til total
    tallTeller= tallTeller+1; //inkrementerer tallteller
    antTall=tallTeller+1;
    min=Math.min(tall,min);
    //max=Math.max(max,tall);
    //ta imot neste tall fra bruker
    tallString=JOptionPane.showInputDialog("Tast inn heltall eller avslutt med ved � taste negativ tall");
    //konverter tallString til int
    tall=Integer.parseInt(tallString);
    DecimalFormat twoDigits = new DecimalFormat("0.00");
    if(tall<0){
    antTall=tallTeller;
    //Hvis bruker taster inn en tall ihvertfall
    if (tallTeller!=0){
    //beregn gjennomsnittet
    gjennomsnitt=(double)total/tallTeller;
    //vis gjennomsnittet
    JOptionPane.showMessageDialog(null,"Antall tall tastet inn: "+antTall+"\n"+"Gjennomsnitt: "+twoDigits.format(gjennomsnitt)
    +"\n"+"Max tall: "+max
    +"\n"+"Min tall: "+min,"Utskrift",
    JOptionPane.INFORMATION_MESSAGE);
    else // hvis ingen tall er tastet inn, en passende tekst
    JOptionPane.showMessageDialog(null,"Ingen tall tastet inn","",
    JOptionPane.INFORMATION_MESSAGE);
    System.exit( 0 );
    }

  • Problems with max number of items on a page limit?

    I have a page with 106 items which submits fine but when I add another item (a text field) a page 404 error displays when I click the submit button. I had a look at [m-2399990] which mentioned that the "items rendered per page" limit is 100. I'm not sure whether this limit is the problem or not. I would greatly appreciate any help you can give.
    Many thanks,
    Christopher

    Hi Christopher,
    i had a same problem, the solution was to break the single forum into two tab pages.
    More than 100 items in Form or Page
    Hope this helps
    Regards
    mozkavra

  • Problem with max function

    Can anybody help me in using MAX(extents_id) in the following query. What is there is wrong, I know. Does anybody know the correct usage?
    select max(extent_id) as
    select seg.owner, seg.segment_type, seg.segment_name
    from dba_extents ex, dba_segments seg
    where seg.owner not in ('SYS', 'SYSTEM', 'PUBLIC')
    and seg.segment_type not like '%LOB%'
    and ex.segment_name(+) = seg.segment_name
    thanks in advance

    it's ok now, i've worked it out
    solution was
    select max(extent_id) extent, seg.owner, seg.segment_type type, seg.segment_name segment,
    seg.tablespace_name tablespace
    from dba_extents ex, dba_segments seg
    where seg.owner not in ('SYS', 'SYSTEM', 'PUBLIC', 'SCOTT', 'ORDSYS', 'OUTLN', 'CTXSYS','MDSYS')
    and seg.segment_type not like '%LOB%'
    and ex.segment_name(+) = seg.segment_name
    group by seg.owner, seg.segment_type, seg.segment_name, seg.tablespace_name;

  • Problem with max function in air

    Hello ,how are you,I write this query : [b]SELECT *, max(trackerId) FROM  sessiontracker [/b]in
    sqlite manager and it works ,but when I use it in Air application  ,it send me back this error:
    ReferenceError: Error #1056: Cannot create property max(trackerId) on
    com.afarinesh.models.SessionTracke
    ,I guess that Actionscript 3 can not pars max function.
    I appreciate your help

    Hello,
    AIR does support max function. Please see Page 1067 of the actionscript developer's guide, which can be download from http://help.adobe.com/en_US/as3/dev/as3_devguide.pdf. And I tried the max function in my AIR application: create a table, insert some records into the table, and use the "select *, max(column) from table". It works fine.
    I noticed your error is the ReferenceError and related to some AS class. So I am not sure if you use any ORM tool. If so, the issue may be caused by the use of the tool. Please check the configuration and usage of the tool.
    Thanks,
    Yang

  • PROBLEMS WITH MAX() FUNCTION

    I'm trying to select the maximum date from a table but im getting this error:
    SQL Error: ORA-00937: not a single-group group function
    00937. 00000 -  "not a single-group group function"for the following query
            SELECT DISTINCT
             P.SEARCHNAME, P.EXTERNALID, P.PID, P.DATEOFBIRTH, trunc( sysdate-P.DATEOFBIRTH ) AGEINDAYS, U.LASTNAME, MAX(A.APPTDATE) AS MAXAPPTDATE
         FROM
             PERSON P,
             USRINFO U,
                RPTAPPT A
         WHERE
                ROWNUM < 11 AND
             trunc( sysdate-dateofbirth ) <= 620 AND
             P.RESPPROVID = U.PVID AND
             P.PSTATUS = 'A' AND
             P.ISPATIENT = 'Y' AND
                P.PID = A.PID (+) AND
                A.APPTDATE > SYSDATE AND
                A.APPTSTATUS = 0
               

    SELECT P.SEARCHNAME,
           P.EXTERNALID,
           P.PID,
           P.DATEOFBIRTH,
           trunc( sysdate-P.DATEOFBIRTH ) AGEINDAYS,
           U.LASTNAME,
           MAX(A.APPTDATE) AS MAXAPPTDATE
      FROM PERSON P,
           USRINFO U,
           RPTAPPT A
    WHERE ROWNUM < 11
       AND trunc( sysdate-dateofbirth ) <= 620
       AND P.RESPPROVID = U.PVID
       AND P.PSTATUS    = 'A'
       AND P.ISPATIENT  = 'Y'
       AND P.PID        = A.PID
       AND A.APPTDATE   > SYSDATE
       AND A.APPTSTATUS = 0
    GROUP BY P.SEARCHNAME, P.EXTERNALID, P.PID, P.DATEOFBIRTH, trunc( sysdate-P.DATEOFBIRTH ), U.LASTNAMEnote: untested

  • R7770-PMD1GD5 got a problem with assassin's creed 3

    bought this card
    and got this problem with max setting.
    This happens when I turn AA to very high. What is the problem?

    Quote from: knight_9 on 14-December-12, 14:37:35
    No, this only happens with AC3. I tested it with Far Cry 3 which the only graphic intensive game I have at the moment. I can max out the setting with FC3, the game is choppy but I can't reproduce the case.
    First of all, the market is full of buggy games.
    Secondly, R7770 is a mid-range (cheap) graphics card.
    With only 128 bits memory interface, don't expect to play complex games at high resolutions, 8X AA and great FPS values.
    To get an idea, GTX 560 is faster than R7770.
    GTX 560 is a good GPU, but not a great one.

  • DateTimeAxis min/max bug? Problems with consistent padding. Date Wrapping.

    I have been working on a problem with a BarChart object that I've created using dynamic data.
    My primary issue is that I can't seem to get the proper min/max values to set for the chart.
    To solve this I manually found the min and max of the data set of Dates and set the min and max of the chart. This allowed me to finally see all the floating custom bars (each bar is rendered with a user set fill), however now if I have a bar that extends over a year change the horizontal axis labels do not wrap the date properly, so instead of 2/10 (feb 2010) being the last date, 12/09 (dec 2009) is the last date.
    I've been trying to dynamically adjust the padding based upon a change event, but so far to no avail. Partially I think because I'm not sure which event for the function to fire on.
    private function dateAxisGen(r:Array):void {
                    var min:Number = r[0].startTime.time;
                    var max:Number = r[0].endTime.time;
                    const PAD:Number = 2;
                    const MILLISEC_IN_MONTH:Number = 2629743830;
                    const MILLISEC_IN_WEEK:Number = 604800000;
                    const MILLISEC_IN_DAY:Number = 864;
                    for (var i:int = 1; i < r.length; i++) {
                        var o:OperationXT = OperationXT(r[i]);
                        min = Math.min(o.startTime.time, min);
                        max = Math.max(o.endTime.time, max);
                    // Calculates the maximum range, then adds an appropriate
                    // padding to the chart via extra time. TODO
                    /* var range:Number = max - min;
                    if(range >= MILLISEC_IN_MONTH) {
                        dAxis.padding = (MILLISEC_IN_WEEK/1000000)/PAD;
                        dAxis.padding = (MILLISEC_IN_WEEK/1000000)/PAD;
                    } else if(range >= MILLISEC_IN_WEEK) {
                        dAxis.padding = (MILLISEC_IN_DAY)/PAD;
                        dAxis.padding = (MILLISEC_IN_DAY)/PAD;
                    } else {
                        dAxis.padding = PAD;
                    dAxis.minimum = new Date(min);
                    dAxis.maximum = new Date(max);
    this, however, does not adjust the padding properly when an operation is removed from the list. Not to mention I still have the date wrapping error. It gives me the following error:
    Cannot access a property or method of a null object reference.
        at mx.charts::AxisRenderer/measureHorizontalGutters()[C:\work\flex\dmv_automation\projects\d atavisualisation\src\mx\charts\AxisRenderer.as:2244]
        at mx.charts::AxisRenderer/calcRotationAndSpacing()[C:\work\flex\dmv_automation\projects\dat avisualisation\src\mx\charts\AxisRenderer.as:1858]
        at mx.charts::AxisRenderer/adjustGutters()[C:\work\flex\dmv_automation\projects\datavisualis ation\src\mx\charts\AxisRenderer.as:1534]
        at mx.charts.chartClasses::CartesianChart/updateAxisLayout()[C:\work\flex\dmv_automation\pro jects\datavisualisation\src\mx\charts\chartClasses\CartesianChart.as:2239]
        at mx.charts.chartClasses::CartesianChart/updateDisplayList()[C:\work\flex\dmv_automation\pr ojects\datavisualisation\src\mx\charts\chartClasses\CartesianChart.as:1366]
        at mx.core::UIComponent/validateDisplayList()[E:\dev\gumbo_beta2\frameworks\projects\framewo rk\src\mx\core\UIComponent.as:8065]
        at mx.managers::LayoutManager/validateDisplayList()[E:\dev\gumbo_beta2\frameworks\projects\f ramework\src\mx\managers\LayoutManager.as:663]
        at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\gumbo_beta2\frameworks\projects \framework\src\mx\managers\LayoutManager.as:736]
        at mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\gumbo_beta2\frameworks\ projects\framework\src\mx\managers\LayoutManager.as:1069]
    Any help with my problem would be greatly appreciated.
    ADDITIONAL INFO:
    Alright, so I've discovered that the ONLY time the date wrapping error occurs is when the axis labels contain only the month and year, any other time it places it properly.
    Does anyone know where I can report this bug?

    Perre wrote:I'm used to being able to pick one or a couple of songs and then adding it a specified playlist. Is this impossible in sonata?
    It's clearly not impossible, just different than you expect. Create your playlist as you want it to appear in the Current tab (meaning don't dump every single song from your library in there, just the ones you want) and then save the playlist.
    Perre wrote:And if I try to play the m3u file created (the one with every song listed) through freevo I get a message that the directory is empty. What am I doing wrong??
    Look at save_absolute_paths_in_playlists in your mpd.conf.

  • I got problem with volume of calls...its on max and i still can hear person on other side really bad...i got 4s

    i got problem with volume of calls...its on max and i still can hear person on other side really bad...i got 4s

    Did you fix the problem? I have the same problem and it has been pain in the neck.

  • Problem with select max(FIELD)

    I have a table with the following fields:
    PARTID     ART_TYP     AEC     SERVICE     PLANT     STATUS
    4711     A     A     2     P     230
    4711     A     B     0     P     230
    4712     A     B     2     P     230
    4713     A     B     0     P     230
    I need a sqlscript where I get the records with MAX(SERVICE)
    In this example
    4711     A     A     2     P     230
    4712     A     B     2     P     230
    4713     A     B     0     P     230
    I tried this with:
    select distinct partid,
         art_typ,
         aec,
         max(service),
         plant,
         status
    from t_msltmp
    group by partid,art_typ,aec,plant,status
    But I get both records of partid=4711
    Can someone help me with this problem
    kind regards
    Menk Slot

    ROW_NUMBER() requires explicit ORDER BY clause in OVER:
    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/functions105a.htm#86312
    SQL> select partid, art_typ, aec, mx, plant, status
      2  from(select partid,
      3                art_typ,
      4                aec,
      5                max(service) over (partition by partid) mx,
      6                row_number() over (partition by partid order by service desc) rn
      7                plant,
      8                status
      9         from t_t)
    10  where rn = 1
    11  /
        PARTID A A         MX P     STATUS
          4711 A A          2 P        230
          4712 A B          2 P        230
          4713 A B          0 P        230Rgds.
    P.S.
    Another way to get this (more tedoius):
    SQL> select partid,
      2  max(art_typ) keep (dense_rank first order by service desc) art_typ,
      3  max(aec) keep (dense_rank first order by service desc) aec,
      4  max(service) service,
      5  max(plant) keep (dense_rank first order by service desc) plant,
      6  max(status) keep (dense_rank first order by service desc) status
      7  from t_t
      8  group by partid
      9  /
        PARTID A A    SERVICE P     STATUS
          4711 A A          2 P        230
          4712 A B          2 P        230
          4713 A B          0 P        230Message was edited by:
    dnikiforov

  • 3ds max, viz and autocad problems with bootcamp

    I recently bought a new mac pro 2 quad 3.0 as a workstation. I have two hardrives installed one for mac os system and the other one is for windows and bootcamp.
    The problem is that after using 3dsmax or any autodesk program for a while. I turn off the computer and comeback next day and click to continue on my 3ds max file and asks me to activate the software again. This is typical for viz, or autocad. I have to call autodesk every day to activate my software. Tired of reactivating the software everyday...
    They told me the problem is with bootcamp..
    anybody has any recoomendations?
    plz help..

    I am going through the same problem with v9 and 2008. I am running a MacPro workstation with bootcamp to Vista. I was using v9 fine until I upgraded to 2008 and then the licensing issues happened when switching between Mac/PC. I also upgraded to Leopard so I don't know who is to blame. I want to know if Autdesk changed the licensing technology or if the newer bootcamp in Leopard is the problem. Now I'm wishing I didn't get the Mac thinking I could run core apps like 3DSMax.

  • NForce 3: Problems with Maxtor Diamond Max 10 16MB Cache?

    I heard that the NForce 3 chipset does have problems with these hard drives.
    Could anyone tell me more about it? I'd like to get 2 of these 250GB drives for my system, replacing my older 80GB Diamond Max 9 discs.
    Do these discs run normally, or won't they?

    I'm using the first port nearest the CPU which comes up in the BIOS as Master 5 - as far as I can work out these are the Nvidia ones.
    I've disabled the second IDE chain in the BIOS but it worked before that.
    I did build the machine when pissed (not a great idea) so my memory of the steps taken is a little hazy.
    I partitioned the disk with a Windows ME floppy before trying to install XP - this turned to be a bad idea as either XP or the board didn't want to recognise it.
    Wiped partitions and partitioned it from the XP CD- fine.
    Added second disk after install.

  • MOVED: I have problems with grafick motherboards MSI 845G max when i play games

    This topic has been moved to Intel P4 & Celeron P4 based board.
    I have problems with grafick  motherboards MSI 845G max when i play games

    There diff x4 agp and x8 agp.......... nothing!!!!!!!
    Check you have INTEL application accelerator installed!!!!!!!
    845GE-Max is very fast mainboard, only the single channel mem make's it slower than 865/875 chipset........ fact
    Check ALL drivers are COMPAT with system NOT the latest............. Try older drivers
    Del

  • Connexion problems to POP server with mail but not Thunderbird...

    Hello guys !
    I have a problem with the server of my lab.. the connexion between Mail and the server doesn't work any more (used to work very nice a few weeks ago) and Mail say that the connexion to port 995 or even 110 was not possible because of a delay... do you know something new about such a problem ?
    fact is, it works on thunderbird with the same settings and works sometimes with Mail on the WE (maybe there are less people using the server and it is more rapid ?) and it works all the time from my home...
    Any idea about this problem ?
    I had an answer on a Mail topic from somebody :
    "In your case it definitely sounds like an issue of high traffic on the network (working on weekends, intermittently from home, etc.). It sounds like higher-capacity network hardware or more available bandwidth are needed. Mail.app might be more sensitive to dropped packets or slow connections; I don't know if that can be changed via a config file. You might try posting a separate post to get help from some folks who might know."
    maybe his answer is of any help for someone who knows about all this...
    Does somebody have an idea why thunderbird works and not Mail.app ? Is there something to do ?
    Thanks for your help.
    Mat
    MBP intel core duo 2Ghz   Mac OS X (10.4.10)  

    hello abd thanks for your interest.
    the settings in Tbird are simple connexion to internet, no proxy settings... and the port is simply 25...
    what is strange is that Mail.app used to work in my lab without a problem... I think the lab network (it's a special network for laptops...) is too slow, because it works in the morning and during the week-end... is it possible to change the setting in mail for the connexion ?
    i'm getting mad with this problem.
    Mat

Maybe you are looking for

  • AQ Sort Order

    HI I am trying to subscribe to a topic with Sort Order (priority,enq_time) using oracle.jms API.Payload type is an ADT generated from jpublisher.Though the same worked with Oracle.AQ API. 1)After publishing i am updating the priority through sql usin

  • How to Play Video_TS Folder

    I have over 100 Video_TS Folders on my Mac... can Apple TV send these to my TV? What about a networked DVD player... it should be able to play Video_TS Folders because they are in fact DVD's!!! I do not want to convert all my DVD's to some ridiculous

  • Can I use the `deny` statements is a SQL database

    I have a web-app that I will need to scale to large proportions. In this web-app, I have a database in which some clients should not have access to specif tables. Can I use `deny` statements on an Azure SQL databases? Like this: deny select on a_tabl

  • IPod G3 not recognized & Extension questions

    I just bought a used G3 iPod I'm runing 10.3.9 and iTunes 6.0.1 . I installed the latest update and restored it back to factory settings . I connected it to the mac thru the firewire, I get a message that the iPod is connected but isn't recognized. I

  • IMac cannot connect to internet, but all other devices can?

    Ok So I have an iMac, two iphones, and a mac book air in the house.  The mac book and iphones can connect to my chinese tp-link router, and connect to the internet wirelessly just fine.  The iMac however, everytime I tried to connect to the internet