Click here to Skip to main content
15,886,026 members
Articles / Mobile Apps / Windows Mobile

A GPS tracer application for Windows Mobile CE 5

Rate me:
Please Sign up or sign in to vote.
4.80/5 (27 votes)
22 May 2007CPOL3 min read 289K   3.4K   199  
A simple GPS tracer developed for Windows Mobile 2005 on Compact Framework 2.0 SDK
namespace GpsTracer
{
    partial class Form1
    {
        /// <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.menuItemMainMenu = new System.Windows.Forms.MenuItem();
            this.menuItemRunStop = new System.Windows.Forms.MenuItem();
            this.menuItemSettings = new System.Windows.Forms.MenuItem();
            this.menuItemDemoMode = new System.Windows.Forms.MenuItem();
            this.menuItemLog = new System.Windows.Forms.MenuItem();
            this.menuItemCom = new System.Windows.Forms.MenuItem();
            this.menuItemCom1 = new System.Windows.Forms.MenuItem();
            this.menuItemCom2 = new System.Windows.Forms.MenuItem();
            this.menuItemCom3 = new System.Windows.Forms.MenuItem();
            this.menuItemCom4 = new System.Windows.Forms.MenuItem();
            this.menuItemCom5 = new System.Windows.Forms.MenuItem();
            this.menuItemPath = new System.Windows.Forms.MenuItem();
            this.menuItem5 = new System.Windows.Forms.MenuItem();
            this.menuItem6 = new System.Windows.Forms.MenuItem();
            this.menuItemExit = new System.Windows.Forms.MenuItem();
            this.trackBar1 = new System.Windows.Forms.TrackBar();
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.menuItemCenter = new System.Windows.Forms.MenuItem();
            this.SuspendLayout();
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItemMainMenu);
            // 
            // menuItemMainMenu
            // 
            this.menuItemMainMenu.MenuItems.Add(this.menuItemRunStop);
            this.menuItemMainMenu.MenuItems.Add(this.menuItemCenter);
            this.menuItemMainMenu.MenuItems.Add(this.menuItemSettings);
            this.menuItemMainMenu.MenuItems.Add(this.menuItemPath);
            this.menuItemMainMenu.MenuItems.Add(this.menuItemExit);
            this.menuItemMainMenu.Text = "Menu";
            // 
            // menuItemRunStop
            // 
            this.menuItemRunStop.Text = "Run/Stop";
            this.menuItemRunStop.Click += new System.EventHandler(this.menuItemRunStop_Click);
            // 
            // menuItemSettings
            // 
            this.menuItemSettings.MenuItems.Add(this.menuItemDemoMode);
            this.menuItemSettings.MenuItems.Add(this.menuItemLog);
            this.menuItemSettings.MenuItems.Add(this.menuItemCom);
            this.menuItemSettings.Text = "Settings";
            // 
            // menuItemDemoMode
            // 
            this.menuItemDemoMode.Text = "DemoMode";
            this.menuItemDemoMode.Click += new System.EventHandler(this.menuItemDemo_Click);
            // 
            // menuItemLog
            // 
            this.menuItemLog.Text = "Log";
            this.menuItemLog.Click += new System.EventHandler(this.menuItemLog_Click);
            // 
            // menuItemCom
            // 
            this.menuItemCom.MenuItems.Add(this.menuItemCom1);
            this.menuItemCom.MenuItems.Add(this.menuItemCom2);
            this.menuItemCom.MenuItems.Add(this.menuItemCom3);
            this.menuItemCom.MenuItems.Add(this.menuItemCom4);
            this.menuItemCom.MenuItems.Add(this.menuItemCom5);
            this.menuItemCom.Text = "Com Port";
            // 
            // menuItemCom1
            // 
            this.menuItemCom1.Text = "Com1";
            this.menuItemCom1.Click += new System.EventHandler(this.menuItemCom1_Click);
            // 
            // menuItemCom2
            // 
            this.menuItemCom2.Text = "Com2";
            this.menuItemCom2.Click += new System.EventHandler(this.menuItemCom2_Click);
            // 
            // menuItemCom3
            // 
            this.menuItemCom3.Text = "Com3";
            this.menuItemCom3.Click += new System.EventHandler(this.menuItemCom3_Click);
            // 
            // menuItemCom4
            // 
            this.menuItemCom4.Text = "Com4";
            this.menuItemCom4.Click += new System.EventHandler(this.menuItemCom4_Click);
            // 
            // menuItemCom5
            // 
            this.menuItemCom5.Checked = true;
            this.menuItemCom5.Text = "Com5";
            this.menuItemCom5.Click += new System.EventHandler(this.menuItemCom5_Click);
            // 
            // menuItemPath
            // 
            this.menuItemPath.MenuItems.Add(this.menuItem5);
            this.menuItemPath.MenuItems.Add(this.menuItem6);
            this.menuItemPath.Text = "Path";
            // 
            // menuItem5
            // 
            this.menuItem5.Text = "Load Path";
            this.menuItem5.Click += new System.EventHandler(this.menuItemLoadPath_Click);
            // 
            // menuItem6
            // 
            this.menuItem6.Text = "Save Path";
            this.menuItem6.Click += new System.EventHandler(this.menuItemSavePath_Click);
            // 
            // menuItemExit
            // 
            this.menuItemExit.Text = "Exit";
            this.menuItemExit.Click += new System.EventHandler(this.menuItem4_Click);
            // 
            // trackBar1
            // 
            this.trackBar1.Location = new System.Drawing.Point(3, 3);
            this.trackBar1.Maximum = 250;
            this.trackBar1.Minimum = 1;
            this.trackBar1.Name = "trackBar1";
            this.trackBar1.Size = new System.Drawing.Size(237, 17);
            this.trackBar1.TabIndex = 26;
            this.trackBar1.Value = 10;
            this.trackBar1.ValueChanged += new System.EventHandler(this.trackBar1_ValueChanged);
            // 
            // openFileDialog1
            // 
            this.openFileDialog1.FileName = "openFileDialog1";
            this.openFileDialog1.Filter = "PathFiles|*.path";
            // 
            // saveFileDialog1
            // 
            this.saveFileDialog1.Filter = "PathFiles|*.path";
            // 
            // menuItemCenter
            // 
            this.menuItemCenter.Text = "Center";
            this.menuItemCenter.Click += new System.EventHandler(this.menuItemCenter_Click);
            // 
            // Form1
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
            this.AutoScroll = true;
            this.BackColor = System.Drawing.SystemColors.Window;
            this.ClientSize = new System.Drawing.Size(240, 320);
            this.ControlBox = false;
            this.Controls.Add(this.trackBar1);
            this.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Menu = this.mainMenu1;
            this.Name = "Form1";
            this.Text = "GpsTracer";
            this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseUp);
            this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseMove);
            this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseDown);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.MenuItem menuItemMainMenu;
        private System.Windows.Forms.MenuItem menuItemRunStop;
        private System.Windows.Forms.MenuItem menuItemExit;
        private System.Windows.Forms.TrackBar trackBar1;
        private System.Windows.Forms.MenuItem menuItemSettings;
        private System.Windows.Forms.MenuItem menuItemPath;
        private System.Windows.Forms.MenuItem menuItem6;
        private System.Windows.Forms.MenuItem menuItem5;
        private System.Windows.Forms.MenuItem menuItemDemoMode;
        private System.Windows.Forms.MenuItem menuItemCom;
        private System.Windows.Forms.MenuItem menuItemCom1;
        private System.Windows.Forms.MenuItem menuItemCom2;
        private System.Windows.Forms.MenuItem menuItemCom3;
        private System.Windows.Forms.MenuItem menuItemCom4;
        private System.Windows.Forms.MenuItem menuItemCom5;
        private System.Windows.Forms.OpenFileDialog openFileDialog1;
        private System.Windows.Forms.SaveFileDialog saveFileDialog1;
        private System.Windows.Forms.MenuItem menuItemLog;
        private System.Windows.Forms.MenuItem menuItemCenter;
 


    }
}

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
Architect Giuneco http://www.giuneco.it
Italy Italy
IT is not only work, it is a hobbie, for that i post here!

Comments and Discussions