GenericHid.cs
author StephaneLenclud
Wed, 11 Feb 2015 15:52:53 +0100
changeset 7 5680e56e9b0b
permissions -rw-r--r--
Left over fixes :)
     1 
     2 using System.Windows.Forms;
     3 
     4 namespace GenericHid
     5 {
     6 	/// <summary>
     7 	///  Runs the application and provides access to the instance of the form.
     8 	/// </summary> 
     9 	  
    10 	public class GenericHid  
    11 	{ 
    12 		internal static FrmMain FrmMy; 
    13 		
    14 		/// <summary>
    15 		///  Displays the application's main form.
    16 		/// </summary> 
    17 		
    18 		public static void Main() 
    19 		{ 
    20 			FrmMy = new FrmMain(); 
    21 			Application.Run(FrmMy); 
    22 		} 
    23 	} 
    24 }