Пример #1
0
        public void SetChartValue(AxMSChart20Lib.AxMSChart vChart, SortedDictionary <string, double> value)
        {
            vChart.SeriesColumn = 1;
            vChart.RowCount     = (short)value.Count;
            int i = 1;

            //
            string strOther = "";
            double dblOther = 0;

            foreach (KeyValuePair <string, double> vItem in value)
            {
                string strKey   = vItem.Key;
                double dblValue = vItem.Value;
                if (strKey == "ÆäËû")
                {
                    strOther = "ÆäËû";
                    dblOther = dblValue;
                    continue;
                }
                vChart.Row      = (short)i;
                vChart.RowLabel = strKey;
                vChart.DataGrid.SetData((short)i, 1, dblValue, 0);
                i++;
            }

            if (strOther != "")
            {
                vChart.Row      = (short)i;
                vChart.RowLabel = strOther;
                vChart.DataGrid.SetData((short)i, 1, dblOther, 0);
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ChartOutputForm));
     this.ChartStyleCmbo = new System.Windows.Forms.ComboBox();
     this.label1         = new System.Windows.Forms.Label();
     this.axMSChart1     = new AxMSChart20Lib.AxMSChart();
     ((System.ComponentModel.ISupportInitialize)(this.axMSChart1)).BeginInit();
     this.SuspendLayout();
     //
     // ChartStyleCmbo
     //
     this.ChartStyleCmbo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ChartStyleCmbo.Items.AddRange(new object[] {
         "Summay",
         "Detailed"
     });
     this.ChartStyleCmbo.Location              = new System.Drawing.Point(8, 8);
     this.ChartStyleCmbo.Name                  = "ChartStyleCmbo";
     this.ChartStyleCmbo.Size                  = new System.Drawing.Size(121, 21);
     this.ChartStyleCmbo.TabIndex              = 1;
     this.ChartStyleCmbo.SelectedIndexChanged += new System.EventHandler(this.ChartStyleCmbo_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(168, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(336, 16);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Hold down Ctrl to Rotate.  Click on a bar to display value.";
     //
     // axMSChart1
     //
     this.axMSChart1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.axMSChart1.DataSource     = null;
     this.axMSChart1.Location       = new System.Drawing.Point(0, 32);
     this.axMSChart1.Name           = "axMSChart1";
     this.axMSChart1.OcxState       = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMSChart1.OcxState")));
     this.axMSChart1.Size           = new System.Drawing.Size(680, 496);
     this.axMSChart1.TabIndex       = 3;
     this.axMSChart1.PointSelected += new AxMSChart20Lib._DMSChartEvents_PointSelectedEventHandler(this.axMSChart1_PointSelected);
     //
     // ChartOutputForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(688, 533);
     this.Controls.Add(this.axMSChart1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.ChartStyleCmbo);
     this.Name          = "ChartOutputForm";
     this.ShowInTaskbar = false;
     this.Text          = "ChartOutputForm";
     this.Load         += new System.EventHandler(this.ChartOutputForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.axMSChart1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #3
0
        public void InitChart(AxMSChart20Lib.AxMSChart vChart)
        {
            vChart.AllowSelections      = false;
            vChart.AllowSeriesSelection = false;

            vChart.Plot.get_Axis(MSChart20Lib.VtChAxisId.VtChAxisIdX, 0).AxisTitle.Text = m_strXtitle;
            vChart.Plot.get_Axis(MSChart20Lib.VtChAxisId.VtChAxisIdY, 0).AxisTitle.Text = m_strYtitle;
            vChart.TitleText = m_strChartTitle;

            vChart.Plot.get_Axis(MSChart20Lib.VtChAxisId.VtChAxisIdX, 0).AxisGrid.MajorPen.Style = MSChart20Lib.VtPenStyle.VtPenStyleNull;
            vChart.Plot.get_Axis(MSChart20Lib.VtChAxisId.VtChAxisIdX, 0).AxisGrid.MinorPen.Style = MSChart20Lib.VtPenStyle.VtPenStyleNull;
        }
Пример #4
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.timer1     = new System.Timers.Timer();
     this.graphPanel = new System.Windows.Forms.Panel();
     this.axMSChart1 = new AxMSChart20Lib.AxMSChart();
     ((System.ComponentModel.ISupportInitialize)(this.timer1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.axMSChart1)).BeginInit();
     this.SuspendLayout();
     //
     // timer1
     //
     this.timer1.Enabled             = true;
     this.timer1.Interval            = 200;
     this.timer1.SynchronizingObject = this;
     this.timer1.Elapsed            += new System.Timers.ElapsedEventHandler(this.timer1_Elapsed);
     //
     // graphPanel
     //
     this.graphPanel.Location = new System.Drawing.Point(8, 8);
     this.graphPanel.Name     = "graphPanel";
     this.graphPanel.Size     = new System.Drawing.Size(408, 248);
     this.graphPanel.TabIndex = 0;
     this.graphPanel.Paint   += new System.Windows.Forms.PaintEventHandler(this.graphPanel_Paint);
     //
     // axMSChart1
     //
     this.axMSChart1.DataSource     = null;
     this.axMSChart1.Location       = new System.Drawing.Point(440, 8);
     this.axMSChart1.Name           = "axMSChart1";
     this.axMSChart1.OcxState       = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMSChart1.OcxState")));
     this.axMSChart1.Size           = new System.Drawing.Size(232, 248);
     this.axMSChart1.TabIndex       = 1;
     this.axMSChart1.ChartSelected += new AxMSChart20Lib._DMSChartEvents_ChartSelectedEventHandler(this.axMSChart1_ChartSelected);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(688, 266);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.axMSChart1,
         this.graphPanel
     });
     this.Name    = "Form1";
     this.Text    = "Form1";
     this.Closed += new System.EventHandler(this.Form1_Closed);
     this.Paint  += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);
     ((System.ComponentModel.ISupportInitialize)(this.timer1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.axMSChart1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmHistogram));
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.chartOutput = new AxMSChart20Lib.AxMSChart();
     this.chartInput = new AxMSChart20Lib.AxMSChart();
     ((System.ComponentModel.ISupportInitialize)(this.chartOutput)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartInput)).BeginInit();
     this.SuspendLayout();
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(180, 256);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(104, 24);
     this.label2.TabIndex = 7;
     this.label2.Text = "Output File";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(188, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(88, 24);
     this.label1.TabIndex = 6;
     this.label1.Text = "Input File";
     //
     // chartOutput
     //
     this.chartOutput.DataSource = null;
     this.chartOutput.Location = new System.Drawing.Point(12, 288);
     this.chartOutput.Name = "chartOutput";
     this.chartOutput.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("chartOutput.OcxState")));
     this.chartOutput.Size = new System.Drawing.Size(440, 200);
     this.chartOutput.TabIndex = 4;
     //
     // chartInput
     //
     this.chartInput.DataSource = null;
     this.chartInput.Location = new System.Drawing.Point(16, 40);
     this.chartInput.Name = "chartInput";
     this.chartInput.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("chartInput.OcxState")));
     this.chartInput.Size = new System.Drawing.Size(440, 200);
     this.chartInput.TabIndex = 8;
     //
     // frmHistogram
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(464, 496);
     this.Controls.Add(this.chartInput);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.chartOutput);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmHistogram";
     this.Text = "Frequency Distributions";
     ((System.ComponentModel.ISupportInitialize)(this.chartOutput)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartInput)).EndInit();
     this.ResumeLayout(false);
 }
Пример #6
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
            this.timer1 = new System.Timers.Timer();
            this.graphPanel = new System.Windows.Forms.Panel();
            this.axMSChart1 = new AxMSChart20Lib.AxMSChart();
            ((System.ComponentModel.ISupportInitialize)(this.timer1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.axMSChart1)).BeginInit();
            this.SuspendLayout();
            // 
            // timer1
            // 
            this.timer1.Enabled = true;
            this.timer1.Interval = 200;
            this.timer1.SynchronizingObject = this;
            this.timer1.Elapsed += new System.Timers.ElapsedEventHandler(this.timer1_Elapsed);
            // 
            // graphPanel
            // 
            this.graphPanel.Location = new System.Drawing.Point(8, 8);
            this.graphPanel.Name = "graphPanel";
            this.graphPanel.Size = new System.Drawing.Size(408, 248);
            this.graphPanel.TabIndex = 0;
            this.graphPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.graphPanel_Paint);
            // 
            // axMSChart1
            // 
            this.axMSChart1.DataSource = null;
            this.axMSChart1.Location = new System.Drawing.Point(440, 8);
            this.axMSChart1.Name = "axMSChart1";
            this.axMSChart1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMSChart1.OcxState")));
            this.axMSChart1.Size = new System.Drawing.Size(232, 248);
            this.axMSChart1.TabIndex = 1;
            this.axMSChart1.ChartSelected += new AxMSChart20Lib._DMSChartEvents_ChartSelectedEventHandler(this.axMSChart1_ChartSelected);
            // 
            // Form1
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(688, 266);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                          this.axMSChart1,
                                                                          this.graphPanel});
            this.Name = "Form1";
            this.Text = "Form1";
            this.Closed += new System.EventHandler(this.Form1_Closed);
            this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);
            ((System.ComponentModel.ISupportInitialize)(this.timer1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.axMSChart1)).EndInit();
            this.ResumeLayout(false);

        }
Пример #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmMini));
     this.tabControl1    = new System.Windows.Forms.TabControl();
     this.tabPage1       = new System.Windows.Forms.TabPage();
     this.axMSChart1     = new AxMSChart20Lib.AxMSChart();
     this.tabPage2       = new System.Windows.Forms.TabPage();
     this.tabPage3       = new System.Windows.Forms.TabPage();
     this.label5         = new System.Windows.Forms.Label();
     this.label7         = new System.Windows.Forms.Label();
     this.lblPurpose     = new System.Windows.Forms.Label();
     this.progressBar1   = new System.Windows.Forms.ProgressBar();
     this.lblStatement   = new System.Windows.Forms.Label();
     this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
     this.statusBar1     = new System.Windows.Forms.StatusBar();
     this.cmdGetData     = new System.Windows.Forms.Button();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axMSChart1)).BeginInit();
     this.tabPage3.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabPage1,
         this.tabPage2,
         this.tabPage3
     });
     this.tabControl1.Location      = new System.Drawing.Point(8, 82);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(736, 400);
     this.tabControl1.TabIndex      = 92;
     //
     // tabPage1
     //
     this.tabPage1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.axMSChart1
     });
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(728, 374);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Graphical";
     //
     // axMSChart1
     //
     this.axMSChart1.ContainingControl = this;
     this.axMSChart1.DataSource        = null;
     this.axMSChart1.Location          = new System.Drawing.Point(8, 8);
     this.axMSChart1.Name     = "axMSChart1";
     this.axMSChart1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMSChart1.OcxState")));
     this.axMSChart1.Size     = new System.Drawing.Size(720, 344);
     this.axMSChart1.TabIndex = 71;
     //
     // tabPage2
     //
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(728, 374);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Statistical";
     this.tabPage2.Visible  = false;
     //
     // tabPage3
     //
     this.tabPage3.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.label5,
         this.label7
     });
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(728, 374);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Notes";
     this.tabPage3.Visible  = false;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(32, 72);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(576, 72);
     this.label5.TabIndex = 80;
     this.label5.Text     = @"Only about a quarter of the people uploading choose to associate the submitted file with their customer information.  Although this seems like a small percentage, it is actually quite a good response.  Things to consider moving forward, are how to improve the nonanonymous uploads by reducing the amount of information required for association.";
     //
     // label7
     //
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label7.Location = new System.Drawing.Point(32, 32);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(240, 24);
     this.label7.TabIndex = 76;
     this.label7.Text     = "Notes";
     //
     // lblPurpose
     //
     this.lblPurpose.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblPurpose.Location = new System.Drawing.Point(8, 2);
     this.lblPurpose.Name     = "lblPurpose";
     this.lblPurpose.Size     = new System.Drawing.Size(112, 24);
     this.lblPurpose.TabIndex = 91;
     this.lblPurpose.Text     = "Purpose";
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(568, 502);
     this.progressBar1.Name     = "progressBar1";
     this.progressBar1.Size     = new System.Drawing.Size(384, 23);
     this.progressBar1.TabIndex = 89;
     this.progressBar1.Visible  = false;
     //
     // lblStatement
     //
     this.lblStatement.Location = new System.Drawing.Point(8, 32);
     this.lblStatement.Name     = "lblStatement";
     this.lblStatement.Size     = new System.Drawing.Size(744, 30);
     this.lblStatement.TabIndex = 90;
     this.lblStatement.Text     = "The data below outlines and graphs the daily\\weekly number\\percentage of anonymou" +
                                  "s versus customer associated uploads.";
     //
     // monthCalendar1
     //
     this.monthCalendar1.Location = new System.Drawing.Point(760, 82);
     this.monthCalendar1.Name     = "monthCalendar1";
     this.monthCalendar1.TabIndex = 86;
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 512);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Size     = new System.Drawing.Size(968, 22);
     this.statusBar1.TabIndex = 88;
     //
     // cmdGetData
     //
     this.cmdGetData.Location = new System.Drawing.Point(760, 250);
     this.cmdGetData.Name     = "cmdGetData";
     this.cmdGetData.TabIndex = 87;
     this.cmdGetData.Text     = "&Refresh";
     //
     // frmMini
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(968, 534);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabControl1,
         this.lblPurpose,
         this.progressBar1,
         this.lblStatement,
         this.monthCalendar1,
         this.statusBar1,
         this.cmdGetData
     });
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmMini";
     this.Text = "Manual Uploads";
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axMSChart1)).EndInit();
     this.tabPage3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSolutionStatus));
     this.tabControl1    = new System.Windows.Forms.TabControl();
     this.tabPage1       = new System.Windows.Forms.TabPage();
     this.axMSChart1     = new AxMSChart20Lib.AxMSChart();
     this.tabPage2       = new System.Windows.Forms.TabPage();
     this.tabPage3       = new System.Windows.Forms.TabPage();
     this.label5         = new System.Windows.Forms.Label();
     this.label7         = new System.Windows.Forms.Label();
     this.progressBar1   = new System.Windows.Forms.ProgressBar();
     this.lblPurpose     = new System.Windows.Forms.Label();
     this.statusBar1     = new System.Windows.Forms.StatusBar();
     this.lblStatement   = new System.Windows.Forms.Label();
     this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axMSChart1)).BeginInit();
     this.tabPage3.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabPage1,
         this.tabPage2,
         this.tabPage3
     });
     this.tabControl1.Location      = new System.Drawing.Point(8, 88);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(736, 400);
     this.tabControl1.TabIndex      = 92;
     //
     // tabPage1
     //
     this.tabPage1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.axMSChart1
     });
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(728, 374);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Graphical";
     //
     // axMSChart1
     //
     this.axMSChart1.ContainingControl = this;
     this.axMSChart1.DataSource        = null;
     this.axMSChart1.Location          = new System.Drawing.Point(8, 8);
     this.axMSChart1.Name           = "axMSChart1";
     this.axMSChart1.OcxState       = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMSChart1.OcxState")));
     this.axMSChart1.Size           = new System.Drawing.Size(720, 344);
     this.axMSChart1.TabIndex       = 71;
     this.axMSChart1.ChartSelected += new AxMSChart20Lib._DMSChartEvents_ChartSelectedEventHandler(this.axMSChart1_ChartSelected);
     //
     // tabPage2
     //
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(728, 374);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Statistical";
     this.tabPage2.Visible  = false;
     this.tabPage2.Paint   += new System.Windows.Forms.PaintEventHandler(this.tabPage2_Paint);
     //
     // tabPage3
     //
     this.tabPage3.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.label5,
         this.label7
     });
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(728, 374);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Notes";
     this.tabPage3.Visible  = false;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(32, 72);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(576, 56);
     this.label5.TabIndex = 80;
     this.label5.Text     = @"The Stop Code troubleshooter solutions are displayed should a specific or general solution not exist and the stop code associated with the stop error link to a known Knowledge Base article.  There will eventually be replaced by general solutions when teh full set of general buckets have been identified and solutions developed.";
     //
     // label7
     //
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label7.Location = new System.Drawing.Point(32, 32);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(240, 24);
     this.label7.TabIndex = 76;
     this.label7.Text     = "Notes";
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(568, 502);
     this.progressBar1.Name     = "progressBar1";
     this.progressBar1.Size     = new System.Drawing.Size(384, 23);
     this.progressBar1.TabIndex = 89;
     this.progressBar1.Visible  = false;
     //
     // lblPurpose
     //
     this.lblPurpose.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblPurpose.Location = new System.Drawing.Point(8, 2);
     this.lblPurpose.Name     = "lblPurpose";
     this.lblPurpose.Size     = new System.Drawing.Size(112, 24);
     this.lblPurpose.TabIndex = 91;
     this.lblPurpose.Text     = "Purpose";
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 512);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Size     = new System.Drawing.Size(968, 22);
     this.statusBar1.TabIndex = 88;
     //
     // lblStatement
     //
     this.lblStatement.Location = new System.Drawing.Point(8, 32);
     this.lblStatement.Name     = "lblStatement";
     this.lblStatement.Size     = new System.Drawing.Size(744, 40);
     this.lblStatement.TabIndex = 90;
     this.lblStatement.Text     = @"The information below outlines the relationship between files in our database and the associated solution status.  The table header describes the type of solution displayed to the customer.  In the case of no solution, the Online Crash Analysis Web site displays information indicating that our service is currently researching the issue in question.";
     //
     // monthCalendar1
     //
     this.monthCalendar1.Location      = new System.Drawing.Point(760, 82);
     this.monthCalendar1.Name          = "monthCalendar1";
     this.monthCalendar1.TabIndex      = 86;
     this.monthCalendar1.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.monthCalendar1_DateSelected);
     //
     // frmSolutionStatus
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(968, 534);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabControl1,
         this.progressBar1,
         this.lblPurpose,
         this.statusBar1,
         this.lblStatement,
         this.monthCalendar1
     });
     this.Icon     = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name     = "frmSolutionStatus";
     this.Text     = "frmSolutionStatus";
     this.Resize  += new System.EventHandler(this.frmSolutionStatus_Resize);
     this.Closing += new System.ComponentModel.CancelEventHandler(this.frmSolutionStatus_Closing);
     this.Load    += new System.EventHandler(this.frmSolutionStatus_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axMSChart1)).EndInit();
     this.tabPage3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmWeekly));
     this.statusBar1     = new System.Windows.Forms.StatusBar();
     this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
     this.tabControl1    = new System.Windows.Forms.TabControl();
     this.tabPage1       = new System.Windows.Forms.TabPage();
     this.axMSChart1     = new AxMSChart20Lib.AxMSChart();
     this.pictureBox1    = new System.Windows.Forms.PictureBox();
     this.tabPage2       = new System.Windows.Forms.TabPage();
     this.tabPage3       = new System.Windows.Forms.TabPage();
     this.label5         = new System.Windows.Forms.Label();
     this.label6         = new System.Windows.Forms.Label();
     this.label4         = new System.Windows.Forms.Label();
     this.label3         = new System.Windows.Forms.Label();
     this.label7         = new System.Windows.Forms.Label();
     this.lblNotes100    = new System.Windows.Forms.Label();
     this.progressBar1   = new System.Windows.Forms.ProgressBar();
     this.lblPurpose     = new System.Windows.Forms.Label();
     this.lblStatement   = new System.Windows.Forms.Label();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axMSChart1)).BeginInit();
     this.tabPage3.SuspendLayout();
     this.SuspendLayout();
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 512);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Size     = new System.Drawing.Size(968, 22);
     this.statusBar1.TabIndex = 68;
     //
     // monthCalendar1
     //
     this.monthCalendar1.Location      = new System.Drawing.Point(760, 88);
     this.monthCalendar1.Name          = "monthCalendar1";
     this.monthCalendar1.TabIndex      = 66;
     this.monthCalendar1.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.monthCalendar1_DateSelected);
     //
     // tabControl1
     //
     this.tabControl1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabPage1,
         this.tabPage2,
         this.tabPage3
     });
     this.tabControl1.Location      = new System.Drawing.Point(8, 88);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(736, 400);
     this.tabControl1.TabIndex      = 78;
     //
     // tabPage1
     //
     this.tabPage1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.axMSChart1,
         this.pictureBox1
     });
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(728, 374);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Graphical";
     //
     // axMSChart1
     //
     this.axMSChart1.ContainingControl = this;
     this.axMSChart1.DataSource        = null;
     this.axMSChart1.Location          = new System.Drawing.Point(8, 8);
     this.axMSChart1.Name     = "axMSChart1";
     this.axMSChart1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMSChart1.OcxState")));
     this.axMSChart1.Size     = new System.Drawing.Size(720, 344);
     this.axMSChart1.TabIndex = 71;
     //
     // pictureBox1
     //
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(720, 360);
     this.pictureBox1.TabIndex = 72;
     this.pictureBox1.TabStop  = false;
     this.pictureBox1.Visible  = false;
     //
     // tabPage2
     //
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(728, 374);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Statistical";
     this.tabPage2.Paint   += new System.Windows.Forms.PaintEventHandler(this.tabPage2_Paint);
     //
     // tabPage3
     //
     this.tabPage3.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.label5,
         this.label6,
         this.label4,
         this.label3,
         this.label7,
         this.lblNotes100
     });
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(728, 374);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Notes";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(32, 146);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(576, 40);
     this.label5.TabIndex = 80;
     this.label5.Text     = "The data contained with the table below describes the files which were uploaded f" +
                            "or each respective server and the entries made by the Online Crash Analysis Web " +
                            "Site.";
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location = new System.Drawing.Point(32, 108);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(240, 24);
     this.label6.TabIndex = 79;
     this.label6.Text     = "Upload File";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(32, 54);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(576, 40);
     this.label4.TabIndex = 78;
     this.label4.Text     = "The data below has been compiled for a one week period and is formatted into sepa" +
                            "rate tables for readability and general understanding of how the data was graphe" +
                            "d.";
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(32, 16);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(240, 24);
     this.label3.TabIndex = 77;
     this.label3.Text     = "Site Data";
     //
     // label7
     //
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label7.Location = new System.Drawing.Point(32, 200);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(240, 24);
     this.label7.TabIndex = 76;
     this.label7.Text     = "Notes";
     //
     // lblNotes100
     //
     this.lblNotes100.Location = new System.Drawing.Point(32, 238);
     this.lblNotes100.Name     = "lblNotes100";
     this.lblNotes100.Size     = new System.Drawing.Size(576, 98);
     this.lblNotes100.TabIndex = 0;
     this.lblNotes100.Text     = @"Under optimal conditions, the baseline should be the number of files uploaded to the Office Watson server*.  This value corresponds to the number of customers that encounter a Stop error and choose to submit the file to Microsoft for analysis.  Once the user clicks the Close button on the Error reporting dialog, Internet Explorer is launched and the Auto.asp Web page is displayed.  At this time, the Web page connects to the Office Watson server and copies the file locally.  At the same time, an entry is made in the KACustomer2 database, which corresponds to the SQL entry.  This file is then submitted to the Online Crash Analysis central FileMover for processing and archival.  At the time of archival, the file is moved to our Archive server and moved to a directory corresponding the data  that the file was moved.";
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(560, 504);
     this.progressBar1.Name     = "progressBar1";
     this.progressBar1.Size     = new System.Drawing.Size(384, 23);
     this.progressBar1.TabIndex = 69;
     this.progressBar1.Visible  = false;
     //
     // lblPurpose
     //
     this.lblPurpose.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblPurpose.Location = new System.Drawing.Point(8, 8);
     this.lblPurpose.Name     = "lblPurpose";
     this.lblPurpose.Size     = new System.Drawing.Size(112, 24);
     this.lblPurpose.TabIndex = 72;
     this.lblPurpose.Text     = "Purpose";
     //
     // lblStatement
     //
     this.lblStatement.Location = new System.Drawing.Point(8, 38);
     this.lblStatement.Name     = "lblStatement";
     this.lblStatement.Size     = new System.Drawing.Size(744, 40);
     this.lblStatement.TabIndex = 71;
     this.lblStatement.Text     = @"The purpose of the following report is to gauge the overall condition and status of  the Windows Online Crash Analysis Web site. Through the use of SQL queries and  file counts it should be possible to generate a high level understanding of Web  site traffic, type of submissions and solution status";
     //
     // frmWeekly
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(968, 534);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.progressBar1,
         this.tabControl1,
         this.lblPurpose,
         this.lblStatement,
         this.statusBar1,
         this.monthCalendar1
     });
     this.Icon     = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name     = "frmWeekly";
     this.Text     = "Executive Summary Weekly Report";
     this.Resize  += new System.EventHandler(this.frmWeekly_Resize);
     this.Closing += new System.ComponentModel.CancelEventHandler(this.frmWeekly_Closing);
     this.Load    += new System.EventHandler(this.frmWeekly_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axMSChart1)).EndInit();
     this.tabPage3.ResumeLayout(false);
     this.ResumeLayout(false);
 }