registry

  • Thread starter Thread starter vhoward
  • Start date Start date
V

vhoward

hi,

i have an ASUS MyPAL
i use C#

i want to configure my ppc the first time i launche my app,
because i have many elements to configure and a lot of ppc to configure
(about 1000)

i need to configure this :
- the 4 buttons
- luminosity (?) and backlight (?) - sorry for my english
- baterry
- cleartype feature
- network (i use wifi)
- others thinks not in my mind actually

is it possible to configure this elements using a c# program ?
and the best way to do that (using the registry, using the opennetcf tools)


thanks in advance for your helps
 
When you create your cab, you can specify the registry settings to be
modified inside the .inf file:
[Reg.All]
HKLM,Software\Microsoft\Today\Items\My Today Item,Type,0x00010001,4
HKLM,Software\Microsoft\Today\Items\My Today Item,Enabled,0x00010001,1
HKLM,Software\Microsoft\Today\Items\My Today Item,Options,0x00010001,1
HKLM,Software\Microsoft\Today\Items\My Today
Item,DLL,0x00000000,"\Windows\Sample.DLL"The network settings should be
modified with the appropriate config xml. See Pocketpc 2003 SDK for

CM_NetEntries, CM_NetMappings, CM_Networks, CM_Planner, CM_GPRSEntries etc.
The appropriate config xml can be applied by PInvoking DMProcessConfigXML or
from the command line using RapiConfig tool (part of Windows Mobile
Developer PowerToys)
 
Hello, Alex

Does that means RapiConfig.exe have to be bundle in the cab?
Users may not have Windows Mobile Developer PowerToys...

--

Best Regards,

Jan Yeh
MVP - Windows CE.NET, MCSD.NET, .NETcf consultant
Web - http://www.mobilemind.com.tw , Blog - http://blog.mvpcn.net/janyeh

Alex Feinman said:
When you create your cab, you can specify the registry settings to be
modified inside the .inf file:
[Reg.All]
HKLM,Software\Microsoft\Today\Items\My Today Item,Type,0x00010001,4
HKLM,Software\Microsoft\Today\Items\My Today Item,Enabled,0x00010001,1
HKLM,Software\Microsoft\Today\Items\My Today Item,Options,0x00010001,1
HKLM,Software\Microsoft\Today\Items\My Today
Item,DLL,0x00000000,"\Windows\Sample.DLL"The network settings should be
modified with the appropriate config xml. See Pocketpc 2003 SDK for

CM_NetEntries, CM_NetMappings, CM_Networks, CM_Planner, CM_GPRSEntries
etc. The appropriate config xml can be applied by PInvoking
DMProcessConfigXML or from the command line using RapiConfig tool (part of
Windows Mobile Developer PowerToys)


--
Alex Feinman
---
Visit http://www.opennetcf.org
vhoward said:
hi,

i have an ASUS MyPAL
i use C#

i want to configure my ppc the first time i launche my app,
because i have many elements to configure and a lot of ppc to configure
(about 1000)

i need to configure this :
- the 4 buttons
- luminosity (?) and backlight (?) - sorry for my english
- baterry
- cleartype feature
- network (i use wifi)
- others thinks not in my mind actually

is it possible to configure this elements using a c# program ?
and the best way to do that (using the registry, using the opennetcf
tools)


thanks in advance for your helps
 
Back
Top