Hi all! I love this! But I have to dust off the spiderwebs on all of my old programing books cause I cant really code, but this makes me want to! I thought Basic4ppc could help me with making registry changes to Acrsoft mms composer without using a registry editor. Here's the form format I'm thinking of using. Any ideas or help would be great!
Yes, regestry manipulation is possible using basic4ppc....What exactly do you need/want to do?
PS:Almost forgot....WELCOME
__________________
Paulo Gomes - Porto, Portugal - Living/Working in France-Saumur
Mobile Device: Samsung Galaxy S, Android 2.3.4 CUstom ROM
Laptop: Toshiba NB100-130 (running on Win7Ultimate) B4PPC DLL Version Listing - B4Android DLL Version Listing
Well picture messaging isnt avaible on my 6800ppc. But to get working you can install this Arcsoft MMS Composer, and make some registry mods to the app. I'm just trying to simplify the registry edits.
You should then take a look at the regestry dll helpfile.
With it you can edit the regestry, add new entrys, etc...
__________________
Paulo Gomes - Porto, Portugal - Living/Working in France-Saumur
Mobile Device: Samsung Galaxy S, Android 2.3.4 CUstom ROM
Laptop: Toshiba NB100-130 (running on Win7Ultimate) B4PPC DLL Version Listing - B4Android DLL Version Listing
O.k this is the server edit reg. [HKEY_LOCAL_MACHINE\SOFTWARE\Arcsoft\ArcSoft MMS UA\Config\UI]
"EnableServerEdit"=dword:00000001
and this is the phone number entry reg that would need to be installed and the phone number added.
This is what the help files say, but i cant figure where it make the changes.,
Sub App_Start
reg.New1
reg.RootKey(reg.rtCurrentUser)
reg.SetDWordValue("Software\My Application","DWORD Value", 33)
End Sub
..tring to apply this to the server edit option
Sub App_Start reg.New1 reg.RootKey(reg.rtLocalMachine) key = "SOFTWARE\Arcsoft\ArcSoft MMS UA\Config\mm1\WspHeader" reg.SetStringValue(key,"X-Cricket-MDN", "xxxxxxxxx") reg.SetStringValue(key,"User-Agent","Arcsoft...") ... End Sub