Front Panel Views in Network Assistant are Incorrect

Hi, I am having problems with the network assistant not showing the front panel view's correctly when connecting to our stack of 3850's. As can be seen in the attached image of 3 switches they show that identical ports are enabled on each one.  Switch number 3 should actually be all grey as no devices are connected to this new member.  The Network Assistant Version is 6.1,  Is there a way of fixing this?
Thanks
Phil

Hi Miguel,
It is possible to programmatically set or change the position of front panel objects. (for example: http://digital.ni.com/public.nsf/allkb/4D0DA06B431​95B3F862572F3000AF2D3?OpenDocument) However, if you haven’t intentionally done that, it seems unlikely that it is the problem.
Have you tried copying the entire block diagram in to a new VI to see if the problem persists? While it is unlikely, you are right that it is possible for VIs to become corrupted. I’ve never heard of a situation like this except in the situation where the settings Tom had you check have been changed. Here is some information about those settings:
http://digital.ni.com/public.nsf/allkb/7567EF257B9​CFDF986256F630073228F?OpenDocument
Since there was no rearrangement when you copied the front panel to a new VI, you might try copying the block diagram a little bit at a time to see if there is some particular part of it that creates the problem somehow.
K. Johnson

Similar Messages

  • Why cannot the block diagram view of a VI show the "connector pane" view in the UR corner, like the front panel view does?

    Perhaps there is a good reason for this that I just haven't figured out. I haven't seen any questions about it searching the NI site, however.
    But it just seems totally inconvenient to always have to go to the front panel to get to the connector pane view, especially if some of those connectors are hidden. Then I have to go to the block diagram, guess which control/indicator I want to unhide, go back to the FP to check it on the connector pane, then go back and hide it again, and repeat if necessary. Even if the C/I is visible on the FP, it's still an extra step or two.
    When I'm building connections using the block diagrams and planning where to put connectors in subVIs so they would be easier to wire up (line up inputs/outputs on sides, not have to go top-to-bottom, etc.), it sure would be nice to be able to work totally in the block diagram realm.
    Cameron
    To err is human, but to really foul it up requires a computer.
    The optimist believes we are in the best of all possible worlds - the pessimist fears this is true.
    Profanity is the one language all programmers know best.
    An expert is someone who has made all the possible mistakes.
    To learn something about LabVIEW at no extra cost, work the online LabVIEW tutorial(s):
    LabVIEW Unit 1 - Getting Started
    Learn to Use LabVIEW with MyDAQ
    Solved!
    Go to Solution.

    Yamaeda wrote:
    Good idea, put it in Idea Exchange!
    It has been there for a while already. No need to duplicate....
    LabVIEW Champion . Do more with less code and in less time .

  • Front Panel View Find Home Key

    In the Panel View, I am looking for an equivalent key such as Ctrl+Home to press to get me to the location of the origin on screen...Anybody know this one?

    Hi Jack,
    the [0,0] is gone here
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • I cannot update my iphone the iphone update will download completely i then recieve an error message that my network settings are incorrect or my network has timed out and to try again later. i have tried 3 different networks

    please help i cannot update my iphone . i am running itunes 10.5 and this updated and installed fine.
    the iphone update will download all 774 mb but each time the download finishes i recieve the same error message.
    this says that the network settings were incorrect or the network timed out please try again later.
    i have tried using 3 different internet networks and the connection have been fine.

    I've been getting timed out for 2 days now, what finally worked for me was not plugging the phone into the computer and just doing the update through my wifi, worked perfectly, took less than 15 minutes

  • IMac G4 Flat Panel set for network start up incorrectly

    How do I fix this. I think while I was nosing around I mistakenly set my mothers iMac g4 to start up from network. It is not on a network so...How do I change this start up preference if when it starts up is always searches for a network. I have the install disc for OS 10.4.
    Help!

    dmleader:
    Although this is not the best forum for that question try the following:
    1 - open System preferences
    2 - click on Startup Disk
    3 - in the next window select your HD instead of the Network.
    Now to get it to boot into you HD try holding down the "S" key to boot into Safe mode. If that works you can do the previous.
    If not then boot into your system install disk and in the first window after the language selection window go to the Utilities menu and select Startup Disk. There you can select you HD system instead of the network.
    If none of these work post your question in the Tiger forum as there will be users there that can tell you how to boot into another mode and set it from the Terminal. Good luck.
    Do you Twango?

  • How to display remote front panels of subvis that are already open

    I inherited an RT project that uses remote front panels for nearly all the user interfaces. The host application opens a remote front panel the the top level RT vi, and there are several subvis on the RT system that are opened from that top level vi and thus displayed on the host (i.e. their "Show Front Panel When Called" properties are set TRUE).
    If the Host loses its connection to the RT system when any subvi front panels are opened, and the host application is restarted, it can re-open the top level vi remote front panel, but all the RT subvis that are already open will not display their front panels. I am looking for a way to open the front panels to these subvis from the host application.
    The kicker is, I need to know which subvis are actually running before I attempt to open remote front panels. Is there any way to determine what subvis are actively running (and not just in memory, such as subvis that won't get executed until the top level vi reaches a certain state)? I am thinking that I could create a list of the subvis that I need access to, check to see if any are actively running on the RT system, and then invoke a remote front panel connection with those that are running.
    Does anyone have any ideas as to how I might be able to do so? Or any other suggestions? [and yes, I know that RFP communication is probably not the best way to go, but we're too entrenched in this software to start over with a new system!]

    TurboPhil wrote:
    If the Host loses its connection to the RT system when any subvi front panels are opened, and the host application is restarted, it can re-open the top level vi remote front panel, but all the RT subvis that are already open will not display their front panels. I am looking for a way to open the front panels to these subvis from the host application.
    It might be possible to work around this behavior by placing VI invoke nodes in your top level VI that reference each of your subvis and setting the Wait Until Done invoke method to false.  This should cause the subvi to close when the top level VI closes even in the case of an unexpected restart.
    You can access this invode node in the functions pallet by selecting Application Control » Invoke Node and also selecting Application Control » Static VI reference.    Wire the Static VI Reference to the vi reference input node and double click the Static VI Reference and select the appropriate subvi in the dialog window.  Left click on the Method section of the invoke node and select Run VI. Finally right click on the Wait Until Done invoke method and select Create Constant and ensure this constant is set to false. 
    TurboPhil wrote:
    The kicker is, I need to know which subvis are actually running before I attempt to open remote front panels. Is there any way to determine what subvis are actively running (and not just in memory, such as subvis that won't get executed until the top level vi reaches a certain state)? I am thinking that I could create a list of the subvis that I need access to, check to see if any are actively running on the RT system, and then invoke a remote front panel connection with those that are running.
    You can access this information by using the Real-Time System Manager (Tools » Real-Time Module » System Manager).  This can be used to show what VIs and subvis are loaded into memory and which are running.
    For more information on using this tool please referere to this Knowledge Base article. 
    Message Edited by BLAQmx on 02-18-2008 11:40 AM
    Mark
    LabVIEW R&D

  • Cisco Network Assistant 5.5 and WS-X4013+10GE

    I have installed CNA 5.5 and it works fine with most of the devices, including catalyst 4500 series with different supervisors (WS-X4013+, WS-X4013+TS, WS-X45 SUP6-E).
    It can also detect supervisor WS-X4013+10GE, but CNA failed to show this device in Front Panel View. Is there anything I have to do to make the devices with Supervisor WS-X4013+10GE to be shown in Front Panel View?
    WS-X4013+10GE are in either 4503 or 4506 chassis, running IOS version 12.2(31)SGA or 12.2(40)SG.
    Please give some hints, thanks.
    Rgds,
    Sunny

    I  downloaded Cisco Network Assistant 5.5, everytime when I try to run
    I get error message "Could not creat Java virtual Machine' any idea how
    to solve this?
    To overcome this problem, open the file C:\Program Files\Cisco Systems\CiscoSMB\Cisco Network Assistant\startup\startup.properties (the default installation path), and modify this entry:
    JVM_MAXIMUM_HEAP=1024m
    Replace 1024m with a lower setting that does not exceed the available RAM. There is no way to foresee what value will work. Try 512m, and lower it further if necessary. You can use the dial peer tag range 2500 to 2999 out-of-band to define your own dial peers.
    Check out the below link for more information
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_network_assistant/version5_0/release/notes/OL12210a.html
    Hope to Help !!
    Ganesh.H
    Remember to rate the helpful post

  • Cisco Network Assistant C4948E

    Greetings,
    I'm experiencing considerable difficulties with CNA and my 4948E cat's.  Front panel view, vLans and VTP utterly fail...and I have gone to GREAT lengths.  I initially configured them all for comprehensive use in a vSphere environment.  Storage switch fabric and multi-vlan guest networking.  I wiped the config's across the board, factory reset all of them in an attampt to get CNA working.  NO GO and it's been wildly frustrating, 80+ hrs spent with no results.
    So is CNA truely compatible with the 4948e?  And if so, WHAT IN THE HELL AM I DOING WRONG!!?!?!?!!!!!?
    Errors:
    Config and info:
    C4948#show ver
    Cisco IOS Software, Catalyst 4500 L3 Switch Software (cat4500e-ENTSERVICESK9-M), Version 15.1(1)SG2, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2012 by Cisco Systems, Inc.
    Compiled Wed 24-Oct-12 02:27 by prod_rel_team
    ROM: 12.2(44r)SG11
    C4948 uptime is 22 minutes
    System returned to ROM by reload
    System image file is "bootflash:cat4500e-entservicesk9-mz.151-1.SG2.bin"
    Hobgoblin Revision 21, Fortooine Revision 1.40
    Last reload reason: Reload command
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    agree to comply with applicable laws and regulations. If you are unable
    to comply with U.S. and local laws, return this product immediately.
    A summary of U.S. laws governing Cisco cryptographic products may be found at:
    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html
    If you require further assistance please contact us by sending email to
    [email protected].
    cisco WS-C4948E (MPC8548) processor (revision 8) with 1048576K bytes of memory.
    Processor board ID CAT1549S3LR
    MPC8548 CPU at 1GHz, Cisco Catalyst 4948E
    Last reset from Reload
    1 Virtual Ethernet interface
    48 Gigabit Ethernet interfaces
    4 Ten Gigabit Ethernet interfaces
    511K bytes of non-volatile configuration memory.
    Configuration register is 0x1
    C4948#show mod
    Chassis Type : WS-C4948E
    Power consumed by backplane : 0 Watts
    Mod Ports Card Type                              Model              Serial No.
    ---+-----+--------------------------------------+------------------+-----------
    1    52  4948E 10/100/1000 (RJ45) 10GE (SFP+)   WS-C4948E-E        CAT1549S3LR
    M MAC addresses                    Hw  Fw           Sw               Status
    --+--------------------------------+---+------------+----------------+---------
    1 5057.a8d0.cd00 to 5057.a8d0.cd33 3.0 12.2(44r)SG1 15.1(1)SG2       Ok
    C4948#show run
    Building configuration...
    Current configuration : 4082 bytes
    ! Last configuration change at 07:13:04 UTC Fri Dec 28 2012
    version 15.1
    no service pad
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    service compress-config
    service sequence-numbers
    hostname C4948
    boot-start-marker
    boot-end-marker
    enable secret 4 4HopspGORG5lisjFN8lm2FKJv0pK2yWy35.cHKTMILk
    no aaa new-model
    ip vrf mgmtVrf
    crypto pki trustpoint TP-self-signed-15493
    enrollment selfsigned
    subject-name cn=IOS-Self-Signed-Certificate-15493
    revocation-check none
    rsakeypair TP-self-signed-15493
    crypto pki certificate chain TP-self-signed-15493
    certificate self-signed 01
      30820221 3082018A A0030201 02020101 300D0609 2A864886 F70D0101 05050030
      2C312A30 28060355 04031321 494F532D 53656C66 2D536967 6E65642D 43657274
      69666963 6174652D 31353439 33301E17 0D313231 32323830 37303833 385A170D
      32303031 30313030 30303030 5A302C31 2A302806 03550403 1321494F 532D5365
      6C662D53 69676E65 642D4365 72746966 69636174 652D3135 34393330 819F300D
      06092A86 4886F70D 01010105 0003818D 00308189 02818100 B98A90E9 C7944EDC
      FEF7B950 47F1AD32 0B6AC34C 49D8FB56 D0189D62 CEC8F974 26E85187 C8EC9CEF
      35885C3D BCFB436F EEEB5D54 84708363 77317248 67D8DA4C AC64FB04 225C3822
      3A4D22B9 C12A712A B22E3A2B AE3839DF 4C7EBD6A B64D40E1 BC320307 D2ECEBF3
      D35ED80E 6CB31C01 4D1A2763 AB96792F B53D8A03 8584FDB1 02030100 01A35330
      51300F06 03551D13 0101FF04 05300301 01FF301F 0603551D 23041830 1680146D
      6B5ED2DA 8BA3C329 99190C69 D3C267D5 3975AF30 1D060355 1D0E0416 04146D6B
      5ED2DA8B A3C32999 190C69D3 C267D539 75AF300D 06092A86 4886F70D 01010505
      00038181 003A131D 1D66E5A7 86BA776E 640A1206 2D4CB548 99F6C9C9 F6E94859
      5CAF4906 2B85BC5B 6BD83927 06FE03E1 21CA9F8C 389598D8 0FAFED72 3F855E8A
      948780EB BCF976E7 A24BADC7 68D009CB 3C481507 E94D4901 3E6CA71E 4CAFDAAA
      E77F1461 92D05DDF B97C8F49 9E085908 DA6BF21B 9F602885 5F1FB532 1547110A
      AEAB3A39 72
            quit
    power redundancy-mode redundant
    spanning-tree mode pvst
    spanning-tree extend system-id
    vlan internal allocation policy ascending
    interface FastEthernet1
    ip vrf forwarding mgmtVrf
    no ip address
    speed auto
    duplex auto
    interface GigabitEthernet1/1
    interface GigabitEthernet1/2
    interface GigabitEthernet1/3
    interface GigabitEthernet1/4
    interface GigabitEthernet1/5
    interface GigabitEthernet1/6
    interface GigabitEthernet1/7
    interface GigabitEthernet1/8
    interface GigabitEthernet1/9
    interface GigabitEthernet1/10
    interface GigabitEthernet1/11
    interface GigabitEthernet1/12
    interface GigabitEthernet1/13
    interface GigabitEthernet1/14
    interface GigabitEthernet1/15
    interface GigabitEthernet1/16
    interface GigabitEthernet1/17
    interface GigabitEthernet1/18
    interface GigabitEthernet1/19
    interface GigabitEthernet1/20
    interface GigabitEthernet1/21
    interface GigabitEthernet1/22
    interface GigabitEthernet1/23
    interface GigabitEthernet1/24
    interface GigabitEthernet1/25
    interface GigabitEthernet1/26
    interface GigabitEthernet1/27
    interface GigabitEthernet1/28
    interface GigabitEthernet1/29
    interface GigabitEthernet1/30
    interface GigabitEthernet1/31
    interface GigabitEthernet1/32
    interface GigabitEthernet1/33
    interface GigabitEthernet1/34
    interface GigabitEthernet1/35
    interface GigabitEthernet1/36
    interface GigabitEthernet1/37
    interface GigabitEthernet1/38
    interface GigabitEthernet1/39
    interface GigabitEthernet1/40
    interface GigabitEthernet1/41
    interface GigabitEthernet1/42
    interface GigabitEthernet1/43
    interface GigabitEthernet1/44
    interface GigabitEthernet1/45
    interface GigabitEthernet1/46
    interface GigabitEthernet1/47
    interface GigabitEthernet1/48
    interface TenGigabitEthernet1/49
    interface TenGigabitEthernet1/50
    interface TenGigabitEthernet1/51
    interface TenGigabitEthernet1/52
    interface Vlan1
    ip address 172.20.0.2 255.255.255.0
    ip http server
    ip http secure-server
    line con 0
    stopbits 1
    line vty 0
    password poop
    login
    line vty 1 4
    login
    end
    C4948#

    I just tried with the latest IOS 15 and 12 (below) and neither made any difference...getting the exact same errors. This is crazy.
    cat4500e-entservicesk9-mz.151-2.SG.bin
    cat4500e-entservicesk9-mz.122-54.SG1.bin
    Here are all the IOS versions I've tried, all of which exhibit the exact same errors:
    cat4500e-entservicesk9-mz.122-54.SG1.bin
    cat4500e-entservicesk9-mz.151-1.SG2.bin
    cat4500e-entservicesk9-mz.151-2.SG.bin
    cat4500e-entservices-mz.151-1.SG1.bin

  • Connecting extra monitor to DVI-I connection EVS 1464 (displaying Front Panel)

    Hi,
    Currently developing a Vision system using the following:
    LabVIEW 2010 SP1
    LabVIEW 2010 Real-Time SP1
    Vision Development 2010 SP1
    EVS 1464
    My question is:
    How can I display my front panel, running on the EVS, on a monitor connected to the DVI-I output of the EVS 1464?
    Thanks ahead!
    Roy
    Solved!
    Go to Solution.

    Hi Roy, I'm not sure if Hossein actually read that KB or not, but it deals with displaying the front panel over the network on a Windows machine, not out through the monitor connection on the EVS running LabVIEW RT.
    To answer your original question, no, it is not possible to view the standard LabVIEW front panel on the RT system today. All the code for displaying all the front panel UI buttons, controls, and indicators is simply not present in LabVIEW Real-Time and is only viewable on a seperate machine that is either running the development environment or using a web browser that has the LabVIEW plugin installed. 
    Having a UI display on RT is certainly a requested feature and perhaps it might be available some day. You might want to check this request: http://forums.ni.com/t5/LabVIEW-Real-Time-Idea-Exchange/Real-time-display/idi-p/1391108 . It has some good ideas for what other alternatives exist today as well.
    However, this is one way to use the monitor output on the EVS and other LabVIEW RT systems. Vision Development Module includes RT Video Out VIs that can display any image on the connected monitor. You can either display images captured from cameras or custom images, as well as overlay text and simple graphic objects (lines, circles, rectangles, etc). It is certainly more effort than the normal front-panel editor in LabVIEW but it might be suitable for your needs if you want a few things to display. Of course you will have no mouse/keyboard so you cannot interact with any on-screen elements directly.
    Eric

  • How do I get the front-panel to pop to the front of the screen?

    I have a program that is reading in some network files. When a certain part of the file has been changed I want to pop up the front panel and blink the changed area. The blinking is easy and I can get the VI to pop to the front of any other running LV stuff (using the IsFrontmost vi property) but I need the vi to pop to the front of the entire screen and whatever else is running (Excel or the such). Any ideas on this? I'm doing the development on LV 6.1 on Win2k.
    Thanks,
    Gary

    Mache wrote:
    Hi Gary,
    There is one thing I think you may have to do. If the window is minimized than it will try to make it topmost but the minimize will take precedence, so you will see the task bar blink and the OS stays in the active/current window. Try to use the "restore window" vi before trying to make it topmost. That should work.
    Also make sure that, the LV window you are trying to restore and make topmost is not superceded by another LV modal window.
    Thats my take, Let me know if that works, for future reference.
    Good Luck
    Mache
    I've tried putting in the Restore Windoe vi and the results are the same. Both of those functions (seperate or together) result in the window moving to the top of the other LV screens only. If I have Word or explorer or anything else open, that window will stay on top and the task bar flashes. Can I use the "move window to front" vi in my main vi to move my main vi's front panel to the front? If not are there any ways to get around this? My program is mostly running in the background but when there's an important change I need it to move to the front and take precedence for a few seconds.

  • What is the most efficient way to have full access to the front panel on RT Labview?

    I have a RT machine that needs to do its job and also port the front panel to an external machine over the network. What is the most efficient way to do it? Using as little of the RT time as possible but providing full functionality to the RT front panel.
    So far I have been using it directly from Labview - running the VI on a remote (RT) and have the front panel on local Labview (WINDOWS). I know I can do it with also through WWW (not very happy with that though).
    LV2009 SP1.
    Thanks

    Running a compiled executable on the RT target, rather than running it within the development environment, is probably slightly more efficient but limits you to the web interface.  If you're running within the LabVIEW environment, I doubt there's a noticeable difference in efficiency from the RT perspective between the web server and the LabVIEW front panel, although that's mostly a guess (I would expect the RT system to send identical data in each case, once the front panel is loaded).  Those are your only options in modern LabVIEW versions.  In LabVIEW 7.1 you could build an executable that acted as the front panel for an RT system, but that feature does not exist in recent versions.  However, a quick search turned up this document with code to approximately duplicate that behavior, perhaps it will work for you?

  • Cisco Network Assistant v6.0 & C2960X-24TS-L Display Problem

    Hello,
    I have recently updated to CNA 6.0 and added a C2960X-24TS-L switch to a small ten switch LAN.  When viewed in the CNA Front Panel View, the active ports do not show as active (no green outline).  All other switches on the LAN (mostly 2960-24TC and 2960-S series) display properly.  If the C2960X-24TS-L is viewed through its web interface, all the active ports are properly shown with green highlight.  The C2960X-24TS-L is running 15.0(2)EX5.
    I also noticed that when viewing the switch mode LEDs in the web interface, the SYST, STAT, and MSTR are shown (properly) as illuminated, whereas in the CNA Front Panel View, only the STAT LED appears illuminated.
    Could someone advise me as to whether this is a known problem with CNA V6.0 ?  If so, is there a release update expected soon?  If it is not a CNA problem, is it correctable through a CNA setting or perhaps a OS update?
    Thank you,

    I can see active port on main stack switch, but not members

  • Front Panel bounds on secondary monitor

    Hello!
    I would like to display some elements of the front panel on the primary and others on a secondary monitor. So I decided to make a subvi from the elements I wanted to show on the secondary display.
    It nearly works, but I would like to have fullscreen on both of the monitors. Unfortunately if I change front panel bounds to be written in the attached subvi, it shows up on the primary monitor. If I leave front panel bounds to be read it works with the secondary monitor.
    Could you give me some advices how to solve the problem?
    Thanks!
    Attachments:
    subvi.vi ‏15 KB

    Dear VampireEmpire,
    One way you can do it is to create 2 SubVIs (each with the specific indicators etc, then set the Window Appearence of those VIs Custom, and check "Show Front panel when called"
    If you are in a VI, press Ctrl+I, or right click on the icon of the VI on the front panels upper right corner, get VI Properties and navigate to Window Appearence.
    In each of these VIs use the Invoke Node : 
    VI Server Reference (This VI), --> Invoke Node --> Front Panel --> Run-Time Position --> Maximized, and wire monitor number 1 to the primary and 2 for the secondary. Use for example a while loop, and if you want to terminate only one of the VIs at Run-Time, remember to Close the Front Panel (Invoke Node), and the reference.
    Then create a 3rd, VI, call it a wrapper, and insert the two VIs to be called. When you run this wrapper, you programatically call the other two VIs front panels.
    I have created a little example how to do it. Please find the attachment and tell me your experiences. 
    A more sophisticated way to do it would be to programatically open the references from the main.vi, and Open --> Run Time.maximize in a while loop --> Close the front panel in the caller.
    https://decibel.ni.com/content/docs/DOC-29472
    Best regards,
    Peter L.
    National Instruments Hungary
    Applications Engineer
    Attachments:
    MONITOR.zip ‏18 KB

  • Display faux spreadsheet on front-panel

    Hey, thanks to all that have been helping me answer all my LV questions. This site is awesome.
    My newest question:
    I am writing data to a spreadsheet in my program... I recieve a measurement from my scale via rs232... then, I display the data (floating point), the time (string) it was collected, and a comment (string) that the operator enters on the front-panel... They are prompted to "accept the data into spreadsheet"... when they accept, the data gets sent to the Excel file and the indicator boxes for the data, time, and comment go blank.
    What I would really like to do is have a "faux spreadsheet" (in addition to the indicator boxes) that displays the data that is sent to my Excel file. It's appearance would be similar to the Excel file. I tried using "build table", but it doesn't seem to accept strings... only numbers. Is there another method I could use?
    Next, I need to format the Excel file with column widths, fonts, etc... is the ActiveX control the best way to do this? Any examples out there?
    Man, thanks for all the help. This program has taken on a life of it's own (as these automation projects ALWAYS do).
    Thanks!

    You must have tried the Express Table function. Instead, use the normal table on the control palette. It is a 2D string array. The other way to do it is to embed an actual Excel spreadsheet on the front panel by using an ActiveX container.
    Yes, you need to use ActiveX to format the spreadsheet file. NI sells a toolkit that will do this and if you were search the forum for "Excel", you'd find hundreds of posts on the subject and many include example code.

  • Front panel remains after terminating lavbiew application

    I have created an application from a LabView VI.  I'm launching the application from LabWindows.  I'm monitoring for the application to terminate.  However, when I terminate the LabVeiw application, the LabView front panel is displayed and the LabWindows application terminated function doesn't see it as terminated until I close the front panel.  Why is the VI front panel being displayed when the application is terminated.  I have the program to run in dialog center screen.  Once the application terminates, the dialog disappears and the LV front panel appears. 

    I like to put the Close invoke node inside of a Conditional Disable Structure.  This way the front panel only closes when you are running an EXE and not when you are playing with the code.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    Close Front Panel.png ‏10 KB

Maybe you are looking for

  • Help I can only have max. 3 osx apps. open at the same time ?

    Help I can only have max. 3 apps. open at the same time ? If I have 3 apps. open, and try to open a 4th. this message comes up : The application "Mail" cannot be launched. -10810 Of cause if I'm trying to open up something else than mail, lets say iP

  • Can you assign the value of a jstl:out value to a jstl:set variable?

    Basically can you do the following? <jstl:set var="journeyVisit" value="<jstl:out value=${journeyVisits.stopPoint.description} />" /> Basically we have our own independent markup language and I need to use our own href tag to wrap the 'journeyVisit'

  • Why does my cover flow scroll bar look like THIS?

    here you can see how very often the scrollbar looks like. is there any known reason for that? when I change the size of the cover flow part of the window it changes back to normal. but very often, even in full screen view, the scroll bar looks this b

  • HT201320 Signing in with my gmail after changing my password fails

    I have been doing this all morning the simple and the advanced way, Put in all information correctly still not able to sign in. The message that my Iphone displays is that the IMAP server is not responding. I have logged on thorugh my mac. I have swi

  • Error in Travel & Expense of ESS

    Hi All, We have deployed a ESS package in the portal.  And we are able to view some services. We are getting the following error, with the Travel and Expense(All My Trips).  Actually all the services under Travel and Expenses are giving some kind of