MAX 5.0.0 does not see any NI software

I am upgrading a very old test system to a new motherboard. I am loading a hard drive from scratch since the old system used a PATA drive and the new system uses a SATA drive. Since this system has been in use for over a decade I also thought loading from scratch would be a good idea.
I load everything up in this order:
Windows XP (with updates to SP3)
MAX 5.0.0
NI-DAQmx 8.6.1
NI-VISA 5.0.3
Traditional NI-DAQ 7.4.4 (Legacy)
NI-488.2 v2.8.0
NI-845x 1.1.4
NI-XNET 1.1
NI-CAN 2.7
CANopen LabVIEW Library 1.1.3
When I am done MAX does not list any software. My hardware shows up fine. (PCI-6013, PCI-6025E, PCI-8512, PCI-GPIB)
Note: My system includes an 8 port serial card and while the ports do list under the MAX hardware section (COM3-COM10) it seems like my software can only access COM1 and COM2. If from within MAX I try "Tools" -> "NI-VISA" -> "VISA Options" nothing happens. I take this as a sign that not seeing software within MAX is at the root of my problem.
Also, the "Tools" -> "Reset Configuration Data" option is not there although it is supposed to be in MAX 5.0
As far as I can tell everything I am using is compatible. I don't have many other options since some of my software uses Traditional NI-DAQ.
What are my options?
Try something else to get MAX 5.0 working? Install MAX 5.1?

Good point - I should have mentioned that I did do that before installing any of the NI software.
BTW: Installing MAX 5.1 did fix the MAX not seeing software issue (still not sure why though) but did not help my COM port problem.
My programs that use COM1 or COM2 work fine but my programs that use COM3-COM10 do not. If I transmit data on COM3 within MAX using a test panel the data gets sent but when one of my programs sends on COM3 it does not. Really not sure what is going on.

Similar Messages

  • TS1538 itunes does not see any of my devices.

    itunes does not see any of my devices.  It used to. But not any more. Why. They show up in Windows. But not itunes.
    <Edited by Host>

    Try
    iOS: Device not recognized in iTunes for Windows
    I would start with               
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or               
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    New cable and different USB port?
    Runs this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Try on another computer to help determine if computer or iPod problem

  • "An autonomous transaction does not see any changes made by main transact"

    Hi,
    I'm trying to reproduce the "An autonomous transaction does not see any changes made by main transaction" reffered on :
    Oracle® Database Application Developer's Guide - Fundamentals
    10g Release 2 (10.2)
    Part Number B14251-01
    chapter 2 SQL Processing for Application Developers
    Paragraph : Autonomous TransactionsI set up a simple case...
    create table emp_ as select * from emp
    begin
      update emp_ set hiredate=hiredate+100 where empno=7934;
    end;
    create or replace trigger trg_emp_
    after insert or update on emp_
    for each row
    declare
        pragma autonomous_transaction;
        emp_var emp.hiredate%type;
      begin
        select hiredate
          into emp_var
          from emp_
        where empno=:new.empno;
        dbms_output.put_line('empno: '||:new.empno);
        dbms_output.put_line('old hiredate: '||:old.hiredate);
        dbms_output.put_line('new hiredate: '||:new.hiredate);
      end;Prior to any change...
    SQL> select empno,hiredate from emp_;
    EMPNO HIREDATE
    5498 21/4/1982
    5499 11/10/1981
    5411 10/10/1981
    5410 10/10/1982
    7369 17/12/1980
    7499 20/2/1981
    7521 22/2/1981
    7566 2/4/1981
    7654 28/9/1981
    7698 1/5/1981
    7782 9/6/1981
    7788 19/4/1987
    7839 17/11/1981
    7844 8/9/1981
    7876 23/5/1987
    7900 3/12/1981
    7902 3/12/1981
    7934 23/1/1982After the change...
    SQL> begin
      2    update emp_ set hiredate=hiredate+100 where empno=7934;
      3  end;
      4  /
    empno: 7934
    old hiredate: 23/01/82
    new hiredate: 03/05/82
    PL/SQL procedure successfully completedAccording to the Oracle doc the select of the autonomous transaction should not see the change made to the hiredate column of the table in the main transaction(in the anonymous block)....
    What may i do wrong..????
    Thank you,
    Sim

    Simon:
    As Tubby pointed out, your dbms_output commands do not display the value you selected in the trigger. Your trigger based demonstration needs to be more like:
    SQL> SELECT * FROM t;
            ID DT
             1 05-SEP-2009
             2 17-JUL-2009
    SQL> CREATE TRIGGER t_ai
      2     AFTER INSERT OR UPDATE ON t
      3     FOR EACH ROW
      4  DECLARE
      5     PRAGMA AUTONOMOUS_TRANSACTION;
      6     l_dt t.dt%TYPE;
      7  BEGIN
      8     SELECT dt INTO l_dt
      9     FROM t
    10     WHERE id = :new.id;
    11     DBMS_OUTPUT.Put_Line ('ID: '||:new.id);
    12     DBMS_OUTPUT.Put_Line ('Old dt: '||:old.dt);
    13     DBMS_OUTPUT.Put_Line ('New dt: '||:new.dt);
    14     DBMS_OUTPUT.Put_Line ('Aut dt: '||l_dt);
    15  END;
    16  /
    Trigger created.
    SQL> UPDATE t SET dt = sysdate WHERE id = 2;
    ID: 2
    Old dt: 17-JUL-2009
    New dt: 25-OCT-2009
    Aut dt: 17-JUL-2009
    1 row updated.So, the automomous transaction select did not see the changed value of dt.
    I know you are just trying to understand automomous transactions here and would never do sometihg like this in production right? :-)
    Your trigger, as written, has some interesting side effects because of the automomous transaction. For example:
    SQL> INSERT INTO t VALUES(3, sysdate - 25);
    INSERT INTO t VALUES(3, sysdate - 25)
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at "OPS$ORACLE.T_AI", line 5
    ORA-04088: error during execution of trigger 'OPS$ORACLE.T_AI'
    SQL> UPDATE t SET id = 3 where trunc(dt) = TO_DATE('05-Sep-2009', 'dd-mon-yyyy');
    UPDATE t SET id = 3 where trunc(dt) = TO_DATE('05-Sep-2009', 'dd-mon-yyyy')
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at "OPS$ORACLE.T_AI", line 5
    ORA-04088: error during execution of trigger 'OPS$ORACLE.T_AI'John

  • TS1398 my ipone 4s does not see any wifi networks my ipad works ok tried all of the above resetting network etc still does not see wifi ?

    my ipone 4s does not see any wifi networks my ipad works ok tried all of the above resetting network etc still does not see wifi ?

    If no change after restoring the iPhone with iTunes as a new iPhone or not from the backup, the iPhone has a hardware problem with the wireless card or with something else.

  • IBook G4 Airport Extreme does not see any SSID

    Hi,
    My iBook 1,2 Ghz has been working great for several years now.
    I am working with Mac OS X Tiger (10.4.11) for quite some time
    and it never let me down. I connect to the internet using an Airport Express
    connected to a speedtouch router.
    The Airport Express Card in my iBook always found 6 or 7 SSID's of other
    Wireless Networks in my neighbourhood and it used to login automatically on
    my Airport Express wireless wetwork station.
    Last week it suddenly stopped working correctly.
    After starting OS X on my laptop the little Airport icon in the upper bar faded out grey.
    When I click it it says it can't find any networks.
    I checked all my settings, downgraded my Airport Extensions
    and even installed a spare (refurbished) Airport Extreme Card.
    Even with another Airport Extreme Card it does not see any wireless networks.
    My other macs, a unibody MacBook Pro and white MacBook work fine with the Airport Express.
    What could be wrong? Am I overlooking something here? Can somebody help me out?
    How can i get my Airport Express/iBook G4 connected to my wireless network again?

    Hi Elko,
    Thanks for the reply.
    I re-installed the original Airport Extreme card into the slot again.
    But now i pushed it harder than the first time. (just like you said)
    I noticed the second click, but that doesn't seem to be the problem.
    Both Airport Cards (the original and the new) were installed correctly.
    I also checked the antenna connection but that is seated o.k. too.
    After re-installing the card, i booted into Mac OS X Tiger and checked the ASP.
    It says a Airport Extreme Card is installed with firmware version 405.1 (3.90.34.0.p.18)
    and the langauge version is international/worldwide. So far, so good.
    Nevertheless the airport card does still not find any wireless networks or SSID's after
    scanning multiple times. (Location on automatic)
    I am planning an upgrade to Leopard today. Maybe that's gonna help, since there were some Airport Extreme updates in Leopard. If that's not the solution, I will stay with your other suggestion and buy me a nice USB dongle.
    Do you have any idea what type of dongles work best with Leopard? I have seen some different models, but a lot of dongles require third-party software to make it work and are not automatically recognized by OS X.

  • Satelite A30 does not see any other network devices in WLan

    I recently bought a Toshiba Wireless LAN Mini PCI Card, i've installed it and managed to get it to recognise my broadband but it does not see any other network devices. I was not supplied with any drivers or software to operate the card (I bought it from a proper dealer). Can you recommend downloads that would run this card?
    I have a Satelite A30 laptop 1gb ram 60GB HDD.
    Also large files sometimes stop transfering (hangs)when using my USB connection. The usb controller is using microsoft driver 5.1.2600.0 dated 1 june 2002.
    Is this a driver problem?

    Hi
    If the WLan card is properly installed so you have only not configured you settings.
    I dont know which devices in the broadband you mean but usually if you want to communicate or transfer files between notebooks through the WLan so all computers must be in the same domain or workgroup.
    I cannot give you a proper answer but only a suggestion. I have red that sometimes a lower power could be responsible for such issue. Try to disable the option Power safe in the USB root hub properties in the device manager.
    Hi
    If the WLan card is properly installed so you have only not configured you settings.
    I dont know which devices in the broadband you mean but usually if you want to communicate or transfer files between notebooks through the WLan so all computer must be in the same domain or workgroup.
    I cannot give you a proper answer but only a suggestion. I have red that sometimes a lower power could be responsible for such issue. Try to disable the option Power safe in the USB root hub properties in the device manager.

  • Mac Pro early 2008 2 x 2.8GHz Quad Core 10.7.5, replaced 4 x 500ghds with 4 x 3Tb and Raid card Raid5 them OK but can not load time machine back up as it does not see any of the 4 drives, neither does disc utilities, any thoughts?

    On my Mac Pro, early 2008 2 x 2.8GHz Quad Core 10.7.5, replaced 4 x 500ghds with 4 x 3Tb. The Raid card Raid 5ed them OK but can not load time machine back up as it does not see any of the 4 drives, neither does disc utilities, any thoughts?

    You don't see drives when using a hardware RAID only the volumes.
    WD Green are not suitable for hardware RAID (or software RAID for that matter).
    USB2 and TimeMachine are a disaster waiting to happen. I've used SATA (internal) and eSATA (using SATA PCIe cards) trouble-free.
    I can't say I begin to understand your use or "choosing the install drive for the backup"
    Install what?
    You don't load TimeMachine. Maybe seems minor but that is not how to describe the behavior of software.
    You read FAQ and How To http://www.apple.com/support/timemachine
    Time Machine’s Gory Details:
    https://www.apple.com/support/timemachine/
    TimeMachine 101
    https://support.apple.com/kb/HT1427
    Lion Recovry & TimeMachine
    http://www.apple.com/support/lion/installrecovery/
    http://www.apple.com/support/lion/
    How To Restore Your System
    http://pondini.org/TM/14.htmlMac OS X v10.7 Lion
    Pondini's Blog: Time Machine - Troubleshooting -- B5.  Would you like to inherit (or re-use) the backup . . . ?

  • IPhoto does not see any changes after editing a photo in Camera Raw

    Hello everyone ,
    I have some small problem with my iPhoto. I have set up Camer Raw in iPhoto as  External Editor, so when I click on edit in IPhoto,
    automatically opens my JPG in Camera Raw. After editing in Camera Raw I'm clicking on ,,Save image" then destination is ,,Save in same location" When I go back to iPhoto to the same photo, iPhoto does not show any changes I have made in Camera Raw. 
    What could it be or should I set something in iPhoto or in Camera Raw?
    Is there a chance in order to deal with this?
    I will be grateful for any assistance and
    I'm waiting for advice
    Dawid

    Any time a RAW file is edited in any 3rd party editor from within iPhoto it MUST be saved to the Desktop and imported as a new file. There's no other way to do it.  So the photos you've edited and saved are somewhere in the iPhoto Library folder system but cannot be recognized and used by iPhoto.
    The following is geared for Photoshop and Photoshop Elements but might have some info relevant for you:
    Using Photoshop CS3 or Photoshop Elements 9 as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's Advanced Preference Section's under the "Edit photo:" menu.
    Click to view full size
    2 - double click on the thumbnail in iPhoto to open it in Photoshop.  When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done. 
    3 - however, if you get the navigation window
    Click to view full size
    that indicates that  PS wants to save it as a PS formatted file.  You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements 9 the Saving File preferences should be configured as shown:
    Click to view full size
    s  I also suggest the Maximize PSD File Compatabilty be set to Always.  In PSE’s General preference pane set the Color Picker to Apple as shown:
    Click to view full size
    NOTE: If you want to use both iPhoto's editing mode and PS/PSE without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in iPhoto".  That will let you either edit in iPhoto using the Edit button or Control-clicking on the thumbnail and selecting "Edit in iPhoto" or in PS/PSE by Control-clicking on the thumbnail and selecting "Edit in External Editor" in the Contextual menu.
    Click to view full size
    This way you get the best of both worlds.
    OT

  • Had to reinstall adobe and it does not see any scanner/printer

    Had to reinstall adobe and now it does not see my printer/scanner.  Help?

    Traviss98901234 what Adobe software or service is your inquiry in reference to?

  • My iPad does not see any network and i cannot get to place to enter manually IP address etc.

    I have several apple products connected on home wi-fi network. On my ipad, it does not even see the network.  I would put IP etc in manually but I cannot get to that page to do it.  Where is it? 

    Settings>WiFi>Other. Enter your network name and password.
    Have you tried .... Settings>WiFi>Tap your network name>Tap the blue arrow on the right>Forget this network. Restart your iPad then go back to the WiFi settings and try again?

  • Lightroom CC Import sees CF Card in reader but does not see any images, cannot import anything

    I have installed Lightroom CC.  It seems to work but if I connect a card reader with a CF card, while Lightroom sees the card, it sees no images.  I have to copy the files to a hard disk and import from there.  How do I fix this annoying problem?

    Hi drchevalier,
    You mean, you are able to import those files, if moved to hard drive but not able to view them when importing directly from the CF Card? Please attach a screenshot.
    If so, might be an issue with the card. Did you try reformatting the card in the camera itself and check? If not, might want to try that.
    Also, make sure your camera is in the Camera Raw plug-in | Supported cameras list. Else, you might not see it in Lr.
    ~ Arpit
    EDIT: Sorry, did not see your reply. Glad to hear that the issue got resolved.

  • I moved my itunes now it does not see any devices

    I just transfer my I tunes from my I mac to an Apple mini. Everything transferred fine EXCEPT now Itunes does not recognize my two Ipads or my I phone
    If this question has been asked or answer I am sorry
    Help

    Dan321144 wrote:
    I just transfer my I tunes from my I mac to an Apple mini.
    how exactly did you do that ? what did you transfer ?
    JGG

  • My Apple TV does not see any wifi networks after 7 update.

    i Have recently updated my Apple TV to 7 and ever since then I cannot see any wiif networks. I can connect through wired connection and works fine. I have tried Apple troubleshoo page and nothing works. Any ideas?

    Hi, Cgomez8889.  
    Thank you for visiting Apple support Communities.  
    Here are some troubleshooting steps that I would recommend when experiencing this issue.  
    Apple TV (2nd and 3rd generation): Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS4546
    Cheers, 
    Jason H. 

  • Airport Extreme card does not see any networks...help!

    I have a home network that is working fine - 2 linksys routers with WDS set up... it all works great - an Ibook g4 running 10.3 and has an Airport Extreme card connects flawlessly everyday. As does an old G4 powerbook with an old airport card.
    however, I have this dual g4 with 10.4.3 running, and a recently-installed airport extreme card.
    When I turn airport "on" it never sees our network. And it doesn't see my neighbors' networks, either, which are also always visible.
    I can, howevr, connect via ethernet to the router that is somewhat nearby. that networking is fine...I can get on wired, but not wirelessly.
    I've installed the 2005-1 update, and have run Software Update as well to see if there are any other patches/updates necesary. so as far as I can tell, I am up to date.
    system profiler says:
    Wireless Card Type: AirPort Extreme
    Wireless Card Locale: USA
    Wireless Card Firmware Version: 404.2 (3.90.34.0.p16)
    Current Wireless Network: wireless network not available
    and in the extensions section for the airport, it says:
    Version: 4.0.4
    Last Modified: 11/20/05 9:55 AM
    Get Info String: 4.0.4, Copyright © 2002 - 2005 Apple Computer, Inc., All Rights Reserved
    Location: /System/Library/Extensions/AppleAirPort2.kext
    kext Version: 404.2
    Load Address: 0x39738000
    Valid: Yes
    Authentic: Yes
    Dependencies: Satisfied
    Integrity: Correct
    I am at a loss. Is there anything else I can do before writing off the card as a bad card - or perhaps the logic board is faulty?
    I hope there is a simple solution to this. I appreciate your expert help.

    Go back and recheck the Airport Extreme card installation. Make sure you plugged the connector for the internal Airport antenna into its socket on the Airport Extreme card itself - and make sure the plug is fully seated into its socket (none of the metal sleave should be showing).

  • Bonjour does not see any of the network printers

    I have no idea how this bonjour stuff works or if it evens works at all because I installed it and it won't recognize any printer installed on the mac network.
    I have a Mac Pro with Vista64x installed with boot camp. I use the Vista 90% of the time for one simple word: autodesk. Until they figure out a apple compatible version of their software, I'm stuck using windows. The catch is that the office is 100% mac and the printers are networked for mac use.
    The only way I can print my work from Inventor or Revit is to plug myself directly using USB cable to my 24" HP plotter. Great if I need ArchiD size print but not good if I need a simple 8.5x11 run of the mill print.
    So I tried this bonjour thingy and ... well ... nothing, nada, no printer seen, zip, null...
    Tired of having to convert my files to pdf and then booting in MacOS in order to print then having to boot back into Vista to continue my work.
    So, after all that venting, my question is: Is there a STEP-BY-STEP guide to using this bonjour or should I try something else instead?
    Thanks for your time everyone.

    Hi this may be helpfull as iv used this with linux. There is a program called crossover which you can download from www.crossovergames.com there is a mac version and it allows you to run windows software on your mac without having to run windows you can download a free trial to test to see if it works with your programs. You still mite not be able to print but a least you wont have to keep booting into vista everytime you want to use it. Hope this helps.

Maybe you are looking for

  • Delivery Date in inbound delivery doc not accurate

    Dear all, I have a question with regards to the wrong delivery date appear in our inbound delivery. Our inbound delivery is created via a message output in the outbound delivery of a standard SAP cross company stock transport order. The delivery date

  • Creation of Materialized view and Materialized view log.

    I wanted to create materialized view with 'REFRESH FAST ON COMMIT' option. 1) Table1 --it is partitioned range + list -- Added primary key 2) view1   -- having primary keys on view's base table Steps: 1) create materialized view log on Table1 ; -- de

  • Installation error  SAP NW EE 5.0

    HI , I tried to install  the SAP NW 2004s EE 5...The installation went up to  88% and failed. The  below is the error i got in the log. (Feb 1, 2000 2:28:08 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean9): Exp

  • IPhoto 5 won't close down

    I haven't had any trouble with iPhoto 5 until this week. Now the program refused to close down normally and even Force Quit is sometimes not able to do the job. Also, when editing photos, the Saving Changes bar comes on with its buddy, the spinning b

  • Tabbar causes horizontal scrollbar in browser

    Has anybody had this problem. I have a basic uit template file but when the page renders, the right aligned tabs are beyond my window and I have to scroll to the right to see them. Also, how can one change the default behavior of the tabs generating