Click here to Skip to main content
15,897,704 members
Articles / Programming Languages / XML

How to Implement a Software Development Process

Rate me:
Please Sign up or sign in to vote.
4.36/5 (17 votes)
28 Apr 2009CPOL17 min read 51.2K   283   50  
Software development process or how to perform 100% testing on GUI applications
/***************************************************************************
 *   CopyRight (C) 2009 by SC Crom-Osec SRL                                *
 *   Contact:  contact@osec.ro                                             *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the Crom Free License as published by           *
 *   the SC Crom-Osec SRL; version 1 of the License                        *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   Crom Free License for more details.                                   *
 *                                                                         *
 *   You should have received a copy of the Crom Free License along with   *
 *   this program; if not, write to the contact@osec.ro                    *
 ***************************************************************************/

namespace DesktopClockWidget
{
   partial class ClockWidget
   {
      /// <summary> 
      /// Required designer variable.
      /// </summary>
      private System.ComponentModel.IContainer components = null;

      #region Component 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.components = new System.ComponentModel.Container();
         this._timer = new System.Windows.Forms.Timer(this.components);
         this.SuspendLayout();
         // 
         // _timer
         // 
         this._timer.Enabled = true;
         this._timer.Interval = 500;
         this._timer.Tick += new System.EventHandler(this.OnUpdateClockImage);
         // 
         // ClockWidget
         // 
         this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
         this.Name = "ClockWidget";
         this.ResumeLayout(false);

      }

      #endregion

      private System.Windows.Forms.Timer _timer;
   }
}

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
Romania Romania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions