示例#1
0
        public ShowTimeFormDB()
        {
            InitializeComponent();

            finder = new FinderDelegate(FinderFunction);
            iResult = finder.BeginInvoke(new AsyncCallback(CallBack), null);

            if (iResult.AsyncWaitHandle.WaitOne(1500))
            {
                closed = true;
            }
        }
示例#2
0
        public ShowTimeForm()
        {
            InitializeComponent();

            finder  = new FinderDelegate(FinderFunction);
            iResult = finder.BeginInvoke(new AsyncCallback(CallBack), null);

            if (iResult.AsyncWaitHandle.WaitOne(1500))
            {
                closed = true;
            }
        }