Compiled executable language problem(s)

Hello,
I have a really annoying problem with unexpected Chinese language instead of the English!
First the Distributed System manager showed up in Chinese. A search within ni.com hit a document instructing to 1st try and rename the following folder (being originally "ChineseS"):
..\Program Files\National Instruments\Shared\System Manager\11.0\Chinese
I did that and the Distributed System Manager showed up correctly in English! Then I had to check its help and again it showed up in Chinese so I 1st renamed the corresponding subfolder in the:
..\Program Files\National Instruments\Shared\System Manager\11.0\help
However since that had not helped I did the 2nd option - copying the english help file over the chiense... - and that solved the problem.
Now I am trying to build a HostVI EXE to read a TargetVI EXE from a cRIO and allthough the VI shows correct English, its compiled version shows messed characters like in the "Host VI App.png". "Run-Time Languages.png" shows a working language selection combination. The compiled HostVI EXE simply won't run if the Chinese language is not included. And regardless to the default selection being English - the EXE shows garbage...
Does anyone know how to solve this ridiculus issue?
Thanks in advance,
Attachments:
Run-Time Languages.png ‏21 KB
Host VI App.png ‏17 KB

Hi golubovski,
I'm sorry to hear that you're having this issue with LabVIEW. In the interest of reproducing your issue, can you confirm that you're using version 2011 of our software and which OS are you using on the two PCs that you mention. Also, to clarify, when you say that this happens on 2/3 of your PCs, do you mean that you have tried compiling the executive on multiple PCs with the development environment, or just that you have tested the compiled executive on multiple PCs? Thank you for your cooperation as we look into the issue!

Similar Messages

  • Compiled executable does not open in maximized window

    I have attached a JPG showing the VI Properties that pertain to Window size.  Despite the fact that I have indicated in Run-Time Position - Position:  Maximized.  The compiled executable does not open in a maximized window.
    Even stranger, if I take the shortcut for the program and change it's properties (on the target machine) to Open Maximized, it still doesn't open maximized.
    I have had this behavior with every compiled executable for a couple of years using versions of LabVIEW 8, 2010, 2011 and currently 2011 SP1.  Both the compiling machine and the target machine are Windows XP.
    Is there any explanation for this behavior?  Any way to correct it?
    Solved!
    Go to Solution.
    Attachments:
    VI Properties.JPG ‏81 KB

    I think Ravens Fan is correct. The aspect ratio appears to take precedence over the window position.
    You can set a property manually in your code to maximize the window.
    http://zone.ni.com/reference/en-XX/help/371361H-01/lvprop/vi_fp_winstate/
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • Execute permissions problem

    user created a stored procedure in one database and got "unable to execute stored procedure from database name blah blah", copied the stored procedure to another database and user could then execute it. User has exactly the same mapping in
    both databases (i.e. db_datareader, db_datawriter, db_ddladmin) and is only in the server public role. why does he get the execute permissions problem on the firdt database? I have created a new user myself with the same mapping and get the same
    problem.  
    IGNORE THIS>> I can see what the problem is now, the EXECUTE effective permission is missing from the first database - anybody know how to create an effective permission?
    Update on the above following your much appreciated comments:-
    1. The full error message (with any sensitive detail masked out) is:-
    Msg 229, Level 14, State 5, Procedure xxxxxxxx, Line 1The EXECUTE permission was denied on the object 'xxxxxxxxx', database 'xxxxxxxxx', schema 'dbo'.
    2. The problem is one database automatically gives execute permission when a login is mapped to it (even with just the db_datareader role selected) but the other doesn't. To see the permissions I refer to, right click database select
    properties/permissions select the user and look at effective permissions, user has connect,execute and select (explicit permissions are connect only). The same login mapped to the other database has connect and select permissions only.
    I haven't given any explicit permissions to the login mapped to the first or second database so why does the first have the explicit execute permission granted atomatically and the second not?
    Even when I map the logins to the db_datawriter and db_ddladmin as well I still don't get effective execute permission on the second database. I know I can grant explicit permissions at schema or database level but do I don't have to do that
    on the first database. There are no specific permissions on the schemas (i.e. db_datareader/writer/ddladmin or dbo) to public role or users

    user created a stored procedure in one database and got "unable to execute stored procedure from database name blah blah",
    It might be your opinion that error messages are only blah blah, and it is not worth time reading them. However, there is often useful information in error messages, and next time you have a question, please include any error message in full. Even if the
    message is nonsense to you, it may not be to us.
    I can see what the problem is now, the EXECUTE effective permission is missing from the first database - anybody know how to create an effective permission?
    When you create a procedure in a schema, you don't become owner of the procedure, but the schema owner becomes owner of the procedure. And with no further rights, the creator can't execute. This can be resolved by granting the user EXECUTE permission
    on schema level or database level:
    GRANT EXECUTE ON SCHEMA::dbo TO developers  -- schema-level
    GRANT EXECUTE TO developers                 -- database-level
    As the example hints, you should grant to a role rather than an individual.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Language problem in JSP please help

    Hi all java guru;
    Altough I tried all different way I can not solve the my problem.
    My problem is Turkish language problem in JSP.
    If my jsp page use database applications such as push or pull data to my SQL 2000 database or call some datas from database, some data which contains turkish caracter are seen wrong. suc as ����� is to ??????
    what is the problem?
    But important point is that; this is only Database data which come from sql database. But I can see JSP data or HTML data truly.
    I try different method to solve in JSP page;
    1-request.setEncoding("iso-8859-9");
    or
    request.setCharacterEncoding( "windows-1250" );
    2-
    @contentType="text/html; charset=iso-8859-9"
    @page pageEncoding="iso-8859-9"
    3-
    <meta http-equiv="Content-Language" content="tr">
    <META http-equiv="Content-Style-Type" content="text/css">
    4-
    ISO-8859-9 is turkish charecter spefications
    String TR_tlp = new String(NEW_TALEP.getBytes(),"ISO-8859-9"); // this parm is inserting database but problem is go on.
    5-
    for the database...
    Properties props = new Properties();
    props.put("user","login");
    props.put("password","password");
    props.put("charSet","UNICODE");
    6-
    url= "jdbc:microsoft:sqlserver://IP_NO:1433;databasename=database;TRUSTED_CONNECTION = true;CHARSET="+sun.io.ByteToCharConverter.getDefault().getCharacterEncoding();
    or
    url= "jdbc:microsoft:sqlserver://IP_NO:1433;databasename=database;TRUSTED_CONNECTION = true;CHARSET=ISO-8859-9"
    con= DriverManager.getConnection(url, kulad, sifre);
    I am using tomcat 5.0.19,
    is there any way to solve this problem... Please help......

    Were you ever able to solve your problem?
    I have a similar problem.
    My database is storing the characters correctly and they can be viewed in Java, but when I try to convert them to unicode using:
    String inputUtf8 = new String(input.getBytes(),charset);
    it works for almost all characters, but some come through as noncharacter "boxes."
    The characters that come through as boxes in iso8859-1 are the ones that are in the "supplementary" character range of that set, such as:
    - curved left and right quotes
    - "TM" symbol
    - bullets
    - m dash and n dash
    (see this table: http://www.csgnetwork.com/htmlchrset.html for a more complete list of the supplementary characters )
    Any idea what I need to do to have these characters show up properly?

  • Anyone else annoyed by the location of Xcode4's move of compiled executables?

    Hey all,
    In the older Xcode versions (before 4), the compiled executables were placed in build/Debug under the project's directory.  That made a lot of sense to me.  Xcode4 places the executables out in the user's library directory in some seemingly randomly named directory structure.  Yes, sure, it's able to be located, so not impossible to work with.  When I'm using Xcode, I typically have a few terminal sessions going at the same time (I am developing command-line utilities) and I find it necessary to view code and run the executables.  My workaround is to create a symbolic link (named runtime) in the top-level project directory that points to this Xcode generated directory out in the user Library directory.  This isn't a great workaround because backing up a project is far more difficult (it's in multiple places). 
    Do any of you find this annoying?  Have you found any good workarounds you'd like to share?
    Thanks in advance.

    See Xcode > Preferences > Locations > and select Place build products in locations specified by targets as the preferred build location.  The default is Place build projects in derived data location (default) selection.  For a specific project, see Xcode > File > Project Settings (or Workspace Settings) and change the setting.
    This default derived data directory location scheme is fundamental to preventing the Xcode workspaces from getting tangled.  Secondary to that, it makes it easier to clean up intermediate and derived data if and when and as needed, rather than having to dig it out of individual projects and directories, too.
    To locate the derived data using the Xcode4 default derived data scheme, launch Xcode, open the project, open the Organizer, select Projects, and click on the link over to the derived data directory.
    You can also drag that directory from Finder over to Terminal.app, too, for use in a cd command or otherwise, but you probably know that.
    If you're so inclined, you can also add the link (re)creation into the build itself; add a script to do what you need here.  There's probably one posted somewhere around the net, too.
    For tools-related questions, there's generally more traffic on the Xcode mailing list and in its mailing list archives, or (if you're in the developer's program) via the Developer forums, and there have been some discussions of this.  (These forums don't see as much developer-related traffic.)

  • Language problem with Safari!

    I can't view the Arabic language correctly with "Safari". I chose the "Arabic (Windows )" as my "Default Encoding". I'm using "Safari 3.0.3 (522.15.5)". My OS is "Windows Vista Ultimate". "Arabic" is my current language for non-unicode programs. I don't have this language problem with neither "Internet Explorer 7" or "Firefox 2.0.0.7". I really like the "Safari Web Browser" but this problem si really annoying. How can I solve it? Thanks!

    Try to run nightly version of Safari: http://nightly.webkit.org or wait for final version of Safari. Localization issues are major known bugs in Safari.

  • Language Problem when building executable

    I'm having a weird issue when building executables.  Labview seems to forget the english language.  I have tried selecting English exclusively as the run time language but when i do that i get a "No supported languages installed!" error. Everthing works fine in the development environment.  It only seems to apply to application menus and not custom user menus.  Thanks for any insight.  
    Solved!
    Go to Solution.
    Attachments:
    Language.png ‏3 KB

    Hello Jed394,
    I took a look into the issue, just to be sure the error thrown was “No support Language Installed,” correct?  Check to see if the language of your operating system and the language LabVIEW is using is English.  If these are both English, then it looks like this is an error due to installation issues in the run-time engine.  Try to perform a repair by going through the install menu of LabVIEW.  The following link will help you with the repair: http://digital.ni.com/public.nsf/allkb/FE6B641E86E55AF2862576DE00038001?OpenDocument
    If you have any further issues, please let me know. Thanks!
    Matt S.
    Industrial Communications Product Support Engineer
    National Instruments

  • Problems compiling executable under RHL 7.1 and 8.1.7

    I had some errors compling execuables during install on 8.1.7 on
    RHL 7.1. Proceeded will install anyway. Configuration
    Assistant failed during install as well. Now when I try to run
    sqlplus, or any other Oracle app, I get:
    sqlplus:error while loading shared libraries: libclntsh.so.8.0:
    cannot load shared object file: No such file or directory
    Any ideas?
    Jeff

    Can't fit all of it, so here's some. It repeats this 4 times and
    attempts the other executables.
    /usr/bin/make -f ins_sqlplus.mk install
    ORACLE_HOME=/usr/local/oracle/8i/u01/app/oracle/product/8.1.7
    rm -f sqlplus
    Linking sqlplus
    rm -f sqlplus
    gcc -o sqlplus
    -L/usr/local/oracle/8i/u01/app/oracle/product/8.1.7/sqlplus/lib/
    -L/usr/local/oracle/8i/u01/app/oracle/product/8.1.7/lib/
    /usr/local/oracle/8i/u01/app/oracle/product/8.1.7/sqlplus/lib/s0afimai.o
    -lsqlplus -lclntsh
    /usr/local/oracle/8i/u01/app/oracle/product/8.1.7/rdbms/lib/kpuadef.o
    `cat
    /usr/local/oracle/8i/u01/app/oracle/product/8.1.7/lib/ldflags`
    -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat
    /usr/local/oracle/8i/u01/app/oracle/product/8.1.7/lib/ldflags`
    -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8
    -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8
    `cat
    /usr/local/oracle/8i/u01/app/oracle/product/8.1.7/lib/ldflags`
    -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat
    /usr/local/oracle/8i/u01/app/oracle/product/8.1.7/lib/ldflags`
    -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8
    -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8
    -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8
    -lnls8 -lcore8 -lnls8 `cat
    /usr/local/oracle/8i/u01/app/oracle/product/8.1.7/lib/sysliblist`
    -Wl,-rpath,/usr/local/oracle/8i/u01/app/oracle/product/8.1.7/lib:/lib:/usr/lib
    -lm -lpthread `cat
    /usr/local/oracle/8i/u01/app/oracle/product/8.1.7/lib/sysliblist`
    -ldl -lm -lpthread
    /usr/bin/ld: cannot find -lclntsh
    collect2: ld returned 1 exit status
    make: *** [sqlplus] Error 1

  • Language problem with my jdbc connection

    Hello,
    i'm having a problem with my jdbc connection.
    the problem is that i'm connecting to MS- Access db the have arabic tables, and columns, it was working fine on a windows XP environment prepared for arabic language, but when i had to move to windows vista it did not work and it gave me an exception.
    i'm using netbeans 6.1 IDE, and the exception is
    java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver]COUNT field incorrect
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6957)
    at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7114)
    at sun.jdbc.odbc.JdbcOdbc.SQLExecDirect(JdbcOdbc.java:3110)
    at sun.jdbc.odbc.JdbcOdbcStatement.execute(JdbcOdbcStatement.java:338)
    when i printed the select statement and the exception it gave me:
    SELECT [??? ???????], [??? ??????], [??? ?????], [??? ?????], [????? ???????????] FROM EDU_DIVISION; [Microsoft][ODBC Microsoft Access Driver]COUNT field incorrect.
    the question marks are very weird to appear!!!!!!
    here is the code:
    public void edu_branch() {
            sucpy = 0;
            eflag = 0;
            asql = "SELECT [\u0643\u0648\u062F \u0627\u0644\u062C\u0627\u0645\u0639\u0629], [\u0643\u0648\u062F \u0627\u0644\u0643\u0644\u064A\u0629], [\u0643\u0648\u062F \u0627\u0644\u0642\u0633\u0645], [\u0643\u0648\u062F \u0627\u0644\u0634\u0639\u0628\u0629], [\u0627\u0633\u0645 \u0627\u0644\u0634\u0639\u0628\u0629], [\u0627\u0633\u0645 \u0627\u0644\u0634\u0639\u0628\u0629 \u0628\u0627\u0644\u0627\u0646\u062C\u0644\u064A\u0632\u064A\u0629], [\u0627\u0644\u0643\u0648\u062F \u0627\u0644\u0645\u062E\u062A\u0635\u0631] FROM EDU_BRANCH;";
            Connection connection;
            Statement statement;
            try {
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                connection = DriverManager.getConnection("jdbc:odbc:info");
                System.out.println("Connection to Access file is created...");
                statement = connection.createStatement();
                statement.execute(asql);
                System.out.println("Executing query : " + asql);
                aset = statement.getResultSet();
                if (aset != null) {
    //------------------------------Oracle operations--------------------------------------------------------------------                  
                    while (aset.next()) {
        can you help me please

    arabic language
    SELECT [??? ???????], [??? ??????], [??? ?????], [??? ?????], [????? ???????????] FROM EDU_DIVISION; >[Microsoft][ODBC Microsoft Access Driver]COUNT field incorrect.
    the question marks are very weird to appear!!!!!!It failed to understand your unicode sql.
    it was working fine on a windows XP environment prepared for arabic language, but when i had to move to windows vista it did not workStrange. Maybe you need to compare the differences of some system properties on both hosts, for instance, sun.io.unicode.encoding, file.encoding, user.region, and so on.

  • Multiple Language Problem

    Hi Gurus,
         In a query I am using the custom defined - Variable, Formula Variable & Formula, here variable are used for customer inputs. And when I am executing the query at English language I am getting the description for Variable, Formula Variables and Formula. But when I am executing the same query other than English language I am not getting the description for all of them and it was displaying the technical name of the Variables, due this problem end-user are not able to give the input values for query execution.
         How I can maintain the multiple languages for Variable, Formula Variables and formulas.
    Regards,
    PRK

    http://help.sap.com/saphelp_bw30b/helpdata/en/43/a1f5388b99f321e10000000a11402f/content.htm
    i think u need to have texts in other languages too.have look át the help which describes how to translate texts in bw.

  • Language problems

    Hi,
    since today the language here on kde is half in english and half in german and it should be just german.
    In the KDE system-Settings I've set the country to germany and the preferred language to german but nevertheless parts of the KDE menu and e.g. firefox, kmail and many more programs that used to be in german are now in english.
    Another strange thing is that "$ locale" in the KDE "konsole" gives:
    LANG=
    LC_CTYPE="POSIX"
    LC_NUMERIC="POSIX"
    LC_TIME="POSIX"
    LC_COLLATE="POSIX"
    LC_MONETARY="POSIX"
    LC_MESSAGES="POSIX"
    LC_PAPER="POSIX"
    LC_NAME="POSIX"
    LC_ADDRESS="POSIX"
    LC_TELEPHONE="POSIX"
    LC_MEASUREMENT="POSIX"
    LC_IDENTIFICATION="POSIX"
    LC_ALL=
    When I don't use x and log me in with the same user the output is correctly set to "de_DE.UTF-8" everywhere where "POSIX" is standing above.
    I've tried to manually set "export LC_ALL= "de_DE.UTF-8"" but this didn't correct the language issues in KDE.
    In /etc/rc.conf everything is also set as before to:
    LOCALE="de_DE.UTF-8"
    DAEMON_LOCALE="no"
    HARDWARECLOCK="localtime"
    TIMEZONE="Europe/Berlin"
    KEYMAP="de"
    CONSOLEFONT="default8x16"
    CONSOLEMAP=
    USECOLOR="yes"
    And I've executed "#locale-gen" also without success. Further I've reinstalled the german KDE translation "kde-l10n-de" also without success.
    Any ideas how to fix this problem?
    matse

    So, I've found out that the intel-mkl package (AUR http://aur.archlinux.org/packages.php?ID=36909) causes these problems, if I uninstall it everything is fine and the locales are set as wanted. If I install the package the problems begin...
    I've uploaded a picture of the package content, I really don't see a file which could cause such problems.
    Any ideas?
    matse
    Last edited by matse (2011-06-17 20:04:02)

  • Form builder Language problem under linux

    Hello,
    i have a problem with my form builder 10g under RHEL 3,
    when i write a simple text with in other languages other than English -- russian for example the inputs are not mapped correctly i mean i input a character and it displays other than expected and in the compiled applet the text is always in english,
    i have motif 2.1 with latest patches and bidi and Complex Text layout,
    and also i've set the NLS_LANG and locale , but i couldn't till now write correctly in any other language except english
    is there is any configuration files need to be edited or variables set , can anybody help with this , any links or docs are appreciated. thanks
    scenario
    Set locale russian
    set NLS russian
    run builder
    write text and run un web browser
    result text other than entered

    Hi,
    If you used the standard installation for reader, the path should have been /usr/lib32/Adobe/Reader8/bin and not /usr/lib32/Acrobat/Reader8/bin. Could you confirm how you performed the installation?
    The solution is to uninstall and re-install the reader using the standard location. We highly recommend that you install under /opt if it's a system-wide installation. Installing under /usr/lib32 seems strange given that the reader consists of more than just libraries.
    If that's not possible, you can fix it by tweaking the INSTALL script that is part of the language pack installer. Change line 198:
    from:
    198 if [ ! -d "$dir/Adobe/Reader8/Reader" -o ! -d "$dir/Adobe/Reader8/Resource" ]
    to:
    198 if [ ! -d "$dir/Acrobat/Reader8/Reader" -o ! -d "$dir/Acrobat/Reader8/Resource" ]
    and specify /usr/lib32 as the path of installation when prompted.
    Let us know how you progress.
    Gaurav

  • New Report compiled executable requires _exclsub.llb?

    When using a compiled version of the office reporting package under win2k to generate a new Excel report, I get a file not found error in the New Report VI. Digging a little in New Report, it seems the VI is expecting the _exclsub.llb to exist in the data subdirectory of the executable. Manually moving _exclsub.llb to the correct spot solves the problem, but is there a better way?

    When building the executable in Application Builder, you must add the _exclsub.llb as a support file. The
    following webpage has some information related to this:
    http://zone.ni.com/devzone/conceptd.nsf/2d17d611efb58b22862567a9006ffe76/08ddbb532e53e96986256a860070a76c?OpenDocument
    The readme file that comes with the toolkit also talks about this.
    Chris_Mitchell
    Product Development Engineer
    Certified LabVIEW Architect

  • SAP ECC 6.0 language problem

    Hello!
    I have installed SAP ECC 6.0 UNICODE system, i had english and german languages as default, an i supplemented Romanian in client 000, before the client copy. I implemented all notes regarding the localization, but whenever i logon on the system in Romanian, it's processing very very slow. For example, only to logon it takes me about 1 hour. Usual transactions, like "me21n" is initializing in about 15 minutes and so on. What can i do?

    I executed the report but unfortunately the problem persists. If i logon in other languages it works, but if i tried the language that i supplemented in 000 client (in my case Romanian), it takes me about 1 hour only to log on my system.

  • Unit of measure language problem

    Hi experts,
    I'm selecting matnr and meins from MARA. In SE11 I see the meins in my language (DB), but when I'm executing my program than I see the Unit of measure as 'ST' (Stück).
    Could you help me in how can I get the unit of measure in a certain language?

    Wenonah that won't work since the meins in MARA cannot be found in T006.
    But finally I found a function module which solves my problem:
    CONVERSION_EXIT_CUNIT_OUTPUT
    Thanks everybody to trying to help me, I appreciate it.

Maybe you are looking for

  • Trying to install Itunes 10.5 update problems.

    Trying to install Itunes 10.5 update onto my netbook running windows xp and it keeps telling me it can't continue the update due to missing something from the windows installer package. My installer package is the latest I can find which is 4.5 from

  • Firefox, or probably some add-on, has changed what I see when I open a new tab; When I open one, there is a google search that is unwanted there!

    That's pretty much it. The 'new tab page' now also shows a search in Google, even though I never wanted it too! It is unsightly and doesn't help me a bit. If you can help, I would be grateful. Note: I will be gone the next six weeks (without my compu

  • Using pop-up menu to fill another sheet

    Although I am certain the answer to this question is posted somewhere, I can't find it. I am trying to create a school budget spreadsheet. Each row has a pop-up menu where I designate which class the purchase is for. I want to populate the class' spr

  • DB Link from target to stating_area

    Hi, I create a location for the target schema and the staging_area. In the target_schema I create a mapping which select data from tables in the staging_area. staging_area and target schema are in the same database. OWB uses a database link to select

  • Remove on stateless session bean

    Will failing to call remove on a stateless session bean cause it to be passivated rather then removed when it is no longer used? I have read for a statefull bean failing to remove a bean can cause a peformance hit since passivate takes a bigger syste