Phone Pad Problem - 8125, K-JAM, P4300, MDA Vario General

When I try to change tha language on the pphone pad nothing happens, it always returns to English.
Any one can help?

try changing the PhonePad T9 language with the drop-down box, and OK that dialog - then use a task manager to switch back to the app you're typing in. So don't OK that second dialog (the main SIP dialog). I had this happen a few times as well - I think the above 'solved' it.. soft reboot and it permanently stuck on 'Dutch'. Switched back to English now though
Alternatively, I'm sure there's a registry entry for it somewhere.

Thanks but nope, it still does insist on english

alrighty... registry, then... give it a try...
Code:
HKLM\Software\HTC\Intellipad\Languages = N (DWORD decimal)
Where N =
0 = English
1 = German
2 = French
3 = Italian
4 = Spanish
5 = Portuguese
6 = Czech
8 = Dutch
17 = Turkish
Your device *may* have other languages and/or other codes. It's easy to check what it get set to if you have a util to switch tasks: adjust the registry, go to the SIP settings and click the Options button. If it's not the one you wanted, close the Options dialog. Adjust registry, switch back to SIP settings, click the Options button. If it's not the one you wanted, etc.
Good luck

whatever I do, it switches back to 0 = English :x

no idea
you could try in reverse as well... i.e. click the Options button, change the language in the drop-down, and click OK on that dialog (and ONLY THAT DIALOG). Now check the registry - again, use a task switcher or something. Make sure to refresh if your registry editor needs a refresh (PHM does). See if the correct value is set in the registry. If it is, press and hold the power button until you get the message about shutting down. Choose yes. Then wait a second or two for it to boot down, and turn it back on. With any luck, it will have stuck now. If not, I'm completely out of ideas

Been there done than, still insists

one step at a time, then....
when you change the language drop-down selection for the Phone Pad SIP, does the registry value at least change?

Nope :?

and are you making sure that you refresh the view ? e.g. when using PHM regedit
If so - uhh.. no idea, maybe it's setting it somewhere else on your device, but I wouldn't have the foggiest where

Yes, it's OK though I will use the normal keyboard till I find a solution. Thanks a lot

weird.. good luck
maybe somebody else has some other thoughts

No one else?

Related

Tip - How to Disable Clock

Hi folks,
You guys might already know about this but I just discovered how to do it after doing some heavy googling over the past couple of days. Many thanks to the guy at this link who made the discovery!
How to lock down the clock on Windows Mobile devices
I was reading through some of the messages on the microsoft.public.dotnet.framework.compactframework newsgroup when I came upon a real gem of a message.
The key piece of knowledge being, that there is a special registry key, that will disable GUI access for the clock on Windows Mobile devices.
Application State Registry Key for Windows Mobile Clock
HKEY_LOCAL_MACHINE\Software\Microsoft\Clock\
If this is set to 0x11 the clock is enabled, as by default. If it is set to 0x30, or probably anything not 0x11, it is disabled and ignores any attempts to run.
If you are writting any kind of salesforce automation applications, or route management software, then you can see just how useful this feature is. You just add a special admin feature to enable and disable the ability to set the time, or handle it entirely from within your application.
Now I just need to find out why this key even exists, since I hate to find out the OS likes to change it under circumstance X.
// disable clock
System.Byte[] offValue = new byte[1];
offValue [0] = 0x30;
OpenNETCF.Win32.RegistryKey registryKey =
OpenNETCF.Win32.Registry.LocalMachine.OpenSubKey(@"\Software\Microsoft\Clock\", true);
registryKey.SetValue("AppState", offValue);
registryKey.Close();
// enable clock
System.Byte[] onValue = new byte[1];
onValue[0] = 0x11;
OpenNETCF.Win32.RegistryKey registryKey =
OpenNETCF.Win32.Registry.LocalMachine.OpenSubKey(@"Software\Microsoft\Clock\", true);
registryKey.SetValue("AppState", value);
registryKey.Close();
Click to expand...
Click to collapse
And the link to the original source -
http://www.cjcraft.com/Blog/PermaLink.aspx?guid=0b590db3-cc90-45fa-822e-acf91f031052
I was pulling my hair out over that one the last couple of days!
Cheers,
Dav
Hi dav!
I am sorry to burst your bubble, but I tried this registry hack, and found there is an easy way around it, with out editing the registry.
If you hold the OK hardware button (in the center of the joystick, on those devices that have it) then tap and hold the clock (in the task bar) you get a little menu with 2 options: Run and Clock.
If you choose clock from this menu, the app will start and the registry setting will automatically be altered so you will be able to open clock settings normally from now on.
Further investigation showed that the lower 4 bit of the AppState walue (ones digit) simply selects on what tab the clock app will open. Legal values are 1-3. Any illegal value (like 0) will jam the app preventing it from opening by tapping the icon in settings. I suspect that if a command line switch is specified it overwrites the registry value and the app opens any way. (that’s how the menu works)
Just thought you should know.
Hi levenum,
Thanks for the insights! I just tried it too and sadly that is the case ;-( Mmmh, I wonder if there is a way to hide 'Clock' from the Run\Clock thingy? or disable the Clock in some other way?
mmh, back to the drawing board...
Dav
Here's what you might try:
Create a cab that deploys an empty clock.exe to windows directory on the device.
Clock.exe is a ROM file, but a cab should be able to overwrite it (it won't work manually). This way no matter who calls it (menu or control panel) they will see the empty exe and nothing will happen.
Sounds like a good idea to me! I'll give it a try and see how it goes. Thanks for your continued help
Dav
Worked nice Thankyou!
btw, do you think that overwriting the Clock.exe would have any effect on the 'displaying' of the date in the Today Screen? By clicking the date we launch the Clock.exe program, but something else other than Clock.exe must control what shows the current date, right? I mean, the current date wouldnt just stay on the date on which we delete Clock.exe?
Cheers and thanks again,
Dav
Actually, if the exe was responsible for the date on the today screen, you wouldn't see anything once you overwritten it. Today date is just another plug-in. I think its clockdll.dll but I am not sure. Whatever the file name, it takes the date directly from the system clock.
As I understand it clock.exe is just a little GUI utility for setting system time, and alarms.
That sounds right and what i was thinking, always good to have a second opinion for confimration.
All the best,
Dav
seems like you guys might know what your doing, so do you know how to get the battery removed and the clock back on the today screen of WM5 latest rom releases....
levenum said:
Hi dav!
I am sorry to burst your bubble, but I tried this registry hack, and found there is an easy way around it, with out editing the registry.
If you hold the OK hardware button (in the center of the joystick, on those devices that have it) then tap and hold the clock (in the task bar) you get a little menu with 2 options: Run and Clock.
If you choose clock from this menu, the app will start and the registry setting will automatically be altered so you will be able to open clock settings normally from now on.
Further investigation showed that the lower 4 bit of the AppState walue (ones digit) simply selects on what tab the clock app will open. Legal values are 1-3. Any illegal value (like 0) will jam the app preventing it from opening by tapping the icon in settings. I suspect that if a command line switch is specified it overwrites the registry value and the app opens any way. (that’s how the menu works)
Just thought you should know.
Click to expand...
Click to collapse
wow..thanx for this. worked like a charm on my wing (and 2 yrs after it was posted i might add =P). i thought my alarm clock was lost FOREVER!
Hi,
I found the following code in this discussion thread:
// disable clock
System.Byte[] offValue = new byte[1];
offValue[0] = 0x30;
OpenNETCF.Win32.RegistryKey registryKey =
OpenNETCF.Win32.Registry.LocalMachine.OpenSubKey(@"\Software\Microsoft\Clock\", true);
registryKey.SetValue("AppState", offValue);
registryKey.Close();
It looks pretty useful to me but It has some OpenNETCF keyword.
Please suggest me what is OpenNETCF? Is it an additional third
party compact framework and how can I get this?
Also, if it is inbuild reference by Microsoft, from where to get it?
-Abhishek Maitrey
OpenNETCF is an extra SDK for WiMo devices. Search for it....
In this situation it's not needed.

not able to use the down arrow in text messages

before the ROM upgrade to Qtek's latest ROM (1.30 if I remembered correctly), I could use the down arrow key or down D-Pad key, when the Universal was in laptop mode, to select from To to the messages. This is when I am writing a text message. So I could just key in the number, press the down arrow key and it would go to the message and I can type the message from there.
Now after the ROM upgrade, when I press the down arrow key, it actually scrolls to the bottom of the message (which is empty) and the cursor is still at the To field.
Is there any way to solve this problem so that I can revert back to the down arow key moving from field to field?
You might want to try another rom like the latest dopod or the Ivan 3.2 roms. I had the same problem once but now it's ok with the other rom.
Check IE Navigation
I had this same problem on my Hermes after disabling the 4 way navigation for IE.
Check
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Navigation
4-way Nav = 1
Soft reboot to be sure if effect is not immediate. you may needd to create the key and dword value if they do not already exist.
thanks man
just installed the dopod rom and everything is workin fine now.
problem is back again. i think it has something to do with the programs i installed.
Re: Check IE Navigation
Vs1979 said:
I had this same problem on my Hermes after disabling the 4 way navigation for IE.
Check
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Navigation
4-way Nav = 1
Soft reboot to be sure if effect is not immediate. you may needd to create the key and dword value if they do not already exist.
Click to expand...
Click to collapse
This is your answer. This reg edit (which enables full screen scrolling if value is 0) causes this behavior in messaging.
Re: Check IE Navigation
galt said:
Vs1979 said:
I had this same problem on my Hermes after disabling the 4 way navigation for IE.
Check
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Navigation
4-way Nav = 1
Soft reboot to be sure if effect is not immediate. you may needd to create the key and dword value if they do not already exist.
Click to expand...
Click to collapse
This is your answer. This reg edit (which enables full screen scrolling if value is 0) causes this behavior in messaging.
Click to expand...
Click to collapse
works perfectly. thanks man

How to Change XT9/ABC default settings?

I have the 20 Key Touch Dual (nike) and XT9 works great, but depending on what program you are using some applications start in "abc" mode by default. This seems dependant on what feild you are in; Subject feilds like a new calendar item always starts in "abc" mode, where notes and message feilds start in XT9. If you change the settings it will default back next time you open that application. Is there a way to change the default keypress settings to always start in XT9 for all feilds or a way to remember your preference inside each feild.
Anyone have a suggestions/tweak/fix?
Thanks-
Jcostanza4
i also need to fix this it is really annoying
I think you are right and that it's determined by the field or the application. I've noticed that it defaults to "abc" in fields and applications where non-standard (unusual) language is often used; i.e. calendar entries, phone book, connections settings fields, etc.
There must be a workaround though...
Does anyone found a solution to this??
It's really annonying to have to change everytime for having the xt9 enable. I found a sort of shortcut: long press on the button "*/xt9" and then press "1" but you have to do it each time...
Don't we have a good programmer who knows how to make cab to get rid of this??
i tried this, you can change the keyboard to the normal one, non new htc, this it will be of.
Guys it's simple use file explorer and go to Window\xT9Settings and click to launch settings menu there you can check on/off the following:
-Spell Correction
-Next Word Prediction
-Auto Substitution
-Word Completion
-Multitap Word Completion
Don't know why HTC have hidden it in the windows directory!! it should have been placed in the systems menu in any case you can always create shortcut for it in the programs menu.
gfreek said:
Guys it's simple use file explorer and go to Window\xT9Settings and click to launch settings menu there you can check on/off the following:
-Spell Correction
-Next Word Prediction
-Auto Substitution
-Word Completion
-Multitap Word Completion
Don't know why HTC have hidden it in the windows directory!! it should have been placed in the systems menu in any case you can always create shortcut for it in the programs menu.
Click to expand...
Click to collapse
But the is no option there to disable or enable xT9 in all applications.
I think this is the same issue as being discussed in this thread - maybe they should be merged.
Even though this thread is the 20-key version the way it reads to me we are all looking for the reg key(s) that set the behavior of xT9...
dabs said:
But the is no option there to disable or enable xT9 in all applications.
I think this is the same issue as being discussed in this thread - maybe they should be merged.
Even though this thread is the 20-key version the way it reads to me we are all looking for the reg key(s) that set the behavior of xT9...
Click to expand...
Click to collapse
Im not looking to disable the XT9, but to enable it in every feild by default or ABC mode. Right now certain feilds default to ABC or XT9, so knowing which feild defaults to what is always a pain. If I get used to typing in one mode only everything would be smooth.
This is one of the biggest things that is bugging the hell out of me at the moment with this device. Everything else has been smooth, Really hope HTC fix this in the next version with either a user option to enable the mode you want to use. I am pretty sure that a registry edit could also do this.
gfreek said:
Guys it's simple use file explorer and go to Window\xT9Settings ...
Click to expand...
Click to collapse
no xt9settings program on my traditional chinese version.
Try the link below...^^
http://forum.xda-developers.com/showpost.php?p=2098945&postcount=4
Thanks for the link. It works properly.

turning off keyboard vibrate?

Hi all ...just got the HD2 yesterday ...so far fairly impressed with it ..battery usage is a little scary down to 58 after 15 hours and most of those hours where at night ...but still got to be kind of realistic with the size of screen and cpu it has anyway could anyone help/tell me a way to turn off the vibrate function will typing on the keyboard... I’m finding typing is not a problem at with the standard setup just the annoying vibrate feedback ...ive gone through all the menus on the phone looking for the option to turn it off but nothing found also quickly checked the forum to, and didn’t see anything???..
thanks
Go to the settings tab, select the topmost option for adjusting background, tabs, etc. On the next screen you'll find an option for turning vibration feedback on/off.
Actual names might be different as I'm using a Dutch language ROM.
thank you ...was looking in the wrong place ..(the keyboard setup menu)
HD2 (Leo) Disabling keyboard vibration
Thank you..You are absolutely correct.. missed this one and was looking in all other places.
Its located under Sense UI settings > Personalize > Vibration
Thanks again..
Atomzk said:
Go to the settings tab, select the topmost option for adjusting background, tabs, etc. On the next screen you'll find an option for turning vibration feedback on/off.
Actual names might be different as I'm using a Dutch language ROM.
Click to expand...
Click to collapse
doing this doesn´t disable the vibration on my keyboard what can i do?
Settings -> Personalize -> Vibration. Untick the box for 'Vibrate when I tap buttons in HTC Sense,....'
doing the above will also lose the feedback vibration while clicking the tabs in homescreen...... the other simple way to only disable vibration in keyboard alone is do the following registry tweak
Using Resco Registry, go to Hkey Local Machine / Software / HTC / ezsip
Add a new DWORD Value string and call it "VibrationEnabled" (without the quotes) and give it a value of 0.
then Soft reset and enjoy!
or install this cab.

HD2 US: Need help on how to disable vibration in text input

I need help in disabling vibration when using the keyboard. I've tried to look for it in the forums and in the device settings but did not find anything. There is no personalization in the Settings tab.
I know the setting is in there somewhere. A search for "vibrate typing" turned up amongst others:
http://forum.xda-developers.com/showthread.php?t=588026
http://forum.xda-developers.com/showthread.php?t=630388&highlight=vibrate+typing
I guess you'll find the answer in both of those threads.
15dty said:
I know the setting is in there somewhere. A search for "vibrate typing" turned up amongst others:
http://forum.xda-developers.com/showthread.php?t=588026
http://forum.xda-developers.com/showthread.php?t=630388&highlight=vibrate+typing
I guess you'll find the answer in both of those threads.
Click to expand...
Click to collapse
thanks for the links! but i think the HD2 US that i have does not have that remove vibration option in the settings. i tried to look for that option in all the settings but i could not find it. if it's there, then i definitely need to have my eyes checked.
Im running a generic HTC ROM on my T9193 model; go to the Settings tab (in Sense), then Personalize, then Vibration
Using Resco Registry go to
Hkey Local Machine > Software > HTC > ezsip
Add a new DWORD Value string and call it "VibrationEnabled" (without the quotes) and give it a value of 0.
Soft reset and BAM!
But this is with Resco Registry, with another reg edit program, i am not sure what kind of string you are adding, hopefully it is still called DWORD.
matthewf01 said:
Im running a generic HTC ROM on my T9193 model; go to the Settings tab (in Sense), then Personalize, then Vibration
Click to expand...
Click to collapse
I don't have Personalize in Settings tab!
the_cool said:
Using Resco Registry go to
Hkey Local Machine > Software > HTC > ezsip
Add a new DWORD Value string and call it "VibrationEnabled" (without the quotes) and give it a value of 0.
Soft reset and BAM!
But this is with Resco Registry, with another reg edit program, i am not sure what kind of string you are adding, hopefully it is still called DWORD.
Click to expand...
Click to collapse
Yes, this works! I'm a happy camper now. Thank you!!!
woohoo! enjoy the hell out of your vibrationless keyboard!
the_cool said:
woohoo! enjoy the hell out of your vibrationless keyboard!
Click to expand...
Click to collapse
You're the man , thank u for saving my precious battery energy :">
Thanks for the reg tip,I had it off in preferences and also off in BSB tweaks too but it was still there untill this reg tweak.
Thanks
the_cool said:
Using Resco Registry go to
Hkey Local Machine > Software > HTC > ezsip
Add a new DWORD Value string and call it "VibrationEnabled" (without the quotes) and give it a value of 0.
Soft reset and BAM!
But this is with Resco Registry, with another reg edit program, i am not sure what kind of string you are adding, hopefully it is still called DWORD.
Click to expand...
Click to collapse
awsome works for me thanks
the_cool said:
Using Resco Registry go to
Hkey Local Machine > Software > HTC > ezsip
Add a new DWORD Value string and call it "VibrationEnabled" (without the quotes) and give it a value of 0.
Soft reset and BAM!
But this is with Resco Registry, with another reg edit program, i am not sure what kind of string you are adding, hopefully it is still called DWORD.
Click to expand...
Click to collapse
This is really useful, especially because it turns off only keyboard vibration. Thank you very much!
If anyone is still having issues with this problem there is an easier way without messing around with the registry. From any screen hit the Windows button to the right of the home button on the phone itself, not the touchscreen. Then find the "settings" icon and tap that. Next you will see a "personalize" tab and tap it, at the very bottom of those options you will see a "vibration" tab, tap that and you will be taken to a screen that allows you to change the settings for the keyboard, simply uncheck the box, tap done and your all set
Mr_windycityxxx said:
If anyone is still having issues with this problem there is an easier way without messing around with the registry. From any screen hit the Windows button to the right of the home button on the phone itself, not the touchscreen. Then find the "settings" icon and tap that. Next you will see a "personalize" tab and tap it, at the very bottom of those options you will see a "vibration" tab, tap that and you will be taken to a screen that allows you to change the settings for the keyboard, simply uncheck the box, tap done and your all set
Click to expand...
Click to collapse
I'm using the NRG ROM, and those instructions don't make any sense to me. Also, be aware that the stock TMOUS ROM (as I recall, I didn't use it long), does not give access to the standard "Settings" icon except via the Sense tab.
stevedebi said:
I'm using the NRG ROM, and those instructions don't make any sense to me. Also, be aware that the stock TMOUS ROM (as I recall, I didn't use it long), does not give access to the standard "Settings" icon except via the Sense tab.
Click to expand...
Click to collapse
You are correct, on a stock ROM if I remember right you have to go to Settings>Menu>All Settings>Personal>Imput I think it has been a little while since I used any Windows Mobile ROMs now.
Registry hack worked for me.
Would be interesting to determine impact on battery life.
TMOUS-Sense Vibration Settings
This is an old thread but there was a recent reply. For the T-Mobile HD2 with a stock ROM amd/or the Sense overlay, go to the Settings tab, select Personalize, select Vibration and then uncheck the box. However, this did not turn off vibration for the Swype keyboard.
If you have another ROM, then these settings may not be available via this method. BSB Tweaks has settings to turn off/on vibration for HTC apps and calculator vibration. Of course, the registry editing will work. I have found the Resco registry editor to be easy and useful.

Categories

Resources