Custom devices have strange icons in system explorer

In VeriStand 2013, my custom devices show up with strange icons in the system explorer. I've noticed this on several development computers. Are icons specifyable somewhere? Thanks.

Hello h_yong,
Yes icons are specified in the custom device xml and predefined glyphs are located at the following path: C:\ProgramData\National Instruments\NI VeriStand 2013\System Explorer\Glyphs.
This discussion forum walks through the specifics of changing the icon for your custom device. I hope this helps.
Wear
National Instruments
Product Support Engineer

Similar Messages

  • Strange icon in system prefernces

    It's weird, but within system preferences, i have a strange icon which seems to be corrupt. the icon is the startup disc icon. it seems to have enlarged and the words "start up disc" have disappeared, because the icon has enlarged. I wondered if there is a way to reinstall the system prefs application or if there is a folder where i can replace the icon. I wanted to attach a pic to this topic but can't. but if anyone wants to help i can email the pic which a have screen captured.
    Please help. It doesn't seem to effect my OS but it is a glitch and would love to sort it.
    Regards, Leigh

    Hi Leigh!
    Get Pacifist...
    http://www.charlessoft.com/
    then extract what you need from your Install Disk.
    But 1st do these...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, *you must select your language first.)*
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then boot from the HD, run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot.

  • TS4422 I don't have icloud icon @ my system preference to set it up even after software upgrade. how can I get icloud on my mac?

    How can i get icloud on my mac when I don't have icloud icon to set it up even after updating the software?

    You won't find iCloud in Snow Leopard. Upgrade to Mountain Lion.

  • Strange icon in system preferences...

    any ideas what to do about this one? Instead of my "dock" icon, i'm getting some weird picture...
    http://img218.imageshack.us/img218/9839/picture2xb7.png

    Quit from System Preferences and trash com.apple.preferencepanes.cache, which you will find in ~/Library/Caches, i.e the Caches folder in the Library of your Home. A new cache file will be rebuilt automatically.
    All the items in that Caches folder can do with being trashed every so often – they do tend to get corrupted or 'stale' – and they will be re-created afresh.

  • Calling Main and Extra Pages of Custom Device(s) from LabVIEW

    Hi,
    I am currently evaluating VeriStand (VeriStand 2011) and its control from LabVIEW using .NET APIs.
    I am trying to use LabVIEW to add and configure custom devices for a given system definition file.
    For that I am using a subpanel, the same way it is done in the System Explorer.
    It is almost working.
    I only get errors from VIs that are dynamically called from the Custom Devices API. These VI's are part of an lvlib which is called "Custom Devices Storage.lvlib".
    I can't find this lvlib on my Computer. So, I guess, this error is normal. The only way to get rid of this error would be to load this lvlib in memory, but how ?
    An example of a dynamically loaded VI from the Custom Device API :
    If I can't configure a Custom Device inside my own Human Man Interface, there is no way I use VeriStand in the future. I don't wan't an operator or an administrator to open the System Explorer and change anything else than Custom Devices that may change in several of our test benches.
    Is there a way to do that or should I throw VeriStand to the trashcan ?
    Thanks in advance for your answer(s).
    Regards,
     

    Hi DaHelmut,
    First of all, I apologize for the lack of applicable replies. What you're attempting isn't something we usually encounter so our team didn't quite understand.
    I'll restate what you want to make sure its clear: You want to make your own version of system explorer fir your team to edit system definitions with. You also want it to support configuring custom devices. Therefore, you need custom devices to work inside your system explorer just like they do inside the shipping system explorer.
    This is technically possible, and I will help you accomplish this with some advice, however I have never seen this done before so it might take us a while to figure out all the issues. Typically people developing a custom GUI for a test bench just use the system definition API directly instead of using custom device's as-is... which is more difficult, and I agree your approach is better if it works. However, most test benches have a known set of custom devices (maybe just XCP/CCP and scan engine) so they only need to use the system definition API for maybe a few custom devices... not any device.
    First things I should mention:
    Editing a system definition, either through your custom gui and therefore through the system definition API, or through the system explorer... always requires a PC or Full development license. An operator licenses will never be able to edit system definitions no matter what.
    There is a set of VIs provided by the ECUMC toolkit to add/remove/edit system definitions with the XCP/CCP custom device. You would have to put your own GUI on top, but the VIs are installed here: <\LabVIEW>\vi.lib\ECUMC\NIVS
    I have an unreleased set of VIs that do the same thing for the scan engine and ethercat custom device I can provide
    If you still want to create your own system explorer thats capable of loading and configuring any custom device, here are some suggestions:
    Custom devices are built into LLBs that include all of their dependencies, so they can be loaded by the LabVIEW run time engine. If you create a VI that loads custom device's, you should be careful to avoid cross linking corrupting your development system or your custom device's. For example your system explorer might use "Get File Extension.vi" from vi.lib, but the custom device you're loading might also use this VI and therefore its linked to a copy inside its LLB. You will know when cross linking happens when the LabVIEW load warning dialog appears saying "vi X loaded vi Y from Z instead of A". If that happens, do not save. To avoid this entirely, it might be easiest to test your system explorer only as a compiled exe.
    As you saw, some custom device API VIs used by custom device developers make dynamic VI calls to an in-memory library named "Custom Device Storage.lvlib". Since this library is part of the shipping system explorer.exe source, these dynamic calls will error when not run inside the shipping system explorer.exe. There are two types that must be handled separately.
    Some custom device APIs like "NI VeriStand - Signal When Ready for Shutdown.vi" just make this dynamic call, and will simply return an error. These are mostly system explorer GUI specific custom device APIs. To avoid this error, you must create and bring this VI into memory yourself. So create that library and the stub VIs you need, then place static VI references to those stub VIs on your custom system explorer's block diagram. That will bring them into memory so when the custom device VIs try to dynamically call them, it will not error.
    Most custom device APIs like "NI VeriStand - Get Item Description.vi" make the dynamic call and instead of simply erroring, they will instead catch the error and switch to using a .NET implementation of the API call. I advise looking at the block diagram of this VI and then the corresponding offline API VIs to better understand this redirect system. Unfortunately, this redirection gets the offline API VI path relative to vi.lib which doesn't exist for exe's. So when you build your custom system explorer into an exe, you will need to place the "NI VeriStand\Custom Device Offline API" folder adjacent to the exe with these VIs for them to be found because the "vi library" primitive returns the exe's directory when inside an exe
    Let me know if that helps or if you have questions.
     

  • Accessing custom device FIFO array element by name

    Hi,
    Some of my custom devices have a large number if I/Os. Because the FIFOs are arrays, my custom device RT driver VI has been referencing them by indexing the arrays. Is there a recommended method to reference FIFO I/Os by name, and preferably the same name as the channel names that are created by the initialization VI? Referencing array elements by index can get very confusing and not very flexible if I need to add or remove custom device I/Os. Thanks.

    You could use an enum diagram constant to wire to the index terminal of index array. Make the item name correspond to the element name.
    LabVIEW Champion . Do more with less code and in less time .

  • Still have MobileMe icon (not iCloud) on my System Preferences,how can I install iCloud on Macbook pro?

    Still have MobileMe icon (not iCloud) on my System Preferences, how can I install iCloud on Macbook pro when directions say to click on iCloud icon in System Pref. ?

    Read the system requirements for iCloud.  It is not compatible with Snow Leopard which your system profile confirms you have. 

  • How to get the health , performance information and about the services run on devices that have connected to the system center?

    Hi All,
    I want to know how to get the health , performance information and about the services run on devices that have connected to the system center to my c# application. Also I need to know about the information of databases that have connected to system center.
    I will appreciate your feedback
    Thank you

    Hi,
    You can configure service monitor for the required service on the server
    refer below link for how to configure service monitoring
    http://www.bictt.com/blogs/bictt.php/2011/03/17/scom-monitoring-a-service-part3
    You can use SCOM SDK to connect to the scom server using c# and get required information
    http://msdn.microsoft.com/en-us/library/hh329086.aspx
    you can find the database in below registry path on management server
    HKLM:\SOFTWARE\Microsoft\Microsoft Operations Manager\3.0\Setup\DatabaseName
    Regards
    sridhar v

  • HT1212 my phone touch system has been destroyed i have to make a backup in laptop but when i m connecting ma device to itunes of ma laptop so its saying your device have a paascode like ma phone touch system is not working how should i type ma pass word ?

    my phone touch system has been destroyed i have to make a backup in laptop but when i m connecting ma device to itunes of ma laptop so its saying your device have a paascode like ma phone touch system is not working how should i type ma pass word ??? is there any way to open ma device from laptop nd sync my data , contacts etc to ma laptop ... i have to make my phone repair then...please help with thiss...

    Sorry No, if your screen is broken, then you won't be able to unlock your phone.
    You do backup your phone on a regular basis right?

  • Adobe Flash will not update to a W-2000 system and will not work? Is there a fix? Mozilla has disabled Flash. Do I have to go back to Explore?

    Adobe Flash will not update to a W-2000 system and will not work in Firefox? Is there a fix? Mozilla has disabled Flash. Do I have to go back to Explore?

    have you tried to install flash
    restart imac
    go to web site which require flash

  • Do we have any documentation describing the process a customer would have to follow to consolidate multiple WCS systems into 1 PI?

    Do we have any documentation describing the process a customer would have to follow to consolidate multiple WCS systems into 1 PI?

    NCS release notes provide details on  migrating multiple WCS servers to NCS, which then can be upgraded to PI.      
    http://www.cisco.com/en/US/docs/wireless/ncs/1.1/release/notes/NCS_RN1.1.1.html#wp298961

  • Downloading Yosemite and now have message saying "Wi-fi: no hardware installed"  Also do not have a wi-fi icon on system preferences menu.

    installed download of Yosemite and now have message saying "Wi-fi: no hardware installed"  Also do not have a wi-fi icon on system preferences menu.

    Is it in your applications folder (look in UTILITIES)?
    If not, reinstall the OSX.
    Ciao.

  • HT203796 I don't have the iCloud icon in "SYSTEM PREFERENCES" , any ideas?

    I could synchronize my iPad with my Mac Book Pro before replacing the hard drive and recoveing data from my Carbonite backup.
    Now I don't see the iCloud icon in SYSTEM PREFERENCES.
    Is this a common occurence?

    Welcome to the Apple Community alapan.
    Which operating system are you now using, OSX 10.6 and earlier do not have iCloud.

  • Strange "speech" icon in System Preferences

    The "speech" icon in System Preferences looks like a white oversized box with a lightswitch in it. The word "speech" is cut off along the bottom of this box-like icon.
    Any ideas as to what might have caused this, and if I can fix it? Thanks!

    Hi, JdotL.
    1. It sound like the Speech preference pane file has been assigned the icon for System Preferences. Does Speech preferences open if you click this?
    2. Try removing System Preferences preferences and caches:1. Quit System Preferences if it is open.
    2. Open your Home > Library > Caches folder, then trash the following two files therein:
    - com.apple.preferencepanes.cache
    - com.apple.preferencepanes.searchindexcache
    3. Trash the file
    com.apple.systempreferences.plist
    in your Home > Library > Preferences folder.
    4. Trash the file
    com.apple.systempreferences.xxx.plist
    in your Home > Library > Preferences > ByHost folder, where xxx is an alphanumeric string.
    5. Empty Trash.
    6. Launch System Preferences and see if the problem is resolved.3. As a general checkup, I suggest you run the procedure outlined in my "Resolving Disk, Permission, and Cache Corruption" FAQ. Perform the steps therein in the order specified.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • I used to have an icon next to the Time Machine icon in Safari that allowed me to sync my devices.  It disappeared and I don't know how to get it back.  Any suggestions?

    I used to have an icon next to the Time Machine icon in Safari that allowed me to sync my devices.  It disappeared and I don't know how to get it back.  Any suggestions?

    Lion no longer has iSync

Maybe you are looking for

  • How to disable software auto update from iPad

    I was trying to download my favorite programs and iOS 7, but first I have to stop software auto update, how will I do this?

  • ABAP Proxy creation doubt   -  Pls Help

    Hi Friends ,                       I have referred the following blog for abap proxy creation /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy                   as per the previous replies , <b>we have to generate proxiy f

  • MRP run for some listed component

    Hi Dear, I want to run MRP for 10 to 20 components instead of whole plant. Pl. let me know how I can run the same. Thanx in advance Regards L.B.Yadav

  • Microsoft Mobile Services Protocol

    Hi, Im wondering if RIM removed the msnmsp from live accounts. I was with BELL and was able to change the protocol for my hotmail account from a POP to an MSNMSP. I liked the Microsoft Mobile Services Protocol because messages were delivered to my de

  • Permits & Work Clearance Mgmt

    Kindly provide distinct differences / advantages / disadvantages between Permits & Work Clearance Management functionalities of PM Module