using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Tango.BuildExtensions { public partial class SelectForm : Form { public SelectForm() { InitializeComponent(); } public void SetStatus(String text) { lbSTatus.Text = text; } protected override bool ShowWithoutActivation { get { return true; } } } }