Beispiel #1
0
		private void frmMain_Load(object eventSender, System.EventArgs eventArgs)
		{
			////First we attempt to login to WINS

            Form frmSplash = new frmSplash();

            frmSplash.Show();
            frmSplash.Refresh();

			if (modBSMiniRPT.ConnectToWINS())
			{
				////Filling in the information tab
				f_GetWCInformation();
				frmSplash.Dispose();
			}
			else
			{
				frmSplash.Dispose();
				this.Dispose();
			}

		}