Esempio n. 1
0
        void autoFillThread()
        {
            string query = titleT.Text;

            if (query != "")
            {
                imdb = null;
                imdb = new Imdb();
                imdb.Search(query);

                this.Invoke((MethodInvoker) delegate
                {
                    autoFillThreadValueUpdate();
                });
            }
        }
Esempio n. 2
0
        void autoFillThread()
        {
            string query = titleT.Text;
            if (query != "")
            {
                imdb = null;
                imdb = new Imdb();
                imdb.Search(query);

                this.Invoke((MethodInvoker)delegate
                {
                    autoFillThreadValueUpdate();
                });
            }
        }