Click here to Skip to main content
15,886,857 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.
namespace PPHR
{
    partial class VisitList
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;
        private System.Windows.Forms.MainMenu mainMenu;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.mainMenu = new System.Windows.Forms.MainMenu();
            this.menuItemClose = new System.Windows.Forms.MenuItem();
            this.menuItemHome = new System.Windows.Forms.MenuItem();
            this.dgVisitList = new System.Windows.Forms.DataGrid();
            this.contextMenuAction = new System.Windows.Forms.ContextMenu();
            this.menuItemNew = new System.Windows.Forms.MenuItem();
            this.menuItemEdit = new System.Windows.Forms.MenuItem();
            this.menuItemDelete = new System.Windows.Forms.MenuItem();
            this.menuItemView = new System.Windows.Forms.MenuItem();
            this.SuspendLayout();
            // 
            // mainMenu
            // 
            this.mainMenu.MenuItems.Add(this.menuItemClose);
            this.mainMenu.MenuItems.Add(this.menuItemHome);
            // 
            // menuItemClose
            // 
            this.menuItemClose.Text = "Close";
            this.menuItemClose.Click += new System.EventHandler(this.menuItemClose_Click);
            // 
            // menuItemHome
            // 
            this.menuItemHome.Text = "Home";
            this.menuItemHome.Click += new System.EventHandler(this.menuItemHome_Click);
            // 
            // dgVisitList
            // 
            this.dgVisitList.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.dgVisitList.ContextMenu = this.contextMenuAction;
            this.dgVisitList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dgVisitList.Location = new System.Drawing.Point(0, 0);
            this.dgVisitList.Name = "dgVisitList";
            this.dgVisitList.Size = new System.Drawing.Size(240, 268);
            this.dgVisitList.TabIndex = 0;
            // 
            // contextMenuAction
            // 
            this.contextMenuAction.MenuItems.Add(this.menuItemNew);
            this.contextMenuAction.MenuItems.Add(this.menuItemEdit);
            this.contextMenuAction.MenuItems.Add(this.menuItemDelete);
            this.contextMenuAction.MenuItems.Add(this.menuItemView);
            this.contextMenuAction.Popup += new System.EventHandler(this.contextMenuAction_Popup);
            // 
            // menuItemNew
            // 
            this.menuItemNew.Text = "New";
            this.menuItemNew.Click += new System.EventHandler(this.menuItemNew_Click);
            // 
            // menuItemEdit
            // 
            this.menuItemEdit.Text = "Edit";
            this.menuItemEdit.Click += new System.EventHandler(this.menuItemEdit_Click);
            // 
            // menuItemDelete
            // 
            this.menuItemDelete.Text = "Delete";
            this.menuItemDelete.Click += new System.EventHandler(this.menuItemDelete_Click);
            // 
            // menuItemView
            // 
            this.menuItemView.Text = "View";
            this.menuItemView.Click += new System.EventHandler(this.menuItemView_Click);
            // 
            // VisitList
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 268);
            this.Controls.Add(this.dgVisitList);
            this.Menu = this.mainMenu;
            this.Name = "VisitList";
            this.Text = "Visits";
            this.Load += new System.EventHandler(this.VisitList_Load);
            this.GotFocus += new System.EventHandler(this.VisitList_GotFocus);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.MenuItem menuItemClose;
        private System.Windows.Forms.MenuItem menuItemHome;
        private System.Windows.Forms.DataGrid dgVisitList;
        private System.Windows.Forms.ContextMenu contextMenuAction;
        private System.Windows.Forms.MenuItem menuItemNew;
        private System.Windows.Forms.MenuItem menuItemEdit;
        private System.Windows.Forms.MenuItem menuItemDelete;
        private System.Windows.Forms.MenuItem menuItemView;
    }
}

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