Hi all
Does anyone know some GUI software who provide free options to read, write or at least calculate the BC config items (1877, 6828) depending to necessary bands?
thank in advance
Related
hi,
first let me apologize in advance for my poor english.
i'm trying to remove the 100 db limitation that we've got with an update of the rom... i think the following two values are the one i need to change, but i don't know their originals values
Could someone tell at witch value is set these registry keys on their artemis or perhaps correct me if i'm wrong about the registry keys themself ?
HKEY_LOCAL_MACHINE\SOFTWARE\HTC\AUDIOGAIN\
HEADSET_UPLINK_VOLUME
and
CODEC_GAIN_HEADSET
thanks!
I did a search before asking and couldn't find anything (at least in the Hermes forums)...
My phone displays "UMTS Cingular"... is there a way to change it to say something else?
Hi
A small change in the registry:
HKLM\Software\Microsoft\RIL\OperatorNames
Add a string with your operators operatorcode in the Name field, and whatever you like in the String field.
Thanks for that
thanks also for the excellent info but how do u find out the operatorcode of my operator?
im on vodafone uk and my phone displays UMTS vodafone UK.
Any help would be greatly appriciated.
Andy..
as an addendum to your advice... I don't have a " HKLM\Software\Microsoft\RIL\OperatorNames" in my registry
Thank you,
nice tweak.., for all T-Mobile Germany users operatorcode is 26201
or look here http://www.m-99.co.uk/Mobile_Phone_...ork_Codes/service_provider_network_codes.html
z1ppster said:
thanks also for the excellent info but how do u find out the operatorcode of my operator?
im on vodafone uk and my phone displays UMTS vodafone UK.
Any help would be greatly appriciated.
Andy..
Click to expand...
Click to collapse
Google knew it 23415
rgreenpc said:
as an addendum to your advice... I don't have a " HKLM\Software\Microsoft\RIL\OperatorNames" in my registry
Click to expand...
Click to collapse
Are you sure? Which prog did you use for browsing the registry?
pronor
I have tried two reg editors to be sure - Mobile reg editor I have found to never have an issue...
In my HKLM\Software\Microsoft\RIL\ directory I have APIInfo and lots of folders numbered 0 - 128
If I go up to my HKLM\comm\cellular\ril\eons.cache\ I have an OPL and a PNN dir
Not sure if that could be it ( using WM6 )
Same here, I want to change that and also do not have a " HKLM\Software\Microsoft\RIL\OperatorNames" in my registry. I am using WM6 also.
@rgreenpc and darktiger
You have to create a new directory "OperatorNames" for example using totalcommander.
still not quite right...
The registry entry successfully changes the Operator Name but the "UMTS " string is still inserted before the new operator name
Is there a way to stop this UMTS string from appearing?
Many thanks,
caruthers
you have to change \HKLM\Software\OEM\PhoneSetting\
LongnamePrefix=UMTS
here can you write whatever you want eg. 3G
the Key have to set to 1
Enable3GLongNamePrefix=1
Mosquito said:
you have to change \HKLM\Software\OEM\PhoneSetting\
LongnamePrefix=UMTS
here can you write whatever you want eg. 3G
the Key have to set to 1
Enable3GLongNamePrefix=1
Click to expand...
Click to collapse
I can confirm that this way works. I did this a while back and have had no issues.
That's great - it works perfectly
Many thanks Mosquito and maevro
It used to work for me, and I see the name I have chosen for like 5 secs, but then it switches back to AT&T. Is there something else?
yeah, i tried 3 diff reg editors, phm, ceregedit and one other, never got it to stick once. thats the carrier name. i have however managed to change the 3G name.
Hope this isn't too dumb a question and isn't posted too far off where it should be.
Firstly these forums are excellent and through them I've managed to cusomise my phone through various additional cabs files and tweaks. In fact I'm now that happy with the results that I'd now like to roll out these settings and programs to about 100 phones, probably HTC Touch Cruises and HTC Atmoses.
Could anyone give me some pointers on installing multiple cabs, registry entries and profile settings.
Also does anybody know of a registry comparison utility that will tell me what registry entries have been changed, e.g. before and after. A lot to ask I know.
Thanks in advance.
Hi guys,
I'm a new commer in windows mobile developpement, and I already have a probleme.
I would like to code an application wich automatically switch my phone profile, using my current location (not the GPS, but the cellID).
But I can't find a way to SET the profile (currently i can only get it) or for exemple SET the volume to a certain level.
Thanks for your help.
Blinx
Hello,
you can use this : MSDN
Or this as DLL
Hope i can help you...
Thx it's really helpful !! but I'de like to set the volume to a certain level too.
But I can't find this feature out.
How could I do that ?
Thanks.
Hello Friends,
My problem is I developed an App which runs on Windows Mobile as well as on the Desktop with the same exe and now change of Code.
With an if clause i check if the App is running on Desktop. In this case I change the Controlls Locations a bit and the AppRootPath.
In Addition I now want to resize and relocate the Textboxes if SoftInputPanel is enabled.
This can be easy achived by adding an InputPanel Control from Toolbox and using its OnEnableChange Event.
BUT if I include an InputPanel Control in my Project, its not deployable on the Desktop anymore.
So I triet to create the InputPanel Control only if the if clause checkt that the envirement is not a pc.
But I didnt managed that.
Anybody a clue how to?
Thx, Bignose
The first thing that springs to mind is to use 2 assemblies that you can call from the application - 1 for desktop apps and 1 for mobile apps. That way, the main application would have no dependancies on .NetCF controls.
For example...
Code:
MyAssembly.ObjectWithGenericInterface.UpdateForm(this)
You would have an assembly with a class that implements a generic interface, and that interface has an "UpdateForm" method. You create 2 different assemblies that are mostly identical - one for desktop and 1 for mobile. You then simply deploy a different "MyAssembly", depending on the target platform, but it will rely on neither when you build the application.
Edit:
You wouldn't actually need a generic interface to implement from, as long as the class inside the 2 assemblies actually had the same public methods available.
Thanks for your idea.
Am I understanding this right I would have to create to complete new GUIs?
At the Moment the Differences are small:
Code:
If Environment.OSVersion.Platform <> PlatformID.WinCE then
Me.Width = 256
Me.Height = 484
XMLPath = Strings.Right(XMLPath, (Strings.Len(XMLPath) - 6))
PbContact.Visible = False
TbNumber.Width = 202
Me.MaximizeBox = False
Me.MinimizeBox = True
End If
If I could create the InputPanel Control with an EventHandler in this Block the Application should run on both Desktop and PDA, right?
Is there no way?
AgentBignose said:
Thanks for your idea.
Am I understanding this right I would have to create to complete new GUIs?
Click to expand...
Click to collapse
No - only 1 GUI, the way you are currently doing it.
The application solution would not include any .NetCF assemblies, as they would only need to be referenced in the assembly that gets used by the windows mobile app.
So you'd have a deployment solution for the desktop version, and then a deployment solution for the windows mobile version. The windows mobile deployment would include the assembly that has references to the .NetCF (SIP, and any other controls you may need to use). That would be the only difference between the MSI and the CAB that you'd end up with.
I hope that makes sense. It's actually quite a simple idea, but a bit difficult to explain.
I think I understood you.
I leave the code as is.
But at the point where I want to create the SIP Control I dont do this directly, but I create a new .dll assembly which I creates the InputPanel and use this assembly.
Nevertheless I dont know how to create the InputPanel in the Assembly.
I hope I dont bother you to much, in that case please excuse me.
AgentBignose said:
I think I understood you.
I leave the code as is.
But at the point where I want to create the SIP Control I dont do this directly, but I create a new .dll assembly which I creates the InputPanel and use this assembly.
Nevertheless I dont know how to create the InputPanel in the Assembly.
I hope I dont bother you to much, in that case please excuse me.
Click to expand...
Click to collapse
No bother mate.
You need to add a reference to...
Code:
Microsoft.WindowsCE.Forms
and you create the input panel with...
Code:
Microsoft.WindowsCE.Forms.InputPanel sip = new Microsoft.WindowsCE.Forms.InputPanel();
Hope that helps mate
johncmolyneux said:
No bother mate.
Click to expand...
Click to collapse
Thats nice. Thanks.
You need to add a reference to...
Code:
Microsoft.WindowsCE.Forms
and you create the input panel with...
Code:
Microsoft.WindowsCE.Forms.InputPanel sip = new Microsoft.WindowsCE.Forms.InputPanel();
Click to expand...
Click to collapse
I did that.
But how Can I now use the OnEnableChange Event?
I only know the way over deklaring it as Friends With, but I dont manage this in runtime.
AgentBignose said:
Thats nice. Thanks.
I did that.
But how Can I now use the OnEnableChange Event?
I only know the way over deklaring it as Friends With, but I dont manage this in runtime.
Click to expand...
Click to collapse
I just noticed that you're using VB, so I can't really help with coding the event handler for you, but this page might help...
http://www.thescarms.com/dotnet/eventhandler.aspx