How to use Japanese keyboard?

I just bought my BB Curve 9360.
Now I want to know how to install Japanese keyboard.
I hope someone could help me out, instead of RIM....
Sincerely

Hi,
From the link below, select BlackBerry Curve 9360.
https://swdownloads.blackberry.com/Downloads/entry.do?code=5D6646AAD9BCC0BE55B2C82F69750387
Then, choose
BlackBerry Handheld Software v7.0.0.2355 (Asia)
Package Version: 7.0.0.2355
Consisting of:
Applications: 7.0.0.557
Software Platform: 8.0.0.510
File name: 9360jAsia_PBr7.0.0_rel2355_PL8.0.0.510_A7.0.0.557_AIS_Thailand.exe
File size: 196.75MB
Download the sotware and install it.
After installation, you need to delete [Vender.xml].
From [Start]⇒[Computer]⇒[C:]⇒[Program File]⇒[Common File]⇒[Research in Motion]⇒[AppLoader]⇒[Vender.xml]
Then, click on [Loader.exe] and follow the direction.

Similar Messages

  • How to use virtual keyboard in flex application

    hi..
    i am using flash builder 4,
    how to use virtual keyboard in flex?
    if any one aware of this pls reply me.......
    saran r

    hi,
    how to code for these buttons  "control,alt,delete,insert and spacebar".
    can u help me  how to program?
    i have attached the mxml code with this,
    virtualkeypad1.mxml
    <?xml  version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                    xmlns:s="library://ns.adobe.com/flex/spark"
                    xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"  minHeight="600"
                     creationComplete="application1_creationCompleteHandler(event)"  viewSourceURL="srcview/index.html">
         <fx:Script>
             <![CDATA[
                 import flash.utils.getQualifiedSuperclassName;
                 import mx.events.FlexEvent;
                 private var inpText:String = 'inp1';
                 private var shiftState:Boolean = false;
                 private var capsState:Boolean = false;
                 protected function  keyboard_clickHandler(event:MouseEvent):void
                     this[inpText].text =  this[inpText].text+(event.currentTarget as Button).label;
                     if (shiftState == true) shift_clickHandler(null);
                 protected function caps_clickHandler(event:MouseEvent):void
                     capsState = !capsState;
                     if (capsState == true)
                         currentState = "SHIFTED" else currentState =  "PRIMARY";
                 protected function tab_clickHandler(event:MouseEvent):void
                     this[inpText].text = this[inpText].text+"    ";
                 protected function shift_clickHandler(event:MouseEvent):void
                     shiftState = !shiftState;
                     if (shiftState == true)
                         currentState = "SHIFTED" else currentState =  "PRIMARY";
                 protected function enter_clickHandler(event:MouseEvent):void
                     this[inpText].text = this[inpText].text+"\n";
                 protected function  backspace_clickHandler(event:MouseEvent):void
                     var tmpStr:String = this[inpText].text;
                     this[inpText].text = tmpStr.substr(0,tmpStr.length-1);
                 protected function  application1_creationCompleteHandler(event:FlexEvent):void
                     inp1.setFocus();               
                 protected function focus_enterHandler(event:MouseEvent):void
                     inpText = event.currentTarget.id;
             ]]>
         </fx:Script>
         <s:states>
             <s:State name="PRIMARY"/>
             <s:State name="SHIFTED"/>
         </s:states>
         <fx:Declarations>
             <!-- Place non-visual elements (e.g., services, value  objects) here -->
         </fx:Declarations>
         <s:TextInput id="inp1" y="36" width="151" horizontalCenter="0"  click="focus_enterHandler(event)" y.PRIMARY="239"  horizontalCenter.PRIMARY="42" width.PRIMARY="199"  height.PRIMARY="31"/>
         <s:Group id="keyboard" width="661" height="184"  horizontalCenter="0" y="300" focusEnabled="false">
             <s:Button x="5" y="5" label="~" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="`"/>
             <s:Button x="49" y="5" label="!" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="1"/>
             <s:Button x="93" y="5" label="@" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="2"/>
             <s:Button x="137" y="5" label="#" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="3"/>
             <s:Button x="181" y="5" label="$" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="4"/>
             <s:Button x="225" y="5" label="%" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="5"/>
             <s:Button x="269" y="5" label="^" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="6"/>
             <s:Button x="313" y="5" label="&amp;" height="43"  width="44" fontSize="24" fontWeight="bold"  click="keyboard_clickHandler(event)" label.PRIMARY="7"/>
             <s:Button x="357" y="5" label="*" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="8"/>
             <s:Button x="401" y="5" label="(" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="9"/>
             <s:Button x="445" y="5" label=")" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="0"/>
             <s:Button x="489" y="5" label="_" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="-"/>
             <s:Button x="533" y="5" label="+" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="="/>
             <s:Button x="577" y="5" label="Backspace" height="43"  width="80" fontSize="11" fontWeight="bold"  click="backspace_clickHandler(event)"/>
             <s:Button x="5" y="48" label="Tab" height="43" width="67"  fontSize="12" fontWeight="bold" click="tab_clickHandler(event)"/>
             <s:Button x="72" y="48" label="Q" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="q"/>
             <s:Button x="116" y="48" label="W" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="w"/>
             <s:Button x="160" y="48" label="E" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="e"/>
             <s:Button x="204" y="48" label="R" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="r"/>
             <s:Button x="248" y="48" label="T" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="t"/>
             <s:Button x="292" y="48" label="Y" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="y"/>
             <s:Button x="336" y="48" label="U" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="u"/>
             <s:Button x="380" y="48" label="I" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="i"/>
             <s:Button x="424" y="48" label="O" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="o"/>
             <s:Button x="468" y="48" label="P" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="p"/>
             <s:Button x="512" y="48" label="{" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="["/>
             <s:Button x="556" y="48" label="}" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="]"/>
             <s:Button x="600" y="48" label="|" height="43" width="57"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="\"/>
             <s:Button x="5" y="91" label="CapsLock" height="43"  width="80" fontSize="12" fontWeight="bold"  click="caps_clickHandler(event)"/>
             <s:Button x="85" y="91" label="A" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="a"/>
             <s:Button x="129" y="91" label="S" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="s"/>
             <s:Button x="173" y="91" label="D" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="d"/>
             <s:Button x="217" y="91" label="F" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="f"/>
             <s:Button x="261" y="91" label="G" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="g"/>
             <s:Button x="305" y="91" label="H" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="h"/>
             <s:Button x="349" y="91" label="J" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="j"/>
             <s:Button x="393" y="91" label="K" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="k"/>
             <s:Button x="437" y="91" label="L" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="l"/>
             <s:Button x="481" y="91" label=":" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY=";"/>
             <s:Button x="525" y="91" label="&quot;" height="43"  width="44" fontSize="24" fontWeight="bold"  click="keyboard_clickHandler(event)" label.PRIMARY="'"/>
             <s:Button x="569" y="91" label="Enter" height="43" width="88"  fontSize="24" fontWeight="bold" click="enter_clickHandler(event)"/>
             <s:Button x="5" y="134" label="Shift" height="43" width="106"  fontSize="24" fontWeight="bold" click="shift_clickHandler(event)"/>
             <s:Button x="111" y="134" label="Z" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="z"/>
             <s:Button x="155" y="134" label="X" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="x"/>
             <s:Button x="199" y="134" label="C" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="c"/>
             <s:Button x="243" y="134" label="V" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="v"/>
             <s:Button x="287" y="134" label="B" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="b"/>
             <s:Button x="331" y="134" label="N" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="n"/>
             <s:Button x="375" y="134" label="M" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="m"/>
             <s:Button x="419" y="134" label="&lt;" height="43"  width="44" fontSize="24" fontWeight="bold"  click="keyboard_clickHandler(event)" label.PRIMARY=","/>
             <s:Button x="463" y="134" label="&gt;" height="43"  width="44" fontSize="24" fontWeight="bold"  click="keyboard_clickHandler(event)" label.PRIMARY="."/>
             <s:Button x="507" y="134" label="?" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="/"/>
             <s:Button x="551" y="134" label="Shift" height="43"  width="106" fontSize="24" fontWeight="bold"  click="shift_clickHandler(event)"/>
         </s:Group>
    </s:Application>
    thanks in  advance,
    saran r

  • Hi, I've checked how to use kannada keyboard in Yosemite. But, there are some 'vattu forms' and other grammar in Kannada language that I don't know how to use it. For eg, Preetiya taatanige nimma muddu mommagalu maduva namaskara? How to write this?

    Hi, I've checked how to use Kannada keyboard in Yosemite. But, there are some 'vattu forms' and other grammar in Kannada language that I don't know how to use it. I know how to change between the keyboards and can also view keyboard. However, For eg, 'Preetiya taatanige nimma muddu mommagalu maduva namaskara' How to write this? If anybody can answer this, very much appreciated.
    Thanks in advance for your reply.

    In general, you need to use the "f" (kannada qwerty keyboard) or "d" key (kannada) between letters to make special forms.  Also you may need to adjust the typography settings of the font, which is done by doing Format > Font > Show Fonts > Gear Wheel > Typography as shown below.  If you can provide screenshots or more detailed info on things you cannot make, I can perhaps help.
    It is important to note that MS Word for Mac does not support Indic scripts -- any other app should work OK.

  • Can't use Japanese keyboard in iOS 8

    I cannot use Japanese keyboard, both Romaji and Kana, after updating to iOS8.
    The predictive function that worked well in iOS7 just disappeared with no clues.
    Normally, when I type in Kana, it will convert what I type to Kana and when I press Enter, it will show a list of words that match with it. With pressing Enter again, the word I selected will be shown on the screen.
    This function can't work anymore in iOS8.
    When I type in Kana, it just shows English alphabet with no list of words to be chosen in Japanese after I pressed Enter.
    I tried to removed Japanese keyboard many times but it didn't work.
    Already Restore & Backup, this didn't work either.

    The issue can be solved by the advice in the discussion below
    iOS 8 broke my Japanese keyboard. (iPhone 5s)

  • How to use right keyboard symbols on Satellite A300?

    I have just recently purchesed a Toshiba Satellite A300.
    The system details are as follows:
    Processor: Intel(R) Core(TM) 2 Duo CPU T5850 @ 2.16 GHz 2.17 GHZ
    Operating System: Windows Vista Home Premium 32-Bit.
    Memory Ram: 3.00GB.
    Anywho, it cost 879 Euro + postage and handling. The problem is the keyboard. The keyboard language is set to English (US). For who knows what reason, some of the keys do not enter their designed symbol/function/numeral.
    For example, in order to make the symbol ''@'' i have to use the corresponding key sequence SHIFT+','
    But when i press SHIFT + 2 i get ''
    I cant figure out why, but i cannot even get it to work. A lot of the keys are out of whack. I haven't touched anything, i only got it over a week ago. It cost me a lot and i can't seem to find any support. I had a technician look at it, but he was unable to figure it out.
    I've tried holding down ALTGR and shift and pressing INSERT and everything but to no avail.
    PLEASE, i need to figure out how i can ressolve this issue, i cant access one of my email accounts, because i can't figure out whats wrong with the keyboard.
    my email address is [email protected]

    Hi
    The solution is easy. You have to change the keyboard language to English UK.
    Check this Microsoft page [How to change the keyboard layout|http://windowshelp.microsoft.com/Windows/en-US/help/765a7264-b593-4458-90cf-0d0713b5dfe61033.mspx]
    And [how to change the keyboard input language|http://windowshelp.microsoft.com/Windows/en-US/Help/52e368fa-bd32-4749-955e-331f9130889f1033.mspx]
    Cheers

  • How to use japanese data in BO 6.5

    Post Author: sinha_ips
    CA Forum: Desktop Intelligence Reporting
    hi,I am using BO 6.5 trying to use japanese data in my report. The database i m querying supports japanese and the oracle client at my machine also supports japanese.I have installed the japanese language set also at my machine.But all this is not giving me the results. Japanese data is still coming as junk. Any help is appreciable...Thanks & Regards,Ashish

    Are you able to log into infoview then?  And the problem happens when you select on a web report?  Do you see any errors when you select the link?  Does this happen with all reports? or is there a specific type of report that this happens to?
    With your general supervisor account, try to create a simple report from a simple database such as efashion, with one object.  Make sure that you save the report without refresh on open.  Then try again.
    Basically, you'll want to narrow the problem down to:
    1. report related
    2. deployment related
    3. browser related.
    4. authorization related.
    Run simple tests to narrow down what the problem is related to.

  • How to make Japanese keyboard staggered layout?

    I'm looking for help regarding changing the keyboard layout slightly for the Japanese keyboard.
    For the US keyboard, you can set it so that the keys are staggered like a keyboard, so its easier to type (for me).
    However, the Japanese keyboard has an extra "-" key on the home row which offsets the entire row.  Is there a way to make the layout staggered like the US keyboard? 

    By "staggered" do you actually mean "split", with the keyboard in two parts?
    There's no way to change anything related to the keyboard in iOS.  But you can ask Apple for new features via
    http://www.apple.com/feedback

  • How to use wireless keyboard with iPad, How to use wireless keyboard with iPad

    Do you have to have a Mac to setup the wireless keyboard. Can I use it directly with my iPad without a Mac.

    What brand/model keyboard? Not all keyboards can be used.
    http://www.tech-recipes.com/rx/5772/ipad-how-to-pair-connect-any-bluetooth-keybo ard/
     Cheers, Tom

  • How to use French keyboard with FCP English Shortcut

    Hi,
    I have a new MAC PRO and im using FCP, the shortcut wont work
    when my keyboard is French keyboard. I always need to change it back to english
    to be able to use them. Since im always writing in french, it became a pain to switch it 20-30 times per days
    On my last mac I didnt have that problem, I tried looking for some setting in FCP
    but I can't find any.
    Does anybody know how to make this work ?
    Thanks !

    Remapping is where you set keys on your keyboard to perform specific functions that aren't otherwise set to keys. Once you change your keyboard to French, you lose some of the pre-mapping capabilities. Go into Tools/Keyboard Viewer, and you can map from there. If it's confusing, look it up in the manual. It's clearly outlined for you.
    Bonne chance!

  • How to use Tibetan keyboard?

    beautiful keyboard and it works well, just a little tricky in places - cannot figure out how to type RA GA-TA YA-TA

    Could you use the camera icon to post a screen shot of what that sequence should look like?

  • How to use one keyboard, mouse and display for two PC's?

    hey guys, right now i'm using a mac mini and also another Windows PC tower. whenever i want to switch between them i need to re-plug in my headphones/keyboard/mouse/display and this is getting annoying. i've been using a usb hub for the mouse and keyboard so it's not as difficult to setup. is there anything out there that'll allow me to switch between them more easily?
    what are my options?
    thank you

    If both are on your intranet, try Synergy.
    I personally use the Wormhole.  You can drag between desktops.

  • How to use Kannada keyboard on iPhone?

    How can I activate the Kannada keyboard on my iOS devices?

    This App installs the Kannada keyboard extension:
    Kannada Keyboard by iDeviceApps: https://appsto.re/us/HPSCA.i

  • HT4112 how to use apple keyboard with window 7

    I know a lot of people have asked this question, but I could not find a anwser that works. I am using an apple keyboard with my windows 7 laptop. I could not change the delete key to delete, apple keyboard delete button is backspace, not delete. Of cause, I have to use the on screen keyboard to log in each time becaue there is no delete button on apple's keyboard. Can some one provide a simply method to convert my apple keyboard to windows keyboard? Thanks and I appreciate your help.

    Are you using a wireless Apple kbd or USB keyboard?
    See http://xahlee.info/kbd/apple_pc_kb_diff.html
     Cheers, Tom

  • My Iphone keeps telling me how to use certain things like alternate keyboards. How do I turn this off?

    Every time I hit the globe when sending a text it tells me how to use alternate keyboards. Please tell me how to turn this off.

    That's not what I meant. I know how to send a text, but when I try to insert and emoji the same alert comes up.

  • How to use the MAC Keyboard

    Can anyone point me to a tutorial or posting which explains how to use the keyboard?
    I have an iMac (sep2009) with a wired keyboard including numeric keypad and there are keys that I just do not know how to use
    eg:
    How do I put FUNC LOCK on so that when I using Excel the F2 key becomes EDIT CELL rather than adjusting the brightness
    What do the keys below the F14 and F15 keys do? There is an angled arrow up and left and ne down and right. and there is an arrow up with two lines crossing it a,d another similar one down. What are we supposed to sue these for?
    Under the F16 key there is a box with a cross through it. What does that do?
    WHy are F5 and F6 blank?
    What does the big key on the very right bottom do?
    I would have thought that there would be a MAC101 guide to the keyboard but I cannot find it... Any help from out here?
    Many thanks

    jhrichmond wrote:
    Can anyone point me to a tutorial or posting which explains how to use the keyboard?
    I have an iMac (sep2009) with a wired keyboard including numeric keypad and there are keys that I just do not know how to use
    eg:
    How do I put FUNC LOCK on so that when I using Excel the F2 key becomes EDIT CELL rather than adjusting the brightness
    System Preferences>Keyboard; Set it to use Function keys as F1, F2, etc.
    What do the keys below the F14 and F15 keys do? There is an angled arrow up and left and ne down and right. and there is an arrow up with two lines crossing it a,d another similar one down. What are we supposed to sue these for?
    I just loaded the UK Apple store and compared the keyboards to the ones at the US store. I guess since you are so "international" over there, you get pictures instead of words. My guess would be Home, End, Page Up and Page Down
    Under the F16 key there is a box with a cross through it. What does that do?
    Clear key for the numeric keypad.
    WHy are F5 and F6 blank?
    No additional functions assigned to them.
    What does the big key on the very right bottom do?
    Enter key for the numeric keypad.
    I would have thought that there would be a MAC101 guide to the keyboard but I cannot find it... Any help from out here?
    I think Apple thinks based on where you live, you understand pictures instead of words. Probably cheaper to make one keyboard than ones for each language.
    Many thanks
    Edit: Almost forgot. MAC is an acronym for Media Access Control. A Mac (short for Macintosh) is a personal computer made by Apple.
    Message was edited by: Barney-15E

Maybe you are looking for