public SegmentForm(ConferenceDataCache confDataCache) { InitializeComponent(); this.setToolTips(); segment = null; slideDecks = null; this.confDataCache = confDataCache; this.sqlHost = confDataCache.SqlServer; this.dbName = confDataCache.DbName; }
public StreamLookupProgressForm(ConferenceDataCache confDataCache) { InitializeComponent(); this.confDataCache = confDataCache; this.labelStatus.Text = "Initializing ..."; //start a new thread to update the progress bar, etc. waitThread = new Thread(new ThreadStart(waitThreadProc)); waitThread.Name = "StreamLookupProgressForm Wait Thread"; stopNow = false; this.progressBar1.Minimum = 0; this.progressBar1.Maximum = confDataCache.ParticipantCount; waitThread.Start(); }