Question of localization of the user interface

I just noticed something odd related to localization of the UI (CVI 2012 SP1).

  • with a text string control, if I change the GB2312 character set and I paste a string, I correctly see with Chinese fonts
  • If I do the same with a ring (add new item), I don't see the Chinese fonts (see table)

is this expected behavior? or a bug?

Hey Vix,

There is a known bug that can cause the dough to not work properly. The id of the bug is 382556, but I don't think it has yet been added to the list of known issues. The bug was introduced in version 2009 and is fixed in the version that is about to release.

The solution is for you to not only change the set of characters in the font of text Style, but to also change the set of characters in the font of labels in Chinese:

Even if you don't really have to enter Chinese text on the label of control, due to this bug, you must assign its characters in Chinese if you want to paste the Chinese text in the dialog box change the value/label pairs.

Luis

Tags: NI Software

Similar Questions

  • Slow response from the user interface with acquisition of data of type long time

    Hi all

    I have a question to ask more out of curiosity than necessity right now. I've built a program that acquires data from the accelerometer and the Treaty in a number of ways: filtering, FFT, FRFS, things like that, but the answer of the UI is still slow, because I need a resolution of frequency of 0.2 Hz for my data domain, which means that the sample acquisition time is 5s and all this awaits before execution.

    My question is this: is there a way to completely isolate the user interface of data acquisition so that it responds immediately?

    I tried a design model of producer consumer with queues, but found everything to be always waiting for samples to be taken. Maybe it was exactly as I did.

    Thank you

    Phil

    If you need to sample for 5 seconds in order to have enough data to analyze, so unless you can "predict the future" and "knowing" the five seconds of data, simply wait for the data that arrives.  Using parallel loops of producer-consumer will allow data acquisition to proceed (for the next 5 seconds of data) while you do the analysis, but you still have to wait for the data to be analyzed.

    Note that the previous paragraph assumes you are collecting data in 5 seconds 'chunks' and analyze each "chunk" (independent) on arrival.  You could also do something like having a "second 5 sliding window" which moves, say, a second at a time, giving your FFT a finer resolution of 'time' (at the expense of their independence).  This would be a (slight) change in your loop of producer (you want to taste in 1 second pieces, accumulate 5 these pieces) and the consumption loop (start analyzing, spewing a FFT every second, while replacing the older "chunk" with the most recent - a queue with loss can do for you).

    Bob Schor

  • Generation of the user interface of function error

    Hello

    just one tiny problem: on a Panel, I have a progress bar. Now, if I go to the user interface to use in the user interface editor, the UI must be saved, compiled and linked and results in some errors, see below. Not a real question that I can test all events/ToolTips in the user interface editor, but mistakes are always a little unnerving .

    Hi Wolfgang,.

    This is a bug confirmed in 2013: #424745.

    It is expected that the code for the custom control must be compiled and linked (unregistered, however). However, the link must succeed, and you should be able to interact with the custom controls everything in operation. This was the behavior in 2012. Certainly, it is not a good way to interact with a progress bar in the user interface editor. But for other custom controls (control password, for example) it makes more sense.

  • Speech recognition does not match the language of the User Interface in Windows 8.1

    How can I update my speech reconition language that matches my user interface language? Thank you

    Hello

    Thanks for posting your question on the Microsoft Community.

    I apologize for the inconvenience caused to you.

    I understand that the problem with speech recognition does not correspond with the user interface in Windows 8.1

    This issue would have occurred due to some damaged system registry entries.

    Please provide me with the following information to better understand the issue.

    1. What language is speech recognition uses in the system?

    2. What is the base language that is installed in the system?

    Note: Speech recognition is available in the following languages: English (United States & United Kingdom), French, German, Japanese, Mandarin (Chinese simplified and Chinese traditional) and Spanish.

    You can also check out the link below.

    How to use speech recognition

    http://Windows.Microsoft.com/en-us/Windows-8/using-speech-recognition

    Please provide the information above to help you best.

    Thank you.

  • The user interface of logon C:\windwos\system32\msgina.dll DLL could not load or restart the original DLL. Restart

    I created a ghost of a 32-bit 2003 server image and tried to restore the image on the same server of model\type. I got an error message with the following.

    The user interface of logon C:\windwos\system32\msgina.dll DLL could not load or restart the original DLL. Turn it back on.

    Tried to fix the server with the operating system and can not find the disk driver. I found the driver load it on a floppy disk, f6 entry, insert the diskette. I have a message with the following text.

    Type EXIT to exit the consul of recovery and restart the computer.

    1 C:\Windows

    which windows installation would you like to log on

    (to cancel, press enter)?

    Hi MichelZelensky,

    The question you posted would be better suited in the Windows Server Forums. I would recommend posting your query in the TechNet Forums (Windows Server).

    TechNet Forum

    http://social.technet.Microsoft.com/forums/en-us/category/WindowsServer

    I hope this helps.

  • Background image on the User Interface

    I'm trying to place a background behind my screen of the application image. So instead of the usual white, there would be a "background.png". I am following this thread with the blackberry API set

    http://supportforums.BlackBerry.com/T5/Java-development/drawing-bitmap-in-mainScreen-background/m-p/...

    So far, I tried to apply it within my own application, with the code to start as follows:

    final class UserInterfaceScreen extends MainScreen {
        HorizontalFieldManager _fieldManagerTop;
        VerticalFieldManager _fieldManagerMiddle;
        HorizontalFieldManager _fieldManagerBottom;
        BitmapField _bitmap;
        Bitmap _canadaImage, _ukImage, _usImage, _backgroundBitmap, _fieldBitmap;
        LabelField _label;
        BasicEditField _input;
        String _canadaCapital, _ukCapital, _usCapital, _capital;
        int displayed = 0;
    
        public UserInterfaceScreen() {
            super();
            LabelField title = new LabelField("User Interface Sample",
                    LabelField.ELLIPSIS | LabelField.USE_ALL_WIDTH);
            setTitle(title);
    
            HorizontalFieldManager _horizontalFieldManager = new HorizontalFieldManager(HorizontalFieldManager.USE_ALL_WIDTH | HorizontalFieldManager.USE_ALL_HEIGHT){
    
                //Override the paint method to draw the background image.
                public void paint(Graphics graphics)
                {
                    //Draw the background image and then call paint.
                    graphics.drawBitmap(0, 0, 640, 900, _backgroundBitmap, 0, 0); //240
                    super.paint(graphics);
                }            
    
            };
            _backgroundBitmap = Bitmap.getBitmapResource("background.png");
            _fieldManagerTop = new HorizontalFieldManager();
            _fieldManagerMiddle = new VerticalFieldManager();
            _fieldManagerBottom = new HorizontalFieldManager();
    
                add(_horizontalFieldManager);
                add(_fieldManagerTop);
                add(new SeparatorField());
                add(_fieldManagerMiddle);
                add(new SeparatorField());
                add(_fieldManagerBottom);
    

    Basically, I'm trying to combine the thread above with the user interface tutorial.

    http://supportforums.BlackBerry.com/T5/Java-development/user-interface/Ta-p/442781

    The question is when I run the code, I just get the background image, none of the other content is displayed in the foreground. I am this approach correctly?

    I'm not sure the solution you received one will work - it may well do, but the approach is different from what I do.  I based my image of background processing around comments in this article:

    http://supportforums.BlackBerry.com/T5/Java-development/MainScreen-explained/Ta-p/606644

    But if you look at what you said your screen, you will see why you don't see all your real fields.

    The first thing that you add to your screen is as follows:

    HorizontalFieldManager _horizontalFieldManager = HorizontalFieldManager(HorizontalFieldManager.USE_ALL_WIDTH | nouveau HorizontalFieldManager.USE_ALL_HEIGHT) {}

    You said this Manager to use the full height and width.  Then what place is left for any other Manager/field.

    You only add this option to provide abackground.  So actually, to do this, you must you add all your fields and managers in this HFM.  Otherwise that will expose after this one (which, as noted way they have no space to display in). I think you'll see something, if you replace this:

    Add (_horizontalFieldManager);
    Add (_fieldManagerTop);
    Add (new SeparatorField());
    Add (_fieldManagerMiddle);
    Add (new SeparatorField());
    Add (_fieldManagerBottom);

    with

    Add (_horizontalFieldManager);
    _horizontalFieldManager.Add (_fieldManagerTop);
    _horizontalFieldManager.Add (new SeparatorField());
    _horizontalFieldManager.Add (_fieldManagerMiddle);
    _horizontalFieldManager.Add (new SeparatorField());
    _horizontalFieldManager.Add (_fieldManagerBottom);

    But it probably won't be good, so you should follow the advice given in the previous Post or see the KB article.

  • to access the QML attached objects in C++ and best practices for the handling of the user interface in classes

    Hello

    I have in fact 2 queries

    (1) how can we access attachedobjects defined in QML in C++?

    (2) I'm loving development on Blackberry 10 C++ is one of my favorites. But I'm a bit lost when it comes to managing the user interface in classes. For example when we create the project through momentics we have a class called ApplicationUI. It manages all the (default) user interface commands, we in C++. as for example creating the document qml and setting as root user interface, etc. I am now working on an app that have NavigationPane as root, and then I continue to push pages (like the screens). But now the code for all pages is inside my ApplicationUI. What is the best practice to keep the UI for each page logic in a separte C++ class?

    I also develop for Android that a separate class for each activity, this code does not mingle for each activity. Please guide me how can I keep logic of user interface of each Page into a separate class of C++?

    regarding your second question:
    I think this is the simplest approach to keep all things in the UI in QML. You can easily put things into separate files.

    If you want to use c ++ to the user interface: can be done, too. just put it in separate classes and include those in your application class.

  • Draw attention to the application of the user interface

    Is it possible to use Dialog.alert () on the user interface, background processing application? I tested the Simulator but unfortunately it always freezes when the alert dialog box appear (alert did not appear, but I can see it is called in the JDE debugger) or perhaps a different approach?

    I think that this article will answer your question.

    How - to alert a user to a background application
    Article number: DB-00407

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800608/...

  • "ProviderChangeSupport" refreshes the issue in the user interface

    Hello

    I am facing problem in refreshing the listview in the amx MAF page.

    behavior in my application is below:

    -> Initially I displays all records in the list view.

    -> at the top of the page, I have a search field, while I'm looking is not refreshing the user interface for the first value listed as (value = 100), if I change the value of research to the other like(value = 101) it is refreshing the user interface. And then if I search with another value as (value = 103) is not refreshing the user interface and if change value again into different as {value = 104 (not 103)} it is refreshing the user interface.

    Kindly help me on this how can I solve this problem. I can't understand the question.

    code is like:

    in the DC class:

    transitional protection ProviderChangeSupport providerChangeSupport = new ProviderChangeSupport (this);

    private PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport (this);

    {} public void addProviderChangeListener (ProviderChangeListener l)

    providerChangeSupport.addProviderChangeListener (l);

    }

    {} public void removeProviderChangeListener (ProviderChangeListener l)

    providerChangeSupport.removeProviderChangeListener (l);

    }

    {} public void setBook (book)

    Book oldBook = this.book;

    This.Book = book;

    propertyChangeSupport.firePropertyChange ("book", oldBook, book);

    }

    public book getBook() {}

    turn the work;

    }

    public BookDC() {}

    Super();

    findAll();

    }

    book private;

    private list books = new ArrayList();

    private map BookAdapter = new BookAdapter();

    public book [] getBooks() {}

    findAll();

    return (Book []) books.toArray (New Book [books.size ()]);

    }

    {} public void findAll()

    Whole BookId = null;

    Object obj = AdfmfJavaUtilities.getELValue("#{pageFlowScope.bookId}");

    If (obj! = null)

    bookId = new Integer (obj.toString ());

    Books = adapter.findBooks (ID);

    providerChangeSupport.fireProviderRefresh ("books");

    //        try {

    Thread.Sleep (1000);

    } catch (InterruptedException e) {}

    //

    //        }

    AdfmfJavaUtilities.flushDataChangeEvent ();

    }

    Thank you

    Rita

    Hello

    at first glance, it seems to me that there is a problem in your code; in the method "getBooks" you call "findAll", and in the latter, you trigger a refresh of the provider. The refreshment of the provider calls internally "getBooks" method to update the data of the user interface. So here you have some kind of loop. You can debug and see if this is what is happening. "getBooks" should have only the return line.

    If this does not resolve your problem, you may show your amx code to see how you manage the search field.

    Kind regards.

  • Is it possible to resize the text and icons in the user interface?

    I'm on a Windows 10, 15.6 screen laptop "4 k. The menu bar along the top is sized very well, most of the time. However, all the icons and the text to actually work on fuse are too small for me to look at and click on without having a fight.

    Are there ways to manipulate the proportions of the UI? Thank you!

    Hi Brandon!  Great question!  Unfortunately for the insight we have not a scalable user interface, but it's certainly something that we will keep in mind for future releases.  Now this is resolution dependent so you need reduce the resolution setting (we've only really tested until about 2 k ~ monitors).  The user interface is pretty basic at the moment, but there are a few changes, you can do it.  Here is a link to the user guide on the user interface customizations for details - but you can change the position of the toolbars by clicking the separation Strip and you can change the width of the canvas/editor fracture by dragging on the edge of the editor Panel.

  • Currency of the line has changed since the user interface has been made on creating

    Hi all

    I'm ' currency of the line has changed since the user interface has been made. " The key to the planned line was oracle.jbo.Key' error on create action. Use case is simple. He saw table and create a button. When I click the Create button, I get this error. Back button of the browser is never used.

    The strange thing is that I don't get this error when I run my application on your premises. However, after I had it deployed in real development environment, he started up this error and I do not get this error on other pages.

    JDeveloper Version: 11.1.2.2.0 (JSF 2.0)
    Weblogic Version development environment: 11.1.1.6

    Kind regards
    Anil

    Same question: do you have the correct version of the runtime ADF your server?

    Timo

  • Change the colors of the images between monitors while the user interface remains the same

    Hey! Im having a problem where photoshop change colors when I move the window between my monitors, see here: http://sta.sh/04y5s60vf3j is not due to the monitors themselves being different, it does actually change after a few seconds to move inbetween the monitors. The left was callibrated with an elite group of spyder 3 I do not have access to. I applied the file with windows instead of the utility of spyder color management. The second is new, and it is not callibrated by what that is, but instead was done by hand with integrated RGB brightness/contrast/custom settings. Two of them are very close to eachother, so enough for my taste. but when photoshop changes which looks like the image, it is causing problems. Curiously, when I disable calibration of the screen on the left, the image doesn't change color between monitors, but instead always appears as it does on the right. but then they do not match to the top and all the screen looked washed out because it's uncallibrated, so that won't do me any good. Something else interesting to report, is when this image is saved as a. JPG and read with firefox, the image appears exactly as the monitor on the LEFT (which is my primary monitor) despite the monitor left which is the force has changed. does anyone have any suggestions? It also appears that photoviewer windows behaves in the same way, although firefox does not work. Meaning when I open an image in all 3 on the left monitor, they look alike, but when opened on the right monitor, windows photo viewer and photoshop both display the image such as the brighter and redder that firefox works. It's frustrating, because it seems that photoshop changes the image with my measured on my monitor left to match what it looks like on the web, it does. but it does not for the monitor right, or the left is uncallibrated. Another question, I can see with this is even if the user interface is the same shade of gray, the images are different between the monitors because of this change. Does anyone have suggestions?

    -BD

    What you need to understand, is that Photoshop converts the image data, the document profile for the display profile, independently for each display. It is a managed pipeline standard color display. Windows Photo Viewer does the same thing (but do not have a lot of other applications).

    When you move a picture on the screens, it snaps when you drop; as the new display profile is picked up.

    Calibration is only partly about changing the monitor's response. The second part a profile, which is a complete description of the screen in its calibrated State. Then a conversion of standard profile is performed as he goes to the screen. The profile has a much higher level of accuracy than the single calibration.

    ---

    If the image on the web has the stripped document profile, Firefox with default settings does not have this conversion and sends just the unchanged data to display. In other words, it is not color managed. This behavior can be changed, but get your first straight base display profiles. Unless you get a new calibrator it is no that you can do to match these two views.

  • Develop the user interface to CS6 Plugin - which produced required Adobe?

    According to the development of the CS6 Illustrator SDK documentation, the only way to achieve platform-independent UI is the use of the flash or flex.

    I have to develop a plugin for AI CS6 for windows and Mac. Adding native controls is restless and too much time.

    The flex mxml seems relatively simple and fast (taking into account the time of development). That's why I chose flex as the UI component for my plugin.

    1. to use flex UI, I'll need to add all of the user interface in a mxml + actionscript compiled into an Extension of the AI (zxp file).

    2. all my business logic will remain in C++ which I believe will be platform independent.

    The SDK documentation confuses me in that all Adobe products are required to develop the flex user interface extension.

    1 adobe Extension Builder 2.1 (to generate the zxp file)

    2 flash Builder 4.5 stand-alone (is different from flex builder )?

    3 CS Creative Suite SDK (what is different from the THE CS6 SDK)?

    Which are optional and that mandatory for flex UI designig of AI plugin?

    I am a developer C++ and new to flex. So please ignore any declaration of amateaur above.

    DataSet wrote:

    Another question, we cannot use MFC / UI for AI plugin Windows activeX controls? We can at least get some help with the user interface infrastructure standard darg-drop.

    CreateWindow() is real pain.

    Yes, you can use MFC, but it makes your windows plugin only.

    QT and wxWidgets have user interface designers and is cross-platform.

  • deployment of a BPM Application large Oracle with several projects of the user interface

    Hello world
    I'm working on a large application with Oracle BPM 11.1.1.5.0.

    I use JDeveoper 11.1.1.5.0 to build the application.
    The application has many tasks user with a lot of the UI (one for each task of the user).

    My problem is, whenever I make a small change in the project, I need to deploy this, which includes a master project and five or six projects UI (for now) for tasks of the user.
    As demand grows, I'm sure that this will certainly become a problem.

    So my question is if I do this the good sense? or should there be a more effective way?

    Thanks in advance

    Published by: luke on April 17, 2012 12:16 AM

    Hi Luke
    1. as a general rule, there is NO need to have a user interface project for an individual task. As initiator, approver, reviewer, LegalApprover etc etc, you have like 10 tasks (.task files). You can have just a single project of TaskForms UI and have taskDetails.jspx generated for each of these tasks. This is appropriately.

    2. any Application workflow must have only 2 deployers. Deploy resources are for real Workflow stuff that will have the main BPEL or process, BPM, human tasks etc. Basically, everything that goes into the workflow project. And another official of the deployment is that the REST of things means that the UI TaskForms project and other project support as useful projects, WebServices, EJB projects (if you have Web services). All this will be deployed as a SINGLE EAR.

    Lets take an example JDeveloper IDE point of view.
    1. application Name: SalesOrderApp
    2 workflow project name: SalesProcess (he is a a project jdeveloper project SOA or BPM Project type and has all human tasks, bpels, process bpm, rules etc.).
    3 interface user Project: SalesTaskForms (it is a form generated automatically for the first task you choose. Then for the rest of the tasks you can use this same project, to generate jspx for all others. WORK files. VIEW documents online on how to do it. I'll see if I can compile this list of URLS for you).
    3. support the EJB projects: MyEJBProject1 (some EJB project that connects to some specific to your back-end database project)
    4. support another Service EJB project: MyExtServiceProject1 (as another project EJB that uses data from an external source)
    5. some WebService project: SalesCreditCardValidationWebService (some WebService project to be deployed as. WAR file that performs a service).

    Try to apply the Concepts of SOA for each Service your application needs. Instead of putting all the EJBs and everying in one giant project, try to split their need logically commercial/sage and geenrate separate projects so that they can maintain as it is to other projects and other applications.

    Anyway, coming back, in the example above, you should have deployment just 2: 1 is the JAR file of SCA in the Workflow and another complete of the EAR file.
    (a) for the workflow project, right-click and generate a deployment profile to deploy all the workflow and NOT on the other projects of the user interface.
    (b) for each project individual genereate a profile of deployment such as MyEJBProj1, MyEJBProj2, MyWebService1, etc etc.
    (c) for TaskForms project, generate a deployment as SalesTaskForms profile. It is a WAR file.
    (d) at the level of the Application, create a new profile of deployment of the EAR type and now assemble all the projects in this EAR, with the exception of the Workflow project.

    First of all, you deploy file JAR of SCA of the Workflow. You need to redeploy this again only when you make changes to the workflow, humantasks etc etc.
    Deploy the full blown EAR file that has all the stuff (EJB JARs, TaskForm WARs, WebService wars etc.).

    At any time, you change your code taskforms or redeploy a java, ejb, EAR file.

    You should have a POT and an EAR to deploy at the end of the day. Infact this is how it should go into UAT, and production. They may not have many pots, multiple wars deployed. The reason why we have separated Workflow SCA Jar file is, because the workflow will not change frequently. And also older versions of SOA/BPM (before 11.5 FP) have a huge disadvantage. Whenever we deploy a workflow project, it will make existing processes VITIATED, unless you deploy a different version. This isn't a problem anymore for 11.5 + FP (Feature Pack applied). Therefore, be careful when you redeploy workflow project.

    Thank you
    Ravi Jegga

  • Is it possible to add a hard drive to a VM running via a script or a program without using the user interface

    I'll try to ask this question clearly, but I ask that read you it carefully, because I can't do a great job of setting out clearly what I'm looking for.

    I know how to create a virtual disk in a batch file or a script.  I know how to have a running virtual machine to detect a newly added hard drive and format it in Linux, BACK, and NetWare. I do not have scripted this part, but I did it manually by adding records via the UI and then by doing the steps manually to make the operating system to detect and format the newly added drive. In each case, these steps are scriptable with the exception of the addition of the drive in the user interface.

    The only way I know to add a new hard disk to a virtual computer running is through the user interface. I don't know in a way that can contain script (for example vmrun or an API call) to make.

    I guess that maybe I can have the virtual machine to go into sleep mode and then add the HDD in the vmx file while the machine is in standby mode, then put the computer to sleep mode, although I have not tested this.

    My question is, ' can a virtual drive be added to a virtual machine running without using the user interface and without put the machine to sleep, or in other words in a script any?

    Have you tried VI SDK?

Maybe you are looking for

  • How to import photos to iCloud for the new iPhone!

    Hello! I just got a new iPhone 6 - this is my third in a year and a half (I know, I'm horrible to do not drop into the water). Anyway, I downloaded a backup of my computer, but the only one I had done since March 2015 before I left the country for tr

  • Satellite P50-B-103 - noise coming from the ODD box / ram

    So the first thing is that I have a strange noise coming out of my drive/ram zone cd of my laptop, (its new).the cd drive is emptyThe noise sounds like the laser moves around, but for a very short period of time Second thing, it is that the update fo

  • How can I become a normal user?

    I'm really tired of not being able to post answers to the people who help me because of my low status here. It's rather boring and this is the only forum that I've never had this limitation with. What is a forum of the knowledge base for if you are l

  • What memory can I use in Satellite M40-184?

    This memory module to add for laptop Toshiba Satellite M40-184?

  • Bootdisk mysteriously filled with gigabytes of data within a few hours of non-use.

    Machine: Macbook Pro 13 '' end-2013; 16 GB; 250 GB SSD; 10.10.5 OSX The startup disk needs a space open to operate of course. After that year, a few weeks ago the macbook pro 13 began to complain that the boot disk was almost full. Very well. I moved