Click here to Skip to main content
15,885,014 members
Articles / Mobile Apps / Windows Mobile

Pocket Personal Health Record

Rate me:
Please Sign up or sign in to vote.
4.75/5 (4 votes)
17 Feb 2009Ms-PL2 min read 28.6K   1.1K   24  
Personal Pocket Health Record (PPHR) application helps to store and track a user's personal details and visits information on Windows powered pocket PC.
//**************************************************************************//
// Copyright (C) Abdul Rasheed. All rights Reserved.                        //
// rasheedat.blogspot.com                                                   //
//**************************************************************************//
using System;

using System.Collections.Generic;
using System.Text;

namespace PPHR.Common
{
    /// <summary>
    /// Keeps all the constants
    /// </summary>
    public sealed class Constants
    {
        public static string MessageBoxCaption = "Pocket Personal Health Record";

        // Application Actions
        public static int ACTION_NEW = 1;
        public static int ACTION_EDIT = 2;
        public static int ACTION_DELETE = 3;
        public static int ACTION_VIEW = 4;
    }
}

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 Microsoft Public License (Ms-PL)


Written By
India India
Called as Rasheed. Completed Master of Computer science. Working as Senior Consultant in Chennai, India.

Try to achive in different stream

Comments and Discussions