MAX can see PXI 8464, but not LabView

I have a PXI-8464 card, and it shows up on MAX, but it doesn't show up on my pull down manual in LabView. What is wrong?
In the LabView Project:
Thanks.

Good afternoon Bladhart, 
I have had this happen to me several times. If you have not already tried it, select the Browse option on the drop-down menu (see Browse screenshot.png) and see if you can manually navigate to the device name that way. 
In general, you can alter the devices shown in that drop-down menu by right-clicking on the menu and selecting I/O Name Filtering (see IO Name Filtering.png). On the menu that opens, you can make sure that the channel(s) and I/O type you are expecting is selected (see Filter Names.png). 
Hope this helps! Good luck with your application. 
~kgarrett
Applications Engineer
National Instruments
Attachments:
Browse screenshot.png ‏5 KB
IO Name Filtering.png ‏6 KB
Filter Names.png ‏25 KB

Similar Messages

  • Bonjour - Mac A can see Mac B but not vice versa

    Hi
    Very odd behaviour with Bonjour. Up until yesterday, my macbook pro (call it A) would see my mac pro (B) - it would appear automatically in A's sidebar, I could listen to B's iTunes library on A and so on. No problem and there hasn't been for a couple of years. B could not see A - but I didn't really need it to and this wasn't an issue.
    Suddenly, this morning, the situation is completely reversed. A can no longer see B at all, but B can see A.
    I can connect both ways by using 'Connect', I can ping both ways, but I can't get A to discover B using Bonjour.
    The only think I've done that I can think can have caused the changes is to use Omnifocus sync (with B holding the sync server) - it worked fine all day, but overnight Bonjour seems to have reversed itself as described above.
    Bonjour Browser shows me that B can see A, but A can't see B. I have identical settings on both machines for sharing, network, firewall (all everything).
    Bizarrely, for one two minute period a couple of hours ago, the situation reversed itself (A could see B but not vice versa), but then immediately went back to B can see A, but not vice versa.
    Both computers are running the same version of Leopard (10.5.7). I've reinstalled the OS on B, just to see, but this hasn't improved matters.
    I can find nothing on google or this discussions forum to explain this bizarre behaviour - most support threads seem to peter out without being resolved. Has anyone any idea what's going on please? I'm quite happy getting stuck into the command line, if that's needed.
    Many thanks
    David

    The Macbook Pro is connected wirelessly to the router, the Mac Pro connects to the same router by ethernet.
    As far as I'm aware, I'd made no changes to any of the setups (computers or router) before the problem occurred: bonjour worked fine, but in one direction only (the MBP could see the Mac Pro, but not vice versa). Now, the Mac Pro can see the MBP, but not vice versa - and this is a problem because my printer and itunes server both sit on the Mac Pro.
    I've set all the firewall and security settings I could find to transparent access - and (except for the obvious difference between the wired and wireless links), the setups are identical on both computers.
    By the way, I can connect to the Mac Pro easily enough and transfer files, I just can't see it via bonjour or use Screen Sharing (again the settings haven't changed since they were working!)
    Many thanks
    David
    Many thanks
    David

  • I have just downloaded itunes to my new laptop. I can see purchased music but not all my cds - do i needto reload them?

    I have just downloaded itunes to my new laptop. I can see purchased music but not all my cds - do i need to reload them?

    See Empty/corrupt iTunes library after upgrade/crash.
    tt2

  • HT5361 suddenly I cannot see my gmail in my inbox on my macbook.  I deleted the gmail account and added it back but I cannot see new gmail in my inbox.  I can see sent gmail but not incoming gmail.  The gmail is visible if I go to my google account on goo

    Suddenly I cannot see my gmail in my inbox on my macbook.  I tested it and I can see my gmail in google.  I deleted my gmail account on my macbook mail and re-added it and still cannot see incoming gmail.  I can see new icloud e-mail.  I have both a gmail account and an icloud account.    For my test e-mail in gmail, I can see sent gmail but not incoming gmail.  How do I fix this?

    Try rebuilding the mailbox. This can take awhile if you have a lot of mail.
    Rebuild mailbox
    Try re-indexing the mailbox. This can take awhile if you have a lot of mail.
    Reindex messages
    What does Mail/Window/Connection Doctor Show? If the server is red, select it and look at the Show Details box.
    Troubleshooting sending and receiving email messages

  • Document library: user can see the metadata but not the file itself

    Hello,
    For a specific document library certain users will have the right to see the metadata but not the file itself. The only solution I can  think of is using a http handler. But I don't know if I can get the user that requests the document.
    Are there any other approaches to this requirement?
    Can I get the username of the user that makes that request?
    I guess that http handler is deployed at the Web application level - am I right?
    Thank you
    Christos

    Nicolas, thank you for your answer.
    I think this this is not a strong protection. Everybody can istall sp designer or go through UNC path, like \\myserver\documentlibray or \\myserver\lists\mylist and see the documents- and we use unc paths a lot. I don't want to get into trouble when a (wiki)
    leak is made.
    Christos

  • Can see in appletviewer but not in browser

    Hy,
    I am trying to display a text on JTextArea using the code below. In appletviewer this is OK but I can not see the text on browser (IE 6, NS 8, Firefox 1.0.7). The browser only show a retangle applet. No exceptions.
    If I insert this two lines
    output = " \nHy";
    outputArea.append( output );
    then I can see "Hy" but not the text in mytext.txt. Why?
    Thanks
    Flow
    import java.io.*;
    import java.awt.Container;
    import javax.swing.*;
    public class myClass extends JApplet {
         public void init() {
              JTextArea outputArea = new JTextArea();
              outputArea.setLineWrap(true);
                 outputArea.setWrapStyleWord(true);
                 outputArea.setEditable (false);
              Container container = getContentPane();
              container.add( new JScrollPane( outputArea ) );
              String output = "";
              String file = "mytext.txt";
              try {
                   BufferedReader bufR = new BufferedReader(new FileReader(file));
                   String s = null;
                   while ((s = bufR.readLine()) != null) {
                        output += s;
                   bufR.close();
              } catch (Exception e) {
                   e.printStackTrace();
              outputArea.setText(output);
    <html>
    <head>
    <title>Untitled Document</title>
    </head>
    <body>
              <applet code="myClass.class" width="300" height="80"></applet>
    </body>
    </html>

    in your Java Console, while runnig your applet on browser you'll se...
    Java Plug-in 1.5.0_04
    Usar versi�n JRE 1.5.0_04 Java HotSpot(TM) Client VM
    Directorio local del usuario = C:\Documents and Settings\mbaiges
    java.security.AccessControlException: access denied (java.io.FilePermission mytext.txt read)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkRead(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
         at java.io.FileReader.<init>(Unknown Source)
         at myClass.init(myClass.java:24)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)That's because an applet needs to be a "signed applet" to have the requested privileges to access to local files, such as your "mytext.txt".
    There are many topics related to this problem that will help you to solve it :-)

  • In iPhoto, I can see the thumbnails but not the full-size photos

    In iPhoto, I can see the thumbnails along the bottom but I can't see the full-size photos - I just see a black screen. What should I do?

    There are several possible causes for the Black Screen issue
    1. Permissions in the Library: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to check and repair permissions.
    2. Minor Database corruption: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    3. A Damaged Photo: Select one of the affected photos in the iPhoto Window and right click on it. From the resulting menu select 'Show File (or 'Show Original File' if that's available). (On iPhoto 11 this option is under the File -> Reveal in Finder.) Will the file open in Preview? If not then the file is damaged. Time to restore from your back up.
    4. A corrupted iPhoto Cache: Trash the com.apple.iPhoto folder from HD/Users/Your Name/Library/ Caches...
    5. A corrupted preference file: Trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    If none of these help:
    As a Test:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • In my .ipa viewer builder i can see free folio but not retail folio

    Hi,
    here's my prob: i am testing my viewer app for a multifolio subscription app. I can see the free issue but not the retail issue. I checked probably all the possible probs: in app purchase and retail folio have same ID, i logged out from iTunes and created a test account for the purchase. But after i tested and downloaded the free issue and loaded in the folio organizer the retail folio, nothing else appears in my .ipa...
    Any help would be soooooo appreciated

    ok, solved (but i'll leave the thread on, so it might be useful to anyone else): the problem was about IDs. Bundle ID was different from folio ID (i mean com.company.publication). They HAVE to be exactly the same

  • Tablet & mobile can see desktop tabs but not in the other way

    Hi
    I have an android tablet, an android phone, a laptop, and a desktop at work. All with synced firefox.
    I use aurora on laptop and desktop, and beta on both android.
    On the desktop, i can only see tabs from the laptop, and on the laptop, only one from desktop.
    And on both android, i can see tabs from both laptop and desktop.
    In all cases, i can't see tabs from the both android.
    Sync is ok because i can see desktop ones on the android but it's not as useful as it could be if i can't have all tabs on every firefox, i cannot read on my tablet or my desktop tabs previously opened on the phone. I can see them in the history, though.
    Any hint about this?

    Did you check the sync setting to see if the tabs are synced?

  • Can see the network but not the basestation

    I've seen lots of problems for configuring an older (Dual Ethernet) base stations, however I've not seen a problem quite like mine. both of my laptops can see and connect to the network, however the connection doesn't get past that point. This has happened before, however the new part is that neither of my laptops can find the base station via the airport admin utility. I have a MBP running leopard and a TiBook running 10.4.10 and they both have the same problem.
    I've tried using the configure other option and enter the IP address for the router but I always get an error code. I've tried connecting via either of the 2 ethernet ports as well and neither of my computers will acknowledge that the base station is there. I've checked the original documentation and the lights are behaving as though nothing is wrong other than no network activity.
    I'm loosing my patience and I'm about the throw the thing out a window

    I have a similar problem with my TiBook G4 10.3.9 and my Airport Snow. The laptop does not see the base station and tells me I have no network selected. The TiBook sees other networks and lists them in Internet Connect, but my account is missing. The base unit seems to be functioning properly, flashing all the requisite lights.
    I've tried using the Airport Setup Utility and the Airport Admin Utility to reconnect but neither sees the base unit. Any suggestions would be appreciated.

  • Valid users can see a site, but not the document libraries they have permissions for

    Hello everybody,
    at a customer's site, there is SharePoint Foundation 2013 SP1 running, bound to both http and https. Seeminlgy out of nothing, a strange behavior occurred: Visting
    http://intranet/subsite showed the page headers (logo, global navigation etc.), but no content. The welcome text was missing as well as the links to the document libraries which should appear in the left navigation.
    After explicitely adding http://intranet as an alternate name (https://intranet was active only, don't know why), we can again reach content via http. Still strange appears, that
    http://intranet global navigation links get redirected to https (fine, but unexpected). If we change a deep link to a document library from https to http in the browser's address bar, we can reach the content fine.
    However, one problem still exists: This site gets published via TMG 2010 via https, and that also worked just fine for many months. But now, I can try what I want in TMG, valid authenticated users see only the top navigation, but no content at all.
    Can anyone give me a hint about what to check? Of course, I will provide any info you may need.
    Best Regards, Stefan Falk

    Hello Daniel,
    Thank you for your response. As to your questions:
    I just added http://intranet to the alternate access mappings of the intranet zone and did not extend a website.
    Besides SharePoint Central Administration, there is no other SharePoint web site collection on this server, and no other non-SharePoint-IIS-Site. This is a VM for nothing else than hosting this single intranet site collection.
    We do see the same issue under two sub-websites underneath
    http://intranet, namely http://intranet/Datenaustausch and
    http://intranet/Protokolle. In both sub-sites, there is some welcome text on the home page and there are several document libraries, each with permissions not interited, but explicitely granted to specific users.
    The first (solved) issue was, that we could not see the document libraries when using http, but could see them using https. This was solved by adding the alternate access mapping for
    http://intranet explicitely.
    We can successfully browse the sites (using http and https now) from the internal network. The one issue left is that the same does not work through TMG, that is, coming from the external network, we can see and call up the sites in a browser, but not any
    content in them. We do see the site title and logo, and the global navigation at the top of the page, but we do not see the welcome text, nor the document libraries. This did work last week, and we do not know nor could find, why it stopped working. The issue
    persists regardless of whether we use bridging to https or to http between TMG and SharePoint.
    We have already restarted the SharePoint box, with no success.
    If I can provide any further information needed, I will be glad to do so.
    Best Regards, Stefan Falk

  • NAS200 - Can See Public Drive but not private

    Recently, I purchased new Dell XPS and connected to my network.  I can "see" everything.  All computers are running Windows 7.  Home Premium on older ones and Professional on the new XPS.
    Now the real problem...  when I connect to NAS with new XPS, I can only see the public share drive.  The private (backups of all my files) does NOT show.  I've compared and matched network settings.
    Any Ideas?
    Jeff

    Log in to the NAS200 web interface and turn off the option "convert failed logins to guest logins".
    ===Jac
    Frequent NAS200 Answers:
    1. DISABLE the "convert failed logins to guest logins" option to fix permission problems.
    2. NEVER insert or remove hard disks while the power is on. NAS200 doesn't support hot swapping.
    3. ALWAYS use the power button to turn the NAS200 off, don't just unplug it.
    4. Don't trust RAID. Make BACKUPS!
    5. To ACCESS the disks directly, you will need ext2 and/or XFS file systems. I recommend using SystemRescueCD.
    6. Disks will get HOT with standard fan, use "green" disks or consider replacing the fan.
    7. FTP server is insecure and doesn't work behind a NAT router. Use my firmware and SCP instead.
    8. MY FIRMWARE supports SSH shell prompt and SCP for secure file access, and allows running other software.

  • Iphoto : can see all thumbnails but not full size

    I imported about 1000 photos into ipod and I can see the thumbnails just fine. But, when I double click on any thumbnail, all I see is a big white empty box with a ? inside. Please help!

    Andy:
    Give this a try: download and run BatChmod on the iPhoto Library folder with the settings shown here, substituting your account name for mine. You can either type in the path to the folder or just drag the folder into that field.

  • Wireless devices can see wireless network but not connect

    Can anyone please assist?  I have a WRT54GS v2.  My wired computer accesses the Net fine and I can see MAC address, IP Address, DNS, subnet mask, default gateway in the linksys browser software. The devices can see the network with strong bars but cannot connect.
    HELP!
    Thanks,
    Solved!
    Go to Solution.

    It is possible that the router could have encountered some wireless interference, doughboy17. You may try adjusting the wireless channels of the router. Use channels 6, 3, 1 and 11. Have you tried checking if you still have the correct Wi-Fi password?
    If you have the correct network settings, try requesting for the firmware file and perform an update. That might help in resolving this matter. Or, you may proceed on doing a factory reset and configure the router again. 
    Help, learn and share

  • Air drop problem: My macbook can see the imac but not vice versa.

    Thats about it, When I open air drop on my imac i cant see my macbook but when i open air drop on my mac book I can see my imac, help?

    I had the same problem on my mac mini. 
    Makes sure your computer is on the following list.
    Only the following Apple computers are able to take advantage of the Air Drop feature:
    MacBook Pro (Late 2008 or newer)
    MacBook Air (Late 2010 or newer)
    MacBook (Late 2008 or newer)
    iMac (Early 2009 or newer)
    Mac mini (Mid 2010 or newer)
    Mac Pro (Early 2009 with AirPort Extreme card, or Mid 2010)

Maybe you are looking for

  • Keynote multi-screen presentation

    In about two weeks I have a presentation in a room where I have three separate flatscreens at my disposal. I want to use all three of them, at the same time. Using the 2 Thunderbolt ports and HDMI port of my MacBook Pro, I have managed to connect all

  • TS4079 Siri says, Sorry, I can't make that call.   What's up with that?

    Siri finds the contact, says it's calling, then comes back saying it can't make this call.  This has only happened since iOS7

  • Current position in image resets upon switching between images

    I have Adobe Photoshop CS3 on Windows XP.  Here's what happens: I have multiple images open at once I'm zoomed in real close on a picture, say somewhere in the lower-right-hand corner of the image I switch to another image (ie, go to Window->[Other I

  • Maximize a Web Template Window

    Again, sorry for what is probably a basic question, but I just can't find the answer and I hope someone can help. I have a Web Template called directly by a URL Link, and the window which the Template is shown in I want to be maximized automatically.

  • V$UNDOSTAT BEGIN)TIME GREATER THAN SYSDATE

    I have 18 rows in V$UNDOSTAT with begin_time greater than sysdate. what could have caused that? I noticed this anomaly when i was looking for some undo information. All that has happened recently is, I have restored the db (9.2.0.1 on REHL 3) on a di