public FrmWarrantyChecker()
 {
     InitializeComponent();
     lblStatus.Text = @"Initializing...";
     _scanApiHelper = new ScanApiHelper.ScanApiHelper();
     _scanApiHelper.SetNotification(this);
     Load += WarrantyChecker_Load;
 }
 public SingleEntryWM()
 {
     InitializeComponent();
     lblStatus.Text = "Initializing...";
     _scanApiHelper = new ScanApiHelper.ScanApiHelper();
     _scanApiHelper.SetNotification(this);
     _bInitialized = false;
     Load += new EventHandler(SingleEntry_Load);
 }