Click here to Skip to main content
15,881,715 members
Articles / Mobile Apps / Windows Mobile

iPhone-like Database GUI on Windows Mobile

21 May 2010CPOL6 min read 34.3K   261   15  
Download data from the local mobile database within sdf file. Create iPhone-like GUI on Windows Mobile to display the data. Create functionality to search the table data. Polish the app by adding some cool features such as round buttons, vibration, glass effect. Find out how to detect the current re

This article is in the Product Showcase section for our sponsors at CodeProject. These articles are intended to provide you with information on products and services that we consider useful and of value to developers.

using System;
using System.Linq;
using System.Collections.Generic;
using System.Windows.Forms;

namespace DatabaseSearch
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [MTAThread]
        static void Main()
        {
            Application.Run(new SearchForm());
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Bee Mobile
Slovakia Slovakia
Bee Mobile was founded with sole vision:

To help other developers with software development for mobile devices by putting the knowledge and experience into the software components.
The result is a range of effective software components targeting .NET Compact Framework with attractive look.
This is a Organisation

5 members

Comments and Discussions