Code Search for Developers
 
 
  

Program.cs from Make Controller at Krugle


Show Program.cs syntax highlighted

using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace DeskTimer
{
  static class Program
  {
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
      Application.EnableVisualStyles();
      Application.SetCompatibleTextRenderingDefault(false);
      Application.Run(new DeskTimerForm());
    }
  }
}



See more files for this project here

Make Controller

The Make Controller is an open microcontroller platform for Makers of all kinds, by MakingThings. This project maintains the official firmware for the board and source for the software tools used with the board.

Project homepage: http://sourceforge.net/projects/makingthings
Programming language(s): C,C#,C++
License: other

  Properties/
    AssemblyInfo.cs
    Resources.Designer.cs
    Resources.resx
    Settings.Designer.cs
    Settings.settings
  DeskTimer.csproj
  DeskTimerForm.Designer.cs
  DeskTimerForm.cs
  DeskTimerForm.resx
  Program.cs