Change language in Crystalviewer . NET

Hi,
I´m not able to change the language in the crystalviewer menu (Export, Save, parameter, grouptree, page, zoom search etc. and print functions), which I want to be English (US) today it´s Swedish.
Could you help me with some ideas?

Helped by this:
http://msdn.microsoft.com/en-us/library/ms227537.aspx
UseBrowserLocale
The UseBrowserLocale element retrieves the language settings in your browser for the CrystalReportViewer control. When set to true, this setting configures the CrystalReportViewer control to observe the browser locale. When set to false, this setting restricts the locale that is displayed page-by-page. This element needs to be manually added to the Web.Config file of your website.
  <configSections>
        <sectionGroup name="businessObjects">
              <sectionGroup name="crystalReports">
            <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler" />
              </sectionGroup>
        </sectionGroup>
  </configSections>
  <businessObjects>
        <crystalReportViewer>
            <add key="UseBrowserLocale" value="true" />
        </crystalReportViewer>
  </businessObjects>
http://devlibrary.businessobjects.com/BusinessObjectsXIR2/en/devsuite.htm#en/Viewers_SDK/viewerssdk_com_doc/doc/viewerssdk_com_doc/WebReportingLib35.html#302467
Syntax
Property ProductLocale As LCID
Remarks
The productLocale does not apply to text associated with the report content (the browser locale is used to determine how to format report-related text). Additionally, the productLocale setting does not apply to the groupTree text

Similar Messages

  • Typing in remote Control when changing language with key combination of Alt + Shift some time change to Upper Case and Caps Lock is off

    let me first say that this links dos not apply to my problem the first one is :
    http://social.technet.microsoft.com/Forums/en-US/winserverTS/thread/46b24b68-debf-466e-a780-66a3b999724c
    and it dos not apply because I dont use remote app, and also i able to change settings
    http://social.technet.microsoft.com/Forums/en-US/winserverTS/thread/6a0f0eda-d3f6-4cd9-91ef-a7e0b20bc799/
    this one has similar problem but he working with remote app and do not have the Upper Case and Caps Lock is off
    http://social.technet.microsoft.com/Forums/en-US/itproxpsp/thread/f978e234-2b3c-4780-9dda-bec52b25330d
    this one using XP i have it on windows 7 connecting to remote server 2008 r2
    here is the issue 
    my users remote control a terminal services farm, now when they changing language to English some  time it change to English Upper Case and caps lock is off ! then the Alt + Shift and the go back to English lower case and if they just play with
    this (i mean they just use Alt Shift over and over to try to get back to normal state when you hold shift and alt and you change to English and back to Hebrew if you hold the alt shift one more time )
    i tonic some thing strange ifi hold down first the alt and then the shift this issue happen more often
    i upload a video on this showing the problem live on my dropbox :
    https://dl.dropboxusercontent.com/u/103434771/meditowers/IMG_0245.MOV
    here is how the normal setting should be
    Alt + shift need to change to lower case English
    then Alt shift one more time will go back to Hebrew
    now if you hit on the caps lock you will be in English all the time with Upper Case

    Hi Yitzhak,
    Please refer to this post:
    www.davidbond.net/2012/10/rdp-shift-key-gets-stuck.html
    This post includes fix to this issue at the comments.
    Netanel Ben-Shushan, MCSA/E, MCTS, MCITP, Windows Expert-IT Pro MVP. IT Consultant & Trainer | Website (Hebrew): http://www.ben-shushan.net | IT Services: http://www.ben-shushan.net/services | Weblog (Hebrew): http://blogs.microsoft.co.il/blogs/netanelb
    | E-mail: [email protected]

  • Change language programming

    how change language programming

    how change language programming
    I'm guessing English is probably not your first language and hence posting in English is probably rather difficult.
    Unfortunately, it's impossible to tell what the question is.
    If you say have vb and want c# then there are online translators.  But they're not very reliable and re-writing yourself is usually better.
    If you have a solution which is c# and you want to use some VB in it.
    You can't in the one project but each project in a solution can be different languages.  This is because they are essentially compiled separately.  Each project is compiled to an exe or dll.
    You can therefore have as many languages as you have projects in a solution.
    If you mean how do you learn a different language.
    You already have a head start in that everything use .net libraries so the methods and classes are the same.
    You "just" have to learn the rest of the language and I would suggest video training if your English is up to it ( pluralsight is good ) and or a book.
    It took me a week to transfer from vb.net to c#.net.  Admittedly, I had already done some pascal as part of my degree and know a number of other languages but it was pretty easy to pick up.
    Please don't forget to upvote posts which you like and mark those which answer your question.
    My latest Technet article - Dynamic XAML

  • What key(s) do i type to change language from english to other? i am writing s story in dual languages. i was told to click command and space bar together but it is not working.

    what key(s) do it type to change language from english to other? i am writing a story in dual languages. I was told to click command and space bar together but it is not working.

    Command Spacebar opens Spotlight as you have found out. If you want to change languages you need to say what app you are using to write the story in, I'm guessing you are using Pages or MS Word. If that's the case
    Pages: Open Inspector - Click the T tab - Click Language and change your language.
    MS Word: Tools Menu - Language - Choose your language.

  • How to reload the screen when changing languages in JavaFX 2?

    I'm beginner with javaFX and i need to change language of the screen. but i have no idea how to reload the screen when the language was changed. The application have a button where have the language available. I want just refresh screen when the user change language.
    Here is the start method to show the stage.
        @Override
        public void start(Stage stage) throws Exception
            this.stage = stage;
            Locale locale = Locale.getDefault();
            ResourceBundle rb = ResourceBundle.getBundle("resources/Label",locale);
            loader = new FXMLLoader(getClass().getResource("FXMLDocument.fxml"),rb);
            root = (Parent)loader.load();
            FXMLDocumentController controller = (FXMLDocumentController) loader.getController();
            controller.setMain(this);
            scene = new Scene(root);
            stage.setScene(scene);
            stage.show();
    here is the function to change the language(in the same class with start function),the rb is the new ResourceBundle:
        public void refresh(ResourceBundle rb)
              //change the language here
    1. I don't want to use the resourceBundle to get value in resource file and set label in scene one by one.like following:
    this.btnLabel.setText(rb.getString(key.test));
    2. I don't want to reload the scene,like following:
        public void refresh(ResourceBundle rb)
             try
                loader = new FXMLLoader(getClass().getResource("FXMLDocument.fxml"),rb);
                root = (Parent)loader.load();
                scene.setRoot(root);
                FXMLDocumentController controller = (FXMLDocumentController) loader.getController();
                controller.setMain(this);
            catch(Exception err)
                err.printStackTrace();
    So do we have a solution to just set the resourceBundle and reload the scene easier?
    Thanks and best regards!

    Your option 2 (reload the FXML for the scene using the new resource bundle as a parameter), is the way this would normally be done and what I would recommend.
    Failing that, you could use option 1 of individually resetting the label text of labeled items (I don't really recommend this).
    Why don't you want to use option 2?
    Perhaps it is because there is some internal state of the UI which differs from the initial state when the the UI is first loaded (e.g. user has typed text in a text field and you want to preserve that).  If that's the case you will need to either go with your option 1 of individually resetting the label text of labeled items, or implement something which preserves the UI state and user data by saving it in memory or to disk, reloading the UI via the FXMLLoader (essentially your option 2), then restoring the UI state and user data to what it was before the language change.  Preserving and restoring the modified state seems complicated to me if you have a lot of state, so I wouldn't really advise this approach unless you really needed it.

  • I changed language from EN-GB to EN-US but my keyboard is still British (only when using FF). How can I change it to EN-US? in English

    I changed language (based on an answer in this forum) from EN-GB to EN-US but my keyboard is still British (only when using FF). How can I change it to EN-US?
    Should I just export my bookmarks, uninstall and reinstall the proper version? That may just be shorter than anything else.

    GREAT!. Thanks a lot for educating me. There seem to be a million things we have to learn about our computers and when we run into them the first time they seem insurmountable. You pointed me to the solution. Thanks again. Ben

  • Changing Language in 6120

    Hi all
    I am having trouble with changing language in 6120.
    Usually, I am use to change language by pressing the # key when i write some thing... BUT the thing is that in 6120, it will change the language only to the language you choose.
    E.G main language is English, I write a URL in english that i want to get to, now, i am in the site and wants to write in Hebrew, However, the options of changing language by pressing on # key is only 123, abc, ABC but not Hebrew, even when i have Hebrew fonts installed. thus, i need to go to the language section, choose Main language as Hebrew, go back to the site and write in hebrew ... cant i do it just with the # key ?! so i will have 123, abc, ABC, אבג ... BTW, i had this option in my old 6230i

    In July of this year, Apple made a change to the iTunes store which essentially makes this impossible (for now). Until that time, there was a workaround you could use as per their Knowledgebase which would let you set the language of the iTunes Store back to English, regardless of what country your iTunes account was based in.
    There have been repeated attempts from the user community to get Apple to acknowledge and address this issue, but the customer service staff have thusfar only referred to the KB article, which doesn't actually help. For now, your only option is to select a different country's store by selecting the flag icon/button on the lower right corner of the iTunes store and reading about applications or music in another store...of course, this actually will log out out of your itunes store account, which means you can't purchase anything, and as soon as you sign back in, you will be forced to the language of the country your account is based in.
    I find this policy of Apple's to be truly repugnant and counter everything they've strived to stand for - but it seems it's here to stay, as they won't acknowledge nor fix it.
    Apple's staff only point to:
    http://support.apple.com/kb/HT2242
    This will not fix the problem we've all been having since July.

  • How to change language in photoshop CC 2014 with rksskogo into English?

    how to change language in photoshop CC 2014 with rksskogo into English?

    go to your installed photoshop directory select locales folder "nl_NL" folder "support files" "tw10428.dat" rename to "tw10428.dat.old" press yes, and restart the tool again

  • Change language in Acrobat XI Pro - It does not work

    I installed Acrobat XI Pro using the Adobe Application Manager (AAM) on Windows 7, English. I am on a Creative Cloud subscription, so i have no .exe file to install from.
    Acrobat XI Pro defaults the  Application Language to English when installing from AAM since Windows is an English version. I want Acrobat XI Pro in Swedish language.
    If i go to Acrobat's Preferences > Language and change the Application Language from English to "Choose at application startup" i never get the dialog that should provide me with the option to change language when i re-launch Acrobat XI Pro. If i hold down Shift-Ctrl when launching Acrobat XI Pro i don't get that dialog either.
    I see the same issue on three computers, two with Win 7 and one with Win 8. Both OS versions are English.
    So, how do i change the Application Language from English to Swedish?
    /Roger

    In case anyone else run into the same issue, here is the solution:
    1. Add remove programs -> Select Acrobat
    2. Then click on Change button  present next to Uninstall option. Acrobat setup dialog will be launched.
    3. Now select Modify option in Acrobat setup dialog
    4. In the dropdown list  select View Adobe PDF
    5. Select the desired language support
    6. Install the required language packs
    When i did, i got the dialog that let me change the language next time i launched Acrobat XI.
    Special thanks goes to Rohit from Adobe!
    /Roger

  • Firefox freeze whenever tired to change language input

    Hi. Whenever I tried to change language input to enter other languages Firefox freeze (program not responding).
    It happens as soon as I hit alt+shift or when I click language bar to select other language.
    It also happens with several languages (that I tested, might be all), and I tried various input software/mode including windows default, all freeze. Reset Firefox under help does not work either.
    This issue occur with Firefox and Chrome, but not IE... Might not be Firefox problem as it happen w Chrome, but and ideas please? Thanks.
    J
    Edit:
    * regedit might be changed, but do not believe touched internet setting.
    * I can enter foreign language as long as I set that language to default, and do not change to other language in the language bar. Currently I am using foreign language input software as default, and switch to English input '''within '''that software.

    Hi. karaoke I am not sure if its the same issue. The crash at language switch on my computer was due to the IME for Eastern Language Banks (Language option -> Detail under text services and input languages -> Properties -> reset/untick auto learn).
    If you are not using Eastern Language IME... I am sure others here have more experience and can better help you. =)

  • How to change language?

    I accidently selected "English" as application language at the first startup of Adobe Reader. Now I do not know how to change it to German, Edit -> Preferences -> International -> Application Language -> "Choose at Application startup" does NOT work. Do I have to uninstall Adobe Reader and reinstall it to change language?!?
    Sorry for my broken English.
    Kind regards - Oliver
    OS: Windows Vista
    Adobe Reader: 8.1.2

    >
    Claudio González, "How to change language?" #2, 26 Mar 2008 5:31 am If you go to Preferences > International (Display in older versions of Reader), you are offered limited language options. These are between English and the language you chose when downolading (older versions), and the present language and selecting language at startup (newer versions), which will probably offer the same two lternatives.
    As I have written, selecting one of these Options does
    b not work!
    Wich means no matter what I choose here it has
    b no effect
    (even after restarting adobe reader or my notebook)!
    Other Ideas?

  • How to change language settings on the latest version of pages?

    How can I change languages in Pages?

    It should do it automatically but otherwise just select select the text:
    Menu > Edit > Spelling & Grammar > Show Spelling & Grammar > Automatic by language > change to your prefered language
    Peter

  • How do I change language in Photoshop CC 2014?

    Hi, I would like to change language on Photoshop CC from Swedish to English. I have already tried doing it from Creative Cloud, but I am not finding the language app and it doesn't work if I change it from setting/preferences.
    Any other option? Thank you in advance!

    Try this direct download of Photoshop CC 2014. It should allow you to choose an install language
    Adobe CC 2014 Direct Download Links: Creative Cloud 2014 Release | ProDesignTools
    Follow the very important instructions or the download will not work.

  • How to change language in speak selection

    Hello!
    Once i bought my fourth gen ipod touch, default voice in "voice over" and "Speak selection" was British Eglish.
    Some day i had to restore my ipod,and i did, after that default language was US English with female voice!
    I found out how to change language in "Voice Over",even found Russian(no necesserity in using it, but its one of my native languages). Still "Speak sellection" was US English.
    When i turn Voice over on, it speaks selection with right language, but it's very hard to operate every time to just hear pronaunciaton of one word(that could be spoken with submenu of "copy,paste,cut,define,speak")
    So i'm wondering,why does changing language of "VoiceOver" not affect speak sellection in normal mode? and how to make it speak different languages?
    Thank You!

    first state:
    "VoiceOver" language:British English (man voice)(i selected it by myself)
    Speak selection ("VoiceOver"assist is ON) : British English.
    State 2:
    VoiceOver language:British English
    Speak selection ("VoiceOver" assist is OFF) : US English (female voice)
    BEFORE restoring "Speak seletion" language was British English by default.
    and i want to know how to make it back.

  • How can change language of application dynamic?

    In the dialog I have combo box in which I can select desire language for application. When I select value I save this value in the config file. But language change ONLY when I exit and again enter to the application. How can change language of application dynamic (without exit from application) ?

    alexpass wrote:
    In the dialog I have combo box in which I can select desire language for application. When I select value I save this value in the config file. But language change ONLY when I exit and again enter to the application. How can change language of application dynamic (without exit from application) ?I guess your application sets the locale at "startup", based on the contents of the config file, using a call to java.util .Locale.setDefault(Locale). Did you try to call this method in response to the selection in the combobox?
    This won't refresh all widgets already created however. You probably have to re-create them all.
    There may be case-by-case way to refresh them, for example Locale-dependent layout may be taken into account dynamically. Try and tell us.

Maybe you are looking for