Why are special chars used in Labview filenames supplied by NI? By special chars, I mean ampersands, questions marks, Plus signs, slashes etc. Thats just bad practice in an otherwise good product.

I would like to request that National not use such filenames anymore. Spaces should also be avoided. Just use a format such as MyFileNameWillSuffice.vi.

> Perl. I carry that naming style from those languages. Questions marks
> used to be (maybe still are) used as wild card characters. I have run
> into problems on a Solaris machine when there were spaces in the file
> names. Plus signs slashes (/ or \) are a definite nono. So should
> !@#$%^&*()|.
>
> All those other languages have defined coding standards which serve to
> make code more readable and easier to maintain.
The LabVIEW coding guidelines warn against using some of those symbols,
but it isn't nearly as limiting as you might want. The reason for this
is that you rarely use VI names on a command line. If you are using
them, then simply "" the path. Feel free to further limit the
characters used in naming your own VIs, but
the names of VIs in vi.lib
and toolkits have already been determined and have in many cases been in
use for five to ten years. They do not cause problems.
Just for the record, LV is also localized into several languages
including Japanese and many of those customers use their native language
and native characters. Again, this doesn't cause problems.
Greg McKaskle

Similar Messages

  • The following message popped up on my MacBook Air: Your Apple ID and phone number are now being used for ICloud on a new IPhone.   What does it mean?  Should I worry?

    The following message popped up on my MacBook Air: Your Apple ID and phone number are now being used for iCloud on a new iPhone. What does it mean?

    Hi SLCfromMadison,
    This is the message that you'll receive when your Apple ID is signed into on an iPhone. If you haven't done so, the article linked below details a number of steps that can help verify the security of your Apple ID should you think that an unauthorized person has access to it.
    If you think your Apple ID has been compromised
    http://support.apple.com/en-us/HT204145
    Cheers,
    Allen

  • Why can't I use links within my email messages? When a link is clicked, nothing happens--it doesn't go to that specific website.

    Why can't I use links within my email messages? When a link is clicked, nothing happens--it doesn't go to that specific website.

    HI Ana ...
    I had FB working again two days ago, and yesterday in mid-serve Safari just "couldn't find the server" once more...
    That's a different issue...
    First, if you can just use English, open System Preferences > Language & Text then select the Language tab. Drag English to the top of the list then restart your Mac.
    Now for the server issue. Try using Open DNS. That shold help the "couldn't find the server" issue...
    Open System Preferences / Preferences then select the Network tab. Click the Advanced tab then click the DNS tab.
    Click +
    Enter these numbers exactly as you see them here.
    208.67.222.222
    Click +
    208.67.220.220
    Then click OK.
    Try accessing Facebook on Safari now.

  • How do I dispute a copyright claim against a video i made using a trailer in iMovie? The only content I used was the video I shot of friends daughter on a merry-go-round.IMovie had the music etc that I used.

    How do I dispute a copyright claim against a video i made using a trailer in iMovie? The only content I used was the video I shot of friends daughter on a merry-go-round.IMovie had the music etc that I used. Here's the message It gives a number of options to choose from if I want to dispute the claim but I don't know which one this would come under. Several obviously don't apply and of the ones left I don't know which content that is in IMovie that I use comes under. "This video is my original content and I own the rights to it" "I have a license or written permission of the property rights holder to use this material" "My use of the content meets the legal requirements for fair use of fair dealing under applicable copyright laws" or "The content is in the public domain or is not eligible for copright protection."

    You want to use the "I have a license..." option, since clearly the music is not yours, but Apple has granted you a license.
    For your license, see this document, section 2.M. http://images.apple.com/legal/sla/docs/iMovie.pdf
    For more on this irritating problem and why it is so hard to solve, see this article. (It is a problem for Final Cut Pro users as well.)
    http://www.larryjordan.biz/app_bin/wordpress/archives/1842

  • Menu dropdowns dissappear. I loved FFV3 why are there so many changes to Firefox and no update works properly? Can you stick to a version and improve on that one? It seems everything is getting screwed up.

    I think I covered it. I want a stable browser. I work on computers for a living and Firefox has been the proven browser for a very long time and FFV3 was the best browser on the planet. Why fix something that isn't broken. I don't know what other browser will fulfill my needs like firefox did. Why are you guys screwing around with the best browser on the planet? Get it together guys.

    You could take a look at this iTunes Version History on Wikipedia if you want a feel for what goes on in each update and how frequent they are. The last few major updates have been two years apart. Most of the point updates have little impact on the way the user interacts with the software. You don't have to upgrade with each update unless you have bought or upgraded a device that now requires a newer minimum version to work with. E.g. iOS 8 requires iTunes 11.4 or later.
    There are some major layout changes in iTunes 12, but by and large any task that you could do in 11 can be done in 12. For example the new Get Info dialog lacks right-click context menus (at least for now) but it still accepts most standard keyboard shortcuts and drag & drop actions. If you're used to doing everything via a context menu it is going to be confusing to start with. A workaround is to hold down shift as you right-click > get info on a track selection to get the old style dialog.
    Regarding the inability to delete playlists from the device I suspect you were working in the wrong context, i.e. looking at the playlists on the device in say the Music > Playlists sidebar for a device that is synced to the library. You should select the device first from the row of source icons, then Settings > Music from the sidebar, then deselect the playlist in question from the list of playlists scheduled to sync to the device, and sync.
    tt2

  • Weblogic 12c Servlet Response - Special characters show up as question mark

    My web app is running on Weblogic 12c (12.1.1) using WebWork + Hibernate. The program streams data (bytes making up a pdf) from a CLOB in an Oracle Database to the AsciiStream of the servlet output response. No exceptions are thrown, but the generated pdf contains blank pages. Comparing the bytes of the generated pdf, special characters are showing up as question marks.
    Some of the bytes read in from the database contain 8 bits (correct data), but the bytes that the servlet return contain only 7 (all bytes with 8 bits become "1111111"). The number of bytes returned from the servlet is correct.
    Code:
    //Response is HttpServletResponse
    response.setContentType("application/pdf");
    response.setHeader("Content-Disposition", "inline; filename=\"test.pdf\"");
    out = response.getOutputStream();
    byte[] buf = new byte[16 * 1024];
    InputStream in = clob.getAsciiStream();
    int size = -1;
    while ((size = in.read(buf)) != -1){
    // buf contains the correct data
    out.write(buf, 0, size);
    // other exception handling code, etc
    out.flush();
    out.close();
    "Correct" pdf byte example:
    10011100
    10011101
    1010111
    1001011
    1101111
    11011011
    Incorrect pdf byte example:
    111111
    111111
    1010111
    1001011
    1101111
    111111
    I have verified that the data read from the CLOB in the database IS correct. My guess is that the Weblogic server has some strange servlet settings that causes the bytes to be written to the servlet output stream incorrectly, or a character encoding issue. Any ideas?
    Edited by: 944705 on Jul 26, 2012 10:17 AM

    Solution found, I'll post the work around to those who might encounter the same problem.
    Somewhere in the layers of technology (webwork or weblogic I'd guess), the servlet response is encoded into UTF-8 regardless. The encoding in the database was ISO-8859-1. Sending ISO encoded bytes by UTF-8 caused the conflicting character codes (anything above 127) to show up as undefined.
    The fix is to decode the input byte array into ISO-8859 string, then encode that string into UTF-8, which can be send by Weblogic.
    isoConvert = new String(buf, "ISO-8859-1");
    out.write(isoConvert.getBytes("UTF-8"), 0, isoConvert.getBytes("UTF-8").length);

  • Special Character being replaced by Question Marks in Java Mapping

    Hi All,
    I need some help on Java Mapping related to special characters.
    The problem is that i'm using a Java Mapping to add some information to the XML inside the Interface Mapping. This works fine on our development environment but, in our production environment, it replaces the special character with question marks (eg.: á --> ??).
    I'm suspecting of some configuration on the Java Virtual Machine that sets the encoding, but i don't have access to it. Does anyone have any clues about this problem?
    Thanks a lot,
    Leonardo

    Hi Leonardo
    Have a look at this forum thread, this might help you to solve your problem.
    Java Map Causing error because of ampersand &

  • Why are people still using a browser that wants to censor any views with which it does not agree?

    Mozilla drives out its CEO because he contributed $1000 to support a particular law in 2008 . Then it claims it values diversity. We all know that censors like Mozilla have NO place on the Internet --so PLEASE BOYCOTT MOZILLA --please fight for what little freedom we still have to hold differing views.

    Hi FirstAmendment,
    Thank you for contacting Mozilla about this issue and taking the time to share your thoughts.
    The decision to step down was made by Brendan. Since the moment Brendan was appointed, free and open discussion has come from a diverse spectrum of viewpoints. Mozilla is an organization that believes in openness and that no one should be persecuted for the beliefs they hold, no matter what those beliefs are. We believe in unconditional freedom and openness. That's why we support rights for everyone.
    As this is the Firefox support forum I can only help with questions related to the specific product. If you need more info about Mozilla's CEO you can check the resources below:
    Mozilla Blog: https://blog.mozilla.org/ <br>
    Brendan Eich's Blog: https://brendaneich.com/
    If you have any issues with Firefox, please post a question at [/questions/new] and someone will assist you.

  • Why are my computers using static insead of DHCP

    I have decided to test the Home Hub 3 one last time, before I stick to the home hub 2 till bt infinity is released then get a cable router. Anyway when I add a computer to the network the HH3 seems to be giving them static IPs instead of DHCP and giving gaming consoles DHCP is there anyway to get the static for computers to use DHCP as I cannot find any option in the settings.

    When you click on the device name in the 'Devices' list under 'Home Network' does it have the 'IP address assignment' set to Static, or is that this says 'DHCP' but the 'Always use this IP address' is set to Yes?
    On my HH3 my laptops both say DHCP, but the 'Always use this IP address' set to Yes and if I change it to No it doesn't stay that way, when I go back to the device list and to the laptop again it's gone back to Yes. I have lots of connection issues as per my thread (http://community.bt.com/t5/BB-Speed-Connection-Issues/HH3-Wireless-N/td-p/232269) from the laptops and losing connection when other devices are turned on.
    On my HH2 my laptops both say DHCP, and the 'Always use this IP address' is set to No - I don't have any connection issues with the laptops.
    On the HH3 changing the wireless interface type from '802.11 b/g/n (Recommended)' to '802.11 b/g' doesn't make any difference for me - apart from slowing down the laptop connecetion when I can get it to work.
    My HH2 is set to '802.11 b/g/n (Recommended)'

  • Why are my photos using so much memory?

    I typically upload my photos from my iPhone 6 to iPhoto after a few months, then delete them all when prompted to do so on iPhoto. I then copy some photos I want to keep on my phone, and go on about my day. However, I noticed how much space photos are taking up on my phone: 2.2 gigs! I only have 99 photos and 1 video on my phone, so how is this possible and what can I do to free up space?

    I deleted all my photos and it still says my photos are taking up space with the Photo Library under the Photos & Camera tab.

  • Why are S / H used for Debit / Credit indicators?

    I am new to SAP and am curious as to what the S and H indicators actually stand for, probably in German? Being American, I am accustomed to D=Debit, C=Credit, which is easy to remember. If I could associate a word with each of the letters S and H, it would make it easier for me to remember which is which. Even if the words were German, that would be very helpful.
    Thank you,
    Geordon

    i always remember them by the fact that they are alphabetically common
    H - Credit
    S  - Debit
    H - Haben (Having/Owning?)
    S - Soll  (Against?)
    Help me Julius
    Edited by: Clinton Jones on Feb 3, 2012 7:20 PM

  • Why are BT the only company able to supply Fiber i...

    I have visited other ISP websites, input my postcode and they all say I can only have conventional broadband, but if I go to the BT site it says I can have Infinity installed with upto 50mb speeds.
    I was under the impression that all phone-line based ISPs should be able to provide the same services...given that its Openreach who ultimately provide the infrastructure.
    can anyone shed any light on why BT are the only company offering Fiber in my postcode?

    Hi vertigoVSC,
    On top of what imjolly has said, if the ISP has their own LLU network then they will need to buy a GEA link from Openreach in order to be able to connect the their own LLU network to the Openreach Fibre infrastructure in you exchange area. Some ISPs/CPs who have their own LLU network at the exchange can take weeks/months to buy and sort out the GEA link.
    As BT Retail (this ISP) uses the BT Wholesale network then BT infinity (Fibre broadband) will be readily available to those properties that are in fibre enabled exchange area and are able to get fibre broadband.
    Cheers
    jac_95 | BT.com Help Site | BT Service Status
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Try a Search
    See if someone in the community had the same problem and how they got it resolved.

  • HT1766 Why can't I use my camera on my iPhone 5, nor am I able to update an app, with my iPhone claiming that there is not enough storage, even though I paid for mor storage, and my phone claims I still have plenty storage... I guess i bought a$500doorsto

    Why does my iPhone 5 keep saying "cannot download" "There is not enough storage to download 'Facebook'. (Btw, I already have fb on my iphone 5, just trying to update it). You can manage your storage in Settings... Well, in settings, I have plenty of storage left that I bought... called iCloud! What's up with this piece of $500 junk I bought from apple, that it won't allow me to record memorable moments in my life!!! Should I go back to android, which lets me record hours of video/audio/pictures, without ever "CHARGING ME EXTRA", never even a dime!!! What a waste of time, energy, resources, etc. I miss Steve Jobs... He wouldn't have screwed his customers over like this!

    Go to Settings>General>Usage and see how much available local storage you have available. You can also see what apps are taking up the most room.
    You say that you paid for more iCloud storage. That's for back ups. You can't download apps to it or steam media from it. In order to take pictures you have to have space on the phone itself.
    Best of luck.

  • Where are the symbole used in Pages? What a downward arrow in a rectangle mean?

    I found a new symbol located on a Pages document. It was a downward arrow within a box in the upper right-hand corner. It appeared where you show all of your documents. Next, there's no table showing this symbol anywhere's, particularly in the help website or blog at Apple.com. I've recently started using iCloud. There's no one designated to enter my iCloud or use my information, except for myself. Also, the Help in Pages does not show what this symbol means. Could someone tell my where to find these Pages symbols? I'm using iOS 8.1. Thank you.

    No idea what you are referring to. Can you post a screen shot?

  • Why is there a little blue square box with the question mark in the middle of the place where my pictures are suppose to be??

    I don't know why sometimes my pictures show up, and other times I get the little blue square with the question mark. Mostly it does that in gmail.
    Can someone tell me what setting I need to use? I already reset Safari. Couldn't figure out what else to do.

    Do you get a dialog box if you control click the missing image.

Maybe you are looking for

  • Could not resolve...

    Hi everyone, I'm currently playing around with the examples in AFCS and noticed when running Flexternal.mxml that I get an error at line 27 <rtc:AdobeHSAuthenticator authenticationKey="{authToken}" id="auth"/> Severity and Description Path Resource L

  • Error in adding attachment to the workitem. load:class Query.class not foun

    Hi, We are using WebGui to access the Business Workplace(SBWP transaction) through Portal. For any work item, when i try to import a file from the local PC, i get a screen with the header -"Enter Some FIle attributes". Text displayed in the screen is

  • Problem of windows10 in HLK

    Hello we progress test now on windows10. but manual type test is not run. another test is not problem and passed. previously, this is not problem when use hck2.0 & 2.1. is this problem of HLK preview version? please give positive consideration. thank

  • IPhone freaking out after restarts

    Ok took a short video of the phone and what it is doing.. http://www.youtube.com/watch?v=heSGyXo-tr4 It continues this behavior after a full factory reset but only after the phone has been turned off then back on.  The display seems to work, it won't

  • WL commerce server 3.2 installation

    Hi, I am using WebGaing Studio 4.1, meaning that I have WL 5.1.0 SP7, on an NT4SP4 workstation. Following the readme, I have downgraded my WL installation to WL5.1.0SP6. As well, I have installed Sun HotSpot server VM. However, when trying to install