VB.Net Mobile Developement Commands?? - Windows Mobile Development and Hacking General

Hey guys!!
i want to know a few commands tht i can use in VB.net to perform following actions, i want to embed these actions into a software that would run on the Windows Mobile The actions i want commands for are:
1.To turn WM to Vibration Mode/Silent Mode/General Mode (for all of them)
mccoffein said:
Vibration:
You have to import opennetcf dlls and then you can do just like this:
Code:
OpenNETCF.WindowsCE.Notification.Led vib = new OpenNETCF.WindowsCE.Notification.Led();
//---start vibration---
vib.SetLedStatus(1, OpenNETCF.WindowsCE.Notification.Led.LedState.On);
System.Threading.Thread.Sleep(2000);
//---stop vibration---
vib.SetLedStatus(1, OpenNETCF.WindowsCE.Notification.Led.LedState.Off);
Click to expand...
Click to collapse
2.To turn off the Phone Feature (it shuld be like i turn off phone from CommManager)
3.To send a text message "Testing" to any no. "1234"
ssj5trunks said:
[On top of code class/module]
Code:
Imports Microsoft.WindowsMobile.PocketOutlook
[In your button click event]
Code:
Using OS as New OutlookSession
'SMS object contains all properties like an Email Message
Dim SMS as New SmsMessage([NumberSMS],[TextSMS])
SMS.Send
End Using
Click to expand...
Click to collapse
4.To change registry
31073 said:
to read the registry
Code:
Dim HKLMKey As RegistryKey
HKLMkey = Registry.LocalMachine
TextBox1.Text = HKLMKey.OpenSubKey("ControlPanel\Stylus\192DPI").GetValue("CurFont", "800")
to set a value
Code:
HKLMKey.OpenSubKey("ControlPanel\Stylus\192DPI").SetValue("CurFont", TextBox1.Text, RegistryValueKind.DWord)
Click to expand...
Click to collapse
5.To make the phone vibrate
Thnx in advance!!

xda2_haseeb said:
Hey guys!!
i want to know a few commands tht i can use in VB.net to perform following actions, i want to embed these actions into a software that would run on the Windows Mobile The actions i want commands for are:
1.To turn WM to Vibration Mode/Silent Mode/General Mode (for all of them)
2.To turn off the Phone Feature (it shuld be like i turn off phone from CommManager)
3.To send a text message "Testing" to any no. "1234"
4.To change registry
5.To make the phone vibrate
Thnx in advance!!
Click to expand...
Click to collapse
Hy xda2_haseeb,
you found lot of stuff at opennetcf.org, codeproject.com and planet-source-code.com.
But i think c# or c/c++ would be the "better" way for development.
Greatz
mccoffein

mccoffein said:
Hy xda2_haseeb,
you found lot of stuff at opennetcf.org, codeproject.com and planet-source-code.com.
But i think c# or c/c++ would be the "better" way for development.
Greatz
mccoffein
Click to expand...
Click to collapse
i understand but the thing is tht i am a VB.Net developer and build Basic Apps so i guess i wuld prefer VB for now as i dont knw C/C#/C++ so plz if u guys tell me here it be better as ill on codeproject there is no specific coding for this

to read the registry
Code:
Dim HKLMKey As RegistryKey
HKLMkey = Registry.LocalMachine
TextBox1.Text = HKLMKey.OpenSubKey("ControlPanel\Stylus\192DPI").GetValue("CurFont", "800")
to set a value
Code:
HKLMKey.OpenSubKey("ControlPanel\Stylus\192DPI").SetValue("CurFont", TextBox1.Text, RegistryValueKind.DWord)

thnx!! now if any one of u knows any other???

Send SMS
To send message i think you must use this code:
[On top of code class/module]
Imports Microsoft.WindowsMobile.PocketOutlook
Click to expand...
Click to collapse
[In your button click event]
Using OS as New OutlookSession
'SMS object contains all properties like an Email Message
Dim SMS as New SmsMessage([NumberSMS],[TextSMS])
SMS.Send
End Using
Click to expand...
Click to collapse
I dont test it but i think it work.
Bye

ok, THNX!!, wht abt the rest guys??

Vibration:
You have to import opennetcf dlls and then you can do just like this:
OpenNETCF.WindowsCE.Notification.Led vib = new OpenNETCF.WindowsCE.Notification.Led();
//---start vibration---
vib.SetLedStatus(1, OpenNETCF.WindowsCE.Notification.Led.LedState.On);
System.Threading.Thread.Sleep(2000);
//---stop vibration---
vib.SetLedStatus(1, OpenNETCF.WindowsCE.Notification.Led.LedState.Off);
Dont know if it works!
But you can try.
Greatz
mccoffein

ok, THNX!! ill try

Related

Help play audio while incoming ring

Hi
I have a Himalaya XDAII device and I want to play a wave audio file when an incoming call arrives that does not replace the ringtone but plays with it. It plays but the volume of my playback is greatly decreased thet it is not heared at all.
What I want to do is to decrease the ringtone volume while I play my wave file, then increase it again when I finishes.
I have tried alot of thing and failed does any body have an idea.
:roll:
At last done it
:idea: :idea:
At last I done it, and as i suspected it uses undocumented API's. All you need to do is to load a DLL called "OSSVCS.DLL" from the system and then GetProcAddress of a method called "PlayEventSound", the prototype of this method is :
Code:
HRESULT PlayEventSoundT(LPCTSTR,int);
Then you need to setup your registry a bit.
1- Add a new sound category under the key
[HKCU\ControlPanel\SoundCategories] Create a new Key Named "MyCat" and setup its values as
[list:c16b5debce]
(Default) -> EMPTY
InitVol -> your category volume 0=Min 5=Max
AttenuationCategory-> 2
2- Add a new Sound under the key
[HKCU\ControlPanel\Sounds] Create a new key named "MySound" and setup its values as
(Default) -> EMPTY
Sound -> A string value containing the full path to your wave file
Category -> "MyCat" Note: without the quots
Script -> "apw2r"
[/list:u:c16b5debce]
After setting the registry this way you need to call the method PlayEventSound like this:
Code:
PlayEventSound(L"MySound",0);
Note: Your application must have a message queue so that the sound is played correctly
Enjoy :twisted:
To mmalek
How to stop sound after PlayEventSound if soud is loop
what does means second parameter in PlayEventSound
you stop sounds using
Code:
StopEventSounds(LPCTSTR strEventName)
And the second parameter is HWND handle to a callback window to recieve events.
mmalek said:
you stop sounds using
Code:
StopEventSounds(LPCTSTR strEventName)
And the second parameter is HWND handle to a callback window to recieve events.
Click to expand...
Click to collapse
Hi mmalek,
Can you tell me what is the strEventName, where does it come from, because if I use "Mysound" like in PlayEventSound, it doesn't work.
When you talk about a message queue, which messages should be handled and what params do they return?
Cheers,
.Fred
This is the name of the event you create in the registry keys I talked about.
Did you create the registry key before using it??
I do not remember the message and its params now but this is easily discoverable using any message spy.
mmalek said:
This is the name of the event you create in the registry keys I talked about.
Did you create the registry key before using it??
I do not remember the message and its params now but this is easily discoverable using any message spy.
Click to expand...
Click to collapse
So in your sample, it should be:
Code:
StopEventSounds(L"MySound");
Am I right?
Cheers,
.Fred
Yes it is
mmalek said:
Yes it is
Click to expand...
Click to collapse
Well I made a sample similar to yours, and I play a wma file. The problem is when I call StopEventSounds, nothing happens, the file is still playing. My test is made on the wm2005 emulator.
Cheers,
.Fred
dotfred said:
mmalek said:
Yes it is
Click to expand...
Click to collapse
Well I made a sample similar to yours, and I play a wma file. The problem is when I call StopEventSounds, nothing happens, the file is still playing. My test is made on the wm2005 emulator.
Cheers,
.Fred
Click to expand...
Click to collapse
Now it is working, my mistake and my apologies...
Cheers,
.Fred
How do you do this in VB NET?

[new release] VJKeyPress

Guys, I've made a generic keypress app. I'm sure one exists elsewhere in the world, but I wrote mine.
It can be used to send any virtual key from the command line.
So you could set up a shortcut eg
VJKeyPress.exe 93
will show the "context menu" for the current app.
91 will show the start menu.
27 is the escape key.
Check it out on my website, www.vijay555.com
Don't forget to click on an ad or make a donation!
EDIT - 19.04.06: added -cut, -copy, -paste.
V
Great ! Very useful !
I was wondering whether it is possible to activate/desactivate the GPRS with your keypress app ? :?:
Hmm, never thought about it. Are there no hacks already around for this?
If not, stick a request on my forum on my website and I'll try to get around to it if no one else does.
V
No, never find a hack for this...
Ok, I'm going to write a request on your forum for this :wink: thanks !
DocteurN said:
Great ! Very useful !
I was wondering whether it is possible to activate/desactivate the GPRS with your keypress app ? :?:
Click to expand...
Click to collapse
Are you looking for this app? http://forum.xda-developers.com/viewtopic.php?t=33313&highlight=gprs+disconnect
cktlcmd - I don't think that's quite what he wants. He wants an executable that will disconnect from GPRS.
If no one else comes up with one, I should be able to write one.
V
Thanks for the link :wink:
Unfortunately, this is not what I'm looking for...
I'm looking for a little software that can be launch by a shortcut (or directly) in SPB Pocket+ or XBar that can activate/descativate GPRS Connexion.
vijay > Sorry I didn't see your post
vijay555 said:
cktlcmd - I don't think that's quite what he wants. He wants an executable that will disconnect from GPRS.
If no one else comes up with one, I should be able to write one.
V
Click to expand...
Click to collapse
Cool! Good enough for me.
Hi ViJAY555,
iam searching for a tool where i can easily copy stuff to the clipboard. I have seen this at my trial of Wisbar Advanced that i can configure each item in the taskbar to open a clipboard menu to copy and paste stuff.
Iam wondering for a long time why this is not possible also on the PDAs likley on the PC you pressing CTRL-C and CTRL-V.
The life would be much easier... I thought on your VJKEYPRESS but havent found any key for that. Maybe you know another tool whith this functionality?
topcaser: I believe the PHM Key tools includes this function.
I will be developing something to help with the clipboard, it's coming together slowly
V
vijay555 said:
topcaser: I believe the PHM Key tools includes this function.
I will be developing something to help with the clipboard, it's coming together slowly
V
Click to expand...
Click to collapse
V,
do you have a link to the phm key tools. I googles already - not with much luck.
but i think, that you will hack anyway a good solution. In my opinion having a hardware key to copy and paste things is a great added value.
Topcaser - I don't have a link with me. I think they're posted on the forum somewhere. If we get stuck, I'll post it from home later. If we get really stuck I'll make a new app
V
Guys, I've added -cut, -copy, -paste command lines.
V
vijay555 said:
Guys, I've added -cut, -copy, -paste command lines.
V
Click to expand...
Click to collapse
V,
good work - thanx for this application.
vijay555 said:
Guys, I've added -cut, -copy, -paste command lines.
V
Click to expand...
Click to collapse
and can you check the compatibility on wm5, please?
this app is what i nead but it doesnt work when assigned to a hw button
thanks a lot
Just tried www.phm.lu/Products/PocketPC/Keys/ on my Universal. Copy, Paste work fine! I use Record button for call both.
Alex
Yeah, PHM keys is better. PHM uses a weird API command that I can't get to work properly yet. Need to waste some more time on it when I get some time. But yes, PHM is definitely better for copy/paste.
V
vijay555 said:
93 will show the "context menu" for the current app.
91 will show the start menu.
27 is the escape key.
Click to expand...
Click to collapse
how can I set shortcut on "broken bar" (|, u+00A6 in character table)?
thanx in advance
What's the code for the "OK" button (Or something which would do the same thing)? It's next to the space bar on the Wizard, I couldn't see it on your site.
Many thanks.
Don't worry: 'VJOkButt'

[REQ] Registry help with Diamond2 GSensor

I'm working witht he Diamond 2 Gsensor sdk on my Diamond and I have been able to successfully add string values to the whitlist section in the gsensors registry. (HKCU\Software\HTC\HTCSENSOR\Whitelist)
The whitelist values enable rotation. My question is how can I create a "Blacklist" so to speak that would contain values for apps I dont want rotated? Is it possible? If so is it as easy as crating the said paths?
Anybody?...
powe6563 said:
I'm working witht he Diamond 2 Gsensor sdk on my Diamond and I have been able to successfully add string values to the whitlist section in the gsensors registry. (HKCU\Software\HTC\HTCSENSOR\Whitelist)
The whitelist values enable rotation. My question is how can I create a "Blacklist" so to speak that would contain values for apps I dont want rotated? Is it possible? If so is it as easy as crating the said paths?
Click to expand...
Click to collapse
I have not tried this yet myself but i would guess, and tell me if im wrong, that the only time it will rotate is if the app is in the white list if its not in the white list then it will not rotate.
irus said:
I have not tried this yet myself but i would guess, and tell me if im wrong, that the only time it will rotate is if the app is in the white list if its not in the white list then it will not rotate.
Click to expand...
Click to collapse
Well this is true, however, the whitelist uses class names to determine what apps to rotate. The class name "dialog" refers to multiple apps like the phone dialer, call status, sms composer, and more. So when I add "dialog" in the whitelist it rotates all of these. I would like to try and make an exception list that uses the process name or window name as the identifyer. That way I could have dialog in the whitelist and cprog.exe in the exceptions or blacklist key. It may not be possible but thats what I'm asking I guess.
bump... c'mon guys theres gotta be an answer to this.
I found this in http://www.htcmania.com/showthread.php?t=36214
is in spanish.
[HKEY_CURRENT_USER\Software\HTC\HTCSENSOR\GSensor\M oduleName]
"Album"="\\Windows\\HTCAlbum.exe"
"Calculator"="\\Windows\\htcCalculator.exe"
[HKEY_CURRENT_USER\Software\HTC\HTCSENSOR\GSensor\W hiteList]
"TestHTCSensorDemoAP"="TESTHTCSENSORDEMOAP"
"Album"="HTCAlbumClass"
"Calculator"="CalculatorMain"
"Opera"="Opera_MainWndClass"
"SMS"="Dialog"
"Calendar"="Calendar"
"FileExplorer"="FEXPLORE"
"PROGRAM"="Explore"
"IExplore"="IExplore"
"Manila"="Manila"
vengadorhq said:
I found this in http://www.htcmania.com/showthread.php?t=36214
is in spanish.
[HKEY_CURRENT_USER\Software\HTC\HTCSENSOR\GSensor\M oduleName]
"Album"="\\Windows\\HTCAlbum.exe"
"Calculator"="\\Windows\\htcCalculator.exe"
[HKEY_CURRENT_USER\Software\HTC\HTCSENSOR\GSensor\W hiteList]
"TestHTCSensorDemoAP"="TESTHTCSENSORDEMOAP"
"Album"="HTCAlbumClass"
"Calculator"="CalculatorMain"
"Opera"="Opera_MainWndClass"
"SMS"="Dialog"
"Calendar"="Calendar"
"FileExplorer"="FEXPLORE"
"PROGRAM"="Explore"
"IExplore"="IExplore"
"Manila"="Manila"
Click to expand...
Click to collapse
Thanks, I have that much so far but I'm still looking for a way to specify between cprog and tmail in the whitelist because they both use Dialog as a class name. Thanks for the effort though
can someone make it cab file?
powe6563 said:
Thanks, I have that much so far but I'm still looking for a way to specify between cprog and tmail in the whitelist because they both use Dialog as a class name. Thanks for the effort though
Click to expand...
Click to collapse
Did you try:
HKEY_CURRENT_USER\Software\HTC\HTCSENSOR\GSensor\M oduleName]
"Album"="\\Windows\\HTCAlbum.exe"
"Calculator"="\\Windows\\htcCalculator.exe"
"SMS"="\\Windows\\tmail.exe"
[HKEY_CURRENT_USER\Software\HTC\HTCSENSOR\GSensor\W hiteList]
"TestHTCSensorDemoAP"="TESTHTCSENSORDEMOAP"
"Album"="HTCAlbumClass"
"Calculator"="CalculatorMain"
"Opera"="Opera_MainWndClass"
"SMS"="Dialog"
Seems logical to me. But as always the logical thing isn't the right choice by definition.
One tip though, if you want to know something, just try! That's the way other people get their knowledge about these things....
And afterwards, please share your results with the rest of the world ofcourse!
rondol1 said:
Did you try:
HKEY_CURRENT_USER\Software\HTC\HTCSENSOR\GSensor\M oduleName]
"Album"="\\Windows\\HTCAlbum.exe"
"Calculator"="\\Windows\\htcCalculator.exe"
"SMS"="\\Windows\\tmail.exe"
[HKEY_CURRENT_USER\Software\HTC\HTCSENSOR\GSensor\W hiteList]
"TestHTCSensorDemoAP"="TESTHTCSENSORDEMOAP"
"Album"="HTCAlbumClass"
"Calculator"="CalculatorMain"
"Opera"="Opera_MainWndClass"
"SMS"="Dialog"
Seems logical to me. But as always the logical thing isn't the right choice by definition.
One tip though, if you want to know something, just try! That's the way other people get their knowledge about these things....
And afterwards, please share your results with the rest of the world ofcourse!
Click to expand...
Click to collapse
I've tried, negative...
dingil said:
I've tried, negative...
Click to expand...
Click to collapse
Same here. I still havent figured out a way around this.

[Q] Developer Help!! C# Sound Click Event

How would I go about doing this?
any input would be appreciated
Please help me out guys.....
this is the only problem i have in my app.....
TheWidgetKid said:
How would I go about doing this?
any input would be appreciated
Click to expand...
Click to collapse
Your gonna have to be a tad more specific!
At a guess you want to progromatically play a click sound ???
Code:
//NOTE: This is untested & converted from a working VB.NET3.5 app -
System.Media.SoundPlayer myPlayer = new System.Media.SoundPlayer();
myPlayer.SoundLocation = @"click.wav";
myPlayer.Play();
Alternatively, I have used this code in the past...
http://msdn.microsoft.com/en-us/library/ms229685.aspx
To be more specific....
I am making a drumming app....
and when i click on a pad I want it to play the sound..... (ie. hit the snare and snare.wmv) plays....
sd00 said:
Your gonna have to be a tad more specific!
At a guess you want to progromatically play a click sound ???
Code:
//NOTE: This is untested & converted from a working VB.NET3.5 app -
System.Media.SoundPlayer myPlayer = new System.Media.SoundPlayer();
myPlayer.SoundLocation = @"click.wav";
myPlayer.Play();
Alternatively, I have used this code in the past...
http://msdn.microsoft.com/en-us/library/ms229685.aspx
Click to expand...
Click to collapse
When i implement this code... it says that the .wav file does not exist.... can yo tell me how i can link the file to the program....
TheWidgetKid said:
When i implement this code... it says that the .wav file does not exist.... can yo tell me how i can link the file to the program....
Click to expand...
Click to collapse
Erm, not one to discourage people but man, if your stumped at that then - you have a way to go!
Ensure a file called click.wav actually exists where the executable goes. If you want to be absolutely certain (though its not really a good idea), try using full path to a wav file you know for sure exists.
e.g. Say your app "\Program files\Drums\drums.exe" then make sure you have a "\Program files\Drums\click.wav".

Windows phone 8, 8.1 & 10 registry hacks

see for yourself...ALL VALUES BELOW ARE DEFAULT VALUES !!!!
all in HKEY_LOCAL_MACHINE
SOFTWARE\OEM\VolumeLimit
EnableVolumeLimit 1
VolumeLimit 19
SOFTWARE\Microsoft\FMRadio\OEM
NotPresent 1
SOFTWARE\Microsoft\Settings\Lock
DisableNever 1
SOFTWARE\Microsoft\Settings\Volume
Key 2
Screen 2
Mute 7
Volume 3328624230
MaxSystemUIVolume 30
MaxInCallUIVolume 10
MaxdBAtten 45
MinInCallVolume 4369
SOFTWARE\Microsoft\SecurityManager
DeveloperUnlockState 1
nice...
m
Upadate the title only on 12-7-2015
Any way to change the H+ and 3G icons? I heard they are registry entries
AlvinPhilemon said:
Any way to change the H+ and 3G icons? I heard they are registry entries
Click to expand...
Click to collapse
we all keep searching my friend...
share the info if you found it !!!
m
megasounds said:
we all keep searching my friend...
share the info if you found it !!!
m
Click to expand...
Click to collapse
Mega, mind keeping this thread updated with entries as they are discovered? Most of them are not specific to the Samsung Ativ S, so it will be useful later down the road.
I think, I can post ALL registry from Ativ S. I extracted it from the ROM file.
megasounds said:
we all keep searching my friend...
share the info if you found it !!!
m
Click to expand...
Click to collapse
On WP7 they are in HKLM\Software\Microsoft\Connectivity\CellularUx\DataConnectionIcon\ and default values on my EU Omnia7:
1XEDGE E
1XEVDO DO
1XEVDV DV
1XHSDPA 3G+
1XRTT 1X
1XUMTS 3G
GPRS G
LTE 4G
NONE
WIMAX W
DO IT!!
How to add "Google" as a search provider in my Ativ S?
It don't have a option in: "internet explorer-->setting"
A quick suggestion: there's a similar thread from WP7 here: http://forum.xda-developers.com/showthread.php?t=907971
Not all of the same keys/values will be present, and some of them might not be writable at this time. However, it's a start. As an example, changing the search providers is in there.
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion]
"ProductName"="Windows (TM) Code Name \"Longhorn\" Preinstallation Environment"
Longhorn: Was the codename of Windows Vista...
atifarkas said:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion]
"ProductName"="Windows (TM) Code Name \"Longhorn\" Preinstallation Environment"
Longhorn: Was the codename of Windows Vista...
Click to expand...
Click to collapse
Windows 7 and 8 are built/based from Vista. Version 6.x.xxxx is Longhorn. Windows 7 has build number 6.1.7600. Windows 8 has 6.2.9200 :silly:
Custom Alert Tones for WP8 Registry Tweak!
Registry Tweak to enable custom alert tones for your Interop-Unlocked device!
Step 1: Make sure your intended alert tone is in your ringtones folder and your phone is unplugged from your computer (can be charging on wall charger but not plugged in to PC)
Step 2: Go to your registry editor and enter this value:
Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\EventSounds\Sounds\{Intended Alert Tone}]
Replace {Intended Alert Tone} with any of these values:
Code:
Achievement
Alarm
BatteryCharging
BusyCDMA
BusyTone
CallDrop
CallWaiting
Camera
CellBroadcast
Clock
CMAS
Congestion
CopyPaste
DownloadComplete
Dtmf#
Dtmf*
Dtmf0
Dtmf1
Dtmf2
Dtmf3
Dtmf4
Dtmf5
Dtmf6
Dtmf7
Dtmf8
Dtmf9
E-mail
FindPhone
IM
ImeAddToDictionary
ImeSelectCandidate
InCallBuzz
InCallDtmf#
InCallDtmf*
InCallDtmf0
InCallDtmf1
InCallDtmf2
InCallDtmf3
InCallDtmf4
InCallDtmf5
InCallDtmf6
InCallDtmf7
InCallDtmf8
InCallDtmf9
InCallVoiceText
Infbeg
Infend
InfInt
Interrupt
Keypress
KnownCallerRing0
LoudestInCallVolume
Lowbattery
Netbegin
Netend
NetInt
NetworkDrop
NfcInRange
NfcPaymentFail
NfcPaymentSuccess
NfcTransactionComplete
NfcTransactionCompleteShort
Notification
NotificationToast
Password
PhoneLocked
PhoneUnlocked
PhotoScroll
PingRing
Pip
Reminder
Reorder
Ringback
Ringout
RingPreview
RingTone
RingVoiceText
Shutdown
SMS
SMSNudge
StartButton
SystemAsterisk
SystemDefault
SystemExclamation
SystemHand
SystemQuestion
SystemStart
Toolkit
TransferComplete
VoiceMail
VoicePrivacyDrop
Warning
Step 3: Key should be set to "Sound".
Step 4: Change the value of the files location to C:\Data\Users\Public\Ringtones\YourRingtoneName.mp3
Example:
Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\EventSounds\Sounds\SMS]
"Sound"="C:\Data\Users\Public\Ringtones\AppleSucks.mp3
That would set a ringtone named "AppleSucks" in your Ringtone folder as your SMS tone.
Regards,
Hit the thanks button if you thought this was helpful!
nothing there for shutter sound I know where the file is, but currently I cannot delete it, It would be much easier to remove the reg key, or alter it.
simmos said:
nothing there for shutter sound I know where the file is, but currently I cannot delete it, It would be much easier to remove the reg key, or alter it.
Click to expand...
Click to collapse
The WP7 registry tweaks might be useful http://forum.xda-developers.com/showthread.php?p=10491327 (There's also disable shutter tweak, but not sure if it'll work on WP8)
jessenic said:
The WP7 registry tweaks might be useful http://forum.xda-developers.com/showthread.php?p=10491327 (There's also disable shutter tweak, but not sure if it'll work on WP8)
Click to expand...
Click to collapse
Ahh, thanks for that. Looks like the reg location is completely different. I will continue to look into it, perhaps there is a key to enable the option for disabling the sound (mine is locked by my rom) in which case I would need to match mine against someone else, otherwise a search function searching for keys (shutter.wav) may be useful.
simmos said:
Ahh, thanks for that. Looks like the reg location is completely different. I will continue to look into it, perhaps there is a key to enable the option for disabling the sound (mine is locked by my rom) in which case I would need to match mine against someone else, otherwise a search function searching for keys (shutter.wav) may be useful.
Click to expand...
Click to collapse
What is "Default CSC" of you ROM?
-W_O_L_F- said:
What is "Default CSC" of you ROM?
Click to expand...
Click to collapse
Sorry, may be a bit noob. Quick way to check this?
simmos said:
Sorry, may be a bit noob. Quick way to check this?
Click to expand...
Click to collapse
Type *#1234# in Diagnosis.
-W_O_L_F- said:
Type *#1234# in Diagnosis.
Click to expand...
Click to collapse
Thanks, default CSC IS I8750OXXAMD1
simmos said:
Thanks, default CSC IS I8750OXXAMD1
Click to expand...
Click to collapse
You need next field, with 3 letters. Ex. SER or ITV.

Categories

Resources