user1003639
user1003639

Reputation: 1

How to import data from Windows Mobile App into Excel in C#

I need to create a Windows Mobile 6.5 app for data entry. Then data needs to end up insside Excel spreadsheet on the PC.

What is the best way to do that? Can anyone send some sample codes just to get me started?

I am developing in Visual Studio 2008.

Thanks

Upvotes: 0

Views: 513

Answers (1)

R Quijano
R Quijano

Reputation: 1301

First you need to define how will you transfer the information from device to pc (Cradle,Network).

In your app you can write the information as CSV file, the create an PC application to retrieve it from the device, and then import this file to Excel.

Upvotes: 2

Related Questions