SmartPhone 2003 Device Application

ChaS3

New member
Joined
May 27, 2007
Messages
4
Programming Experience
1-3
Good evening -

I have an application written for Pocket PC 2003 / WM5 devices and have this application deployed.

Recently, individuals at work are using the SmartPhone version of WM5 and have requested my application be ported.

I began porting the application from Pocket PC 2003 -> SmartPhone 2003 in Visual Studio .Net 2005.

Everything cuts and pastes OK, slight modifications made to button cofigurations (no 'command buttons' on the SmartPhone, just menu buttons, etc).

The final part of the application is not working at all, the encryption.

In the Pocket PC 2003 version I used:

---------------------
Imports System.Security.Cryptography

Friend Class cTripleDES
Private m_des As New TripleDESCryptoServiceProvider

---------------------

Unfortunately, when I add my TripleDES class for the SmartPhone edition, it fails on recognizing 'Private m_des As New TripleDESCryptoServiceProvider'

I receive this error message:
'TripleDESCryptoServiceProvider' is not defined.

The reference list matches the Pocket PC 2003 edition.

Visual Studio 2005 does not underline these as errors in the code, only show up as errors during the build.

I'm really struggling and was wondering if anyone has seen this error, or has worked on a SmartPhone application with encryption.

Please let me know if you can help.

Thanks

- B
 
Fixed...

Downloaded the new Windows Mobile 5 (Smartphone / Pocket PC) SDK for Visual Studio 2005.

Google: Windows Mobile 2005 --> you will need to be genuine.

- B
 
Back
Top