Example #1
0
        static void Main(string[] args)
        {
            SetupLiveTVPorts s = new SetupLiveTVPorts();

            s.start();
        }
Example #2
0
 static void Main(string[] args)
 {
     SetupLiveTVPorts s = new SetupLiveTVPorts();
     s.start();
 }
Example #3
0
 void ShowSetupWizardIfNeverShown()
 {
     if (!(Settings.Default.EverShownSetupWizard))
     {
         SetupLiveTVPorts s = new SetupLiveTVPorts();
         s.start();
         Settings.Default.EverShownSetupWizard = true;
         ShowSetupWizard();
     }
     else
     {
         SetupLiveTVPorts s = new SetupLiveTVPorts();
         s.start();
     }
 }