|
1
|
Windows CE and Programming Tool Compatibility?
|
|
2
|
What is the difference between ”.NET Framework 1.1” & ”.NET Framework 2.0”?
Answer :
What is the difference between ”.NET Framework 1.1” & ”.NET Framework 2.0”?
|
|
3
|
What is the difference between ”.NET Framework” & ”.NET Compact Framework”?
|
|
4
|
How do I download the SDK for RISC platforms?
Ex. PCM-7221, PCM-7231, SOM-A2700, SOM-A9315
Answer :
Please donwload from here.
|
|
5
|
How can I disable sleep mode when building an image?
Answer :
The procedure is as follows:
Start -> Setting -> Control Panel -> Power -> Schemes( TAB ) -> Select Battery Power or AC Power in power scheme column -> Switch State to Suspend -> Never
Then suspend will not activate. After that the system won't go into suspend mode even if the system detects low battery power or hang up events ( pls refer to PIC1 ).
If you want to hide the suspend icon in the start bar in Windows CE, please follow the procedures below ( refer to PIC2 ).
following settings in the platform.reg file. To hide the SUSPEND icon in the start bar:
[HKEY_LOCAL_MACHINE\Explorer]
Suspend =dword:0
If you want to disable the suspend timer, please follow the procedures below ( refer to PIC2 ). Modify settings in platform.reg file.
To disable the SUSPEND timer:
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\Timeouts]
ACUserIdle =dword:0 ; in seconds
ACSystemIdle =dword:0 ; in seconds
ACSuspend =dword:0 ; in seconds
BattUserIdle =dword:0 ; in seconds
BattSystemIdle =dword:0 ; in seconds
BattSuspend =dword:0 ; in seconds
Please also check the reginit.ini file to make sure the registry has been updated.
1, Please find the platform.reg file in C:\WINCE420\PLATFORM\PCM_7230\File folder. Please see folder.jpg.
2, Edit platform.reg and add registry settings, refer to edit.jpg file.
3, Build CE image, refer to build.jpg file.
4, After the build has finished, check the reginit.ini file which is in the RELEASE folder. Refer to check.jpg file. ( refer to PIC2 )
|
|
6
|
How can I integrate AYGSHELL in platform builder?
Answer :
(a) AYGSHELL component is hidden in the [SHELL and User Interface] tree from the right side Catalog Window.
(b) Press ”Add to Platform” to add into customers' project.
(c) Re-Build Platform.
(d) Platform Builder will generate aygshell.dll in the RELEASE folder.
Customer can check whether aygshell.dll exists in the RELEASE folder or not, and check whether aygshell.dll exists in ce.bib or not. Regarding the AYGSHELL feature, there are lots of detailed programming descriptions in platform builder help.
|