Reputation: 131
I have a smarthone application for controlling a device via Bluetooth. I'm now looking for a way to use the app on Windows XP/7 too. Any ideas if this is possible without too much modifications to the code? Especially i'd like to know the following:
1.) Is there a readily available smartphone emulator that can be deployed on Windows XP/7 and allows using bluetooth via a RS232 dongle? I'm looking for something like the emulator used in Visual Studio but standalone with an installer and legally deployable on Windows XP/7.
2.) Is there another way to install the runtime of the .NET compact framework on Windows and run smartphone software?
3.) Is there an easy way to convert a .NET compakt framework application to run with the .NET framework without changing too much code?
Thanks in advance
Upvotes: 2
Views: 318
Reputation: 67168
Upvotes: 1
Reputation: 1849
If the mobile application does not have that much code, I suggest you to realize option 3.) . Since the compact framework is a subset of the full .net framework, and most of the compact framework classes are similiar to the full framework one's this would not be much effort to realize. The most difficult task will then be to identify the bluetooth device and bring it to work properly, but i am sure there are lots of tutorials to do this.
Upvotes: 1