Exemple #1
0
		public void Close()
		{
			if ( m_Thread == null || m_Form == null )
				return;

			try
			{
				m_Form.Invoke( new MethodInvoker( m_Form.Close ) );
			}
			catch {}

			m_Thread = null;
			m_Form = null;
		}
Exemple #2
0
		private void ShowThread()
		{
			m_Form = new SplashScreen();
			Application.Run( m_Form	);
		}