Exemplo n.º 1
0
        static void Main(string[] args)
        {
            SetupLiveTVPorts s = new SetupLiveTVPorts();

            s.start();
        }
Exemplo n.º 2
0
 static void Main(string[] args)
 {
     SetupLiveTVPorts s = new SetupLiveTVPorts();
     s.start();
 }
Exemplo n.º 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();
     }
 }