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

Task assigner with Windows Mobile and a Web Service

Rate me:
Please Sign up or sign in to vote.
4.23/5 (12 votes)
7 Dec 2008CPOL3 min read 54.7K   1.1K   35  
Send messages, commands, tasks etc., to all employees from a central administration point.
namespace FileTransfer
{
    partial class frmMain
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;
        private System.Windows.Forms.MainMenu mainMenu1;

        /// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.tabFileTransfer = new System.Windows.Forms.TabControl();
            this.tabmsgView = new System.Windows.Forms.TabPage();
            this.txttime = new System.Windows.Forms.TextBox();
            this.txtdate = new System.Windows.Forms.TextBox();
            this.txtmsg = new System.Windows.Forms.TextBox();
            this.txtName = new System.Windows.Forms.TextBox();
            this.btnmsgviewCancel = new System.Windows.Forms.Button();
            this.label6 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.lstviewMsgs = new System.Windows.Forms.ListView();
            this.clnName = new System.Windows.Forms.ColumnHeader();
            this.clnMsg = new System.Windows.Forms.ColumnHeader();
            this.clnDate = new System.Windows.Forms.ColumnHeader();
            this.clnTime = new System.Windows.Forms.ColumnHeader();
            this.tabMsgSend = new System.Windows.Forms.TabPage();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuExit = new System.Windows.Forms.MenuItem();
            this.tabFileTransfer.SuspendLayout();
            this.tabmsgView.SuspendLayout();
            this.SuspendLayout();
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            this.mainMenu1.MenuItems.Add(this.menuExit);
            // 
            // tabFileTransfer
            // 
            this.tabFileTransfer.Controls.Add(this.tabmsgView);
            this.tabFileTransfer.Controls.Add(this.tabMsgSend);
            this.tabFileTransfer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabFileTransfer.Location = new System.Drawing.Point(0, 0);
            this.tabFileTransfer.Name = "tabFileTransfer";
            this.tabFileTransfer.SelectedIndex = 0;
            this.tabFileTransfer.Size = new System.Drawing.Size(240, 268);
            this.tabFileTransfer.TabIndex = 0;
            // 
            // tabmsgView
            // 
            this.tabmsgView.Controls.Add(this.txttime);
            this.tabmsgView.Controls.Add(this.txtdate);
            this.tabmsgView.Controls.Add(this.txtmsg);
            this.tabmsgView.Controls.Add(this.txtName);
            this.tabmsgView.Controls.Add(this.btnmsgviewCancel);
            this.tabmsgView.Controls.Add(this.label6);
            this.tabmsgView.Controls.Add(this.label5);
            this.tabmsgView.Controls.Add(this.label4);
            this.tabmsgView.Controls.Add(this.label3);
            this.tabmsgView.Controls.Add(this.lstviewMsgs);
            this.tabmsgView.Location = new System.Drawing.Point(0, 0);
            this.tabmsgView.Name = "tabmsgView";
            this.tabmsgView.Size = new System.Drawing.Size(240, 245);
            this.tabmsgView.Text = "Msg View";
            // 
            // txttime
            // 
            this.txttime.Location = new System.Drawing.Point(79, 197);
            this.txttime.Name = "txttime";
            this.txttime.Size = new System.Drawing.Size(158, 21);
            this.txttime.TabIndex = 9;
            // 
            // txtdate
            // 
            this.txtdate.Location = new System.Drawing.Point(79, 173);
            this.txtdate.Name = "txtdate";
            this.txtdate.Size = new System.Drawing.Size(158, 21);
            this.txtdate.TabIndex = 8;
            // 
            // txtmsg
            // 
            this.txtmsg.Location = new System.Drawing.Point(79, 149);
            this.txtmsg.Name = "txtmsg";
            this.txtmsg.Size = new System.Drawing.Size(158, 21);
            this.txtmsg.TabIndex = 7;
            this.txtmsg.GotFocus += new System.EventHandler(this.txtmsg_GotFocus);
            // 
            // txtName
            // 
            this.txtName.Location = new System.Drawing.Point(79, 125);
            this.txtName.Name = "txtName";
            this.txtName.Size = new System.Drawing.Size(158, 21);
            this.txtName.TabIndex = 6;
            // 
            // btnmsgviewCancel
            // 
            this.btnmsgviewCancel.Location = new System.Drawing.Point(165, 222);
            this.btnmsgviewCancel.Name = "btnmsgviewCancel";
            this.btnmsgviewCancel.Size = new System.Drawing.Size(72, 20);
            this.btnmsgviewCancel.TabIndex = 5;
            this.btnmsgviewCancel.Text = "Cancel";
            // 
            // label6
            // 
            this.label6.Location = new System.Drawing.Point(7, 197);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(77, 20);
            this.label6.Text = "Time";
            // 
            // label5
            // 
            this.label5.Location = new System.Drawing.Point(7, 173);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(77, 20);
            this.label5.Text = "Date";
            // 
            // label4
            // 
            this.label4.Location = new System.Drawing.Point(7, 149);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(77, 20);
            this.label4.Text = "Message";
            // 
            // label3
            // 
            this.label3.Location = new System.Drawing.Point(7, 125);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(77, 20);
            this.label3.Text = "Name";
            // 
            // lstviewMsgs
            // 
            this.lstviewMsgs.Columns.Add(this.clnName);
            this.lstviewMsgs.Columns.Add(this.clnMsg);
            this.lstviewMsgs.Columns.Add(this.clnDate);
            this.lstviewMsgs.Columns.Add(this.clnTime);
            this.lstviewMsgs.FullRowSelect = true;
            this.lstviewMsgs.Location = new System.Drawing.Point(0, 0);
            this.lstviewMsgs.Name = "lstviewMsgs";
            this.lstviewMsgs.Size = new System.Drawing.Size(240, 119);
            this.lstviewMsgs.TabIndex = 0;
            this.lstviewMsgs.View = System.Windows.Forms.View.Details;
            this.lstviewMsgs.ItemActivate += new System.EventHandler(this.lstviewMsgs_ItemActivate);
            // 
            // clnName
            // 
            this.clnName.Text = "Name";
            this.clnName.Width = 60;
            // 
            // clnMsg
            // 
            this.clnMsg.Text = "Message";
            this.clnMsg.Width = 60;
            // 
            // clnDate
            // 
            this.clnDate.Text = "Date";
            this.clnDate.Width = 60;
            // 
            // clnTime
            // 
            this.clnTime.Text = "Time";
            this.clnTime.Width = 60;
            // 
            // tabMsgSend
            // 
            this.tabMsgSend.Location = new System.Drawing.Point(0, 0);
            this.tabMsgSend.Name = "tabMsgSend";
            this.tabMsgSend.Size = new System.Drawing.Size(232, 242);
            this.tabMsgSend.Text = "Msg send";
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.MenuItems.Add(this.menuItem3);
            this.menuItem1.Text = "File";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Save";
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "Delete";
            // 
            // menuExit
            // 
            this.menuExit.Text = "Exit";
            this.menuExit.Click += new System.EventHandler(this.menuExit_Click);
            // 
            // frmMain
            // 
            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.tabFileTransfer);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "frmMain";
            this.Text = "Central Location Commander";
            this.Load += new System.EventHandler(this.frmMain_Load);
            this.tabFileTransfer.ResumeLayout(false);
            this.tabmsgView.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.TabControl tabFileTransfer;
        private System.Windows.Forms.TabPage tabmsgView;
        private System.Windows.Forms.TabPage tabMsgSend;
        private System.Windows.Forms.ListView lstviewMsgs;
        private System.Windows.Forms.ColumnHeader clnName;
        private System.Windows.Forms.ColumnHeader clnMsg;
        private System.Windows.Forms.ColumnHeader clnDate;
        private System.Windows.Forms.ColumnHeader clnTime;
        private System.Windows.Forms.TextBox txttime;
        private System.Windows.Forms.TextBox txtdate;
        private System.Windows.Forms.TextBox txtmsg;
        private System.Windows.Forms.TextBox txtName;
        private System.Windows.Forms.Button btnmsgviewCancel;
        private System.Windows.Forms.Label label6;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.MenuItem menuItem1;
        private System.Windows.Forms.MenuItem menuItem2;
        private System.Windows.Forms.MenuItem menuItem3;
        private System.Windows.Forms.MenuItem menuExit;
    }
}

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
Team Leader
Singapore Singapore
- B.Sc. degree in Computer Science.
- 4+ years experience in Visual C#.net and VB.net
- Obsessed in OOP style design and programming.
- Designing and developing Network security tools.
- Designing and developing a client/server application for sharing files among users in a way other than FTP protocol.
- Designing and implementing GSM gateway applications and bulk messaging.
- Windows Mobile and Symbian Programming
- Having knowledge with ERP solutions

The summary of my skills:
C#, VB.Net#,ASP.net, VC++, Java, WPF,WCF, Oracle, SQL Server, MS Access, Windows NT administration

Cheers
RRave
MCPD,MCTS
http://codegain.com

Comments and Discussions