Blue Theme Orange Theme Green Theme Red Theme
 
Nevron Gauge for SharePoint
Home | Forums | ASP.NET 2.0 Tutorials | Web Services | How Do I...? | Class Browser | WPF Quick Starts | Advertise with Us
 | Consulting  
Submit an Article Submit a Blog 
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
Team Foundation Server Hosting
Search :       Advanced Search »
Home » Pocket PC » Databinding with Pocket PC

Databinding with Pocket PC

This articles shows how to write data-driven applications for Pocket PC using ADO.NET and .NET Compact Framework.

Page Views : 4910
Downloads : 0
Rating :
 Rate it
Level : Advanced
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
 
Nevron Gauge for SharePoint
Become a Sponsor
 Tag Cloud
 Latest Jobs
More ... 
 Latest Interview Questions
More ... 

I have been hearing so much about the development of pocket PC applications and how useful they actually are that I decided to develop a pocket PC Application for myself just to see what the difference is between pocket pc applications and desktop applications.

In the beginning I faced a couple of issues, the main problem being how to connect a pocket PC application to a database. Since I could not install the database on a pocket PC and populate it with all my records, I tried to find a way  to integrate my pocket PC application with the database. For this purpose I worked on several logics and also tried to find out solutions on the internet but it did not help much except for providing me with some bits and pieces of codes.  I could not find any solution which could help me to connect a pocket PC Application to my database. There were some sites I encountered which explained this process but the code was difficult to understand for beginners. I did not want to use that code because I always try to present solutions in a way which is useful for newbie(s).
 
Finally I came up with an idea to connect our pocket pc application to a database and have discussed it below.

Prepare Yourself For Pocket PC Applications

  • Microsoft Visual Studio Beta 2 Release Installed
  • Pocket PC Emulator Installed
    (you will find it in your dvd:\vs\wcu\ARM\vs_emulator.exe)
  • Introductory knowledge of C#

Introduction of Pocket PC Application

Before we start, I would like to tell you that a pocket PC is as expensive for me as it is for you guys, so we are going to use a pocket PC Emulator.

First let us concentrate on our main goal. Yes! Our main goal is to connect a pocket PC application to our database. For that we are going to develop the following two systems.

  1. A Pocket PC Application
  2. A Webservice that will connect our Pocket PC to the Database

As anyone who has ever built a smart client system knows, the code running on the smart client device is only part of the overall system. Much of the work actually occurs on the servers that support the system. Whether as databases or processing engines, servers must behave and communicate efficiently. Designing a successful smart client system requires an equal amount of attention to be paid to the server design as well as the smart client itself.

What is Emulator?

An emulator is a computer program or system that accepts the same inputs and produces the same outputs as a real Pocket PC device.

Fig. 1.0

Let's Start Developing The Application!

Step 1: Setting up the database.

The first thing you need to do is to create a database [table: FAQ].

Note: We are using Microsoft SQL server, but you can also use any other database

Note: You can use any database for this purpose,  All you will need to configure is the connectionString.

Step 2: Creating a webservice.

Since we do not have direct communication with the server, we need to create a webservice in order to transfer data from the server to our pocket pc application.

Our webservice will fetch records from the database server, populate those records in the dataset and then return that dataset.

To create a webservice:

  1. Open Visual Studio .net 2005
  2. From the top menu, click File.
  3. lick New Web Site.
  4. Click Asp.net Web Service.



Note: You can name the webservice as you like, but keep in mind if you rename the webservice you will need to rename its references on my code as well.

There you go! After clicking OK on the dialog box shown above, VS .Net 2005 will create the webservice architecture for you, now all you will need to do is to write the code for it as per your need.

5. In the solution explorer double click the service.asmx page.
 
     

6. Create a webmethod and name it ReturnData().

[WebMethod]   

public DataSet ReturnData()
{
String ConnectionString = "Data Source=Danish-it;Initial Catalog=KBFAQ;Persist Security Info=True;User ID=sa;Password=airforce";
SqlConnection SqlCon =
new SqlConnection(ConnectionString);
SqlCon.Open();
SqlDataAdapter SqlDa =
new SqlDataAdapter("Select keywords,answer,title from FAQ", SqlCon);
DataSet Ds =
new DataSet();
SqlDa.Fill(Ds);
return Ds;
}

Note: Test your webservice by pressing the F5 key on your keyboard and then invoking you function.

 

  • Click ReturnData.

 

  • Click invoke.
  • If your browser generates an XML containing the data you have queried for, it means your webservice is working correctly!

Step 3: Creating pocket pc application.

Finally, we are on the last step of creating our pocket pc application.

Don't waste time, lets do it!

  1. Open Visual Studio .net 2005
  2. From the top menu, click File.
  3. Click New Project.
  4. Expand Visual C# node à Expand Smart Device node
  5. Click Pocket PC 2003 and select Device Application from the left pane.

Click OK on the dialog box like the one shown above and let VS .Net 2005 create a device application for you.

Once done, you will see a screen similar to the one below.

 

  • Place a datagrid and a button on the form.
  • Rename the datagrid to myDataGrid

 

Now, add a webservice reference on the form.

  • Right click on the project name and then click Add Web Reference.

 

You will the see the following screen.

Note: After creating the webservice make sure you create its virtual directory on IIS.

  • On the screen like the one shown above, click on Web services on the local machine.  Doing so will show the list of all webservices available on your machine.

  • Clicking on the webservice name you created for your pocket pc project will enable the Web reference name textbox and the Add Reference button on the right.
  • Type PpcService in the Web reference name textbox and click the Add Reference button. Now the web reference is added to your local pocket pc application.
  • Click on the web reference from the Solution Explorer and then click on the properties window; the current web reference URL path is set to localhost, replace it to your server name.

  • Switch to designer view and double click the button. This will create an on_click event for your button.

Type the following code in this event.

private void load_Click(object sender, EventArgs e)
{
PpcService.Service Ws =
new PpcService.Service();
DataSet Ds =
new DataSet("danish");
Ds = Ws.ReturnData();
myDataGrid.DataSource = Ds.Tables[0];
myDataGrid.Refresh();
}

Now on pressing the F5 key, VS .Net 2005 will ask you for the emulator settings.

 

Select Pocket PC 2003 Emulator and click deploy.

 

Think, done! Congratulations!

Comment Request!
Thank you for reading this post. Please post your feedback, question, or comments about this post Here.
Login to add your contents and source code to this article
 [Top] Rate this article
 
 About the author
 
Danish Hameed
Danish Hameed is a Bachelor's of science in computer science. He has participated and scored remarkable positions in programming and software competitions. Currently working as Software Engineer in eLearning industry.
Looking for C# Consulting?
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional consulting company, our consultants are well-known experts in .NET and many of them are MVPs, authors, and trainers. We specialize in Microsoft .NET development and utilize Agile Development and Extreme Programming practices to provide fast pace quick turnaround results. Our software development model is a mix of Agile Development, traditional SDLC, and Waterfall models.
Click here to learn more about C# Consulting.
 
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
ASP.NET 4 Hosting
Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites – Click Here!
 
 Post a Feedback, Comment, or Question about this article
Subject:
Comment:
Nevron Gauge for SharePoint
Become a Sponsor
 Comments
Thanks!!! by g On March 14, 2010
Thanks, your article was really a good start for the web servicesworld

Gigi
Reply | Email | Modify 

 © 2012  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.