private void wThread1()
        {
            CheckForIllegalCrossThreadCalls = false;
            Thread th1 = new Thread(new ThreadStart(dm));
            th1.Start();
            th1.Join();

        }


작업은 진행되는듯 하나 폼이 멈춰버립니다