C# 타 프로그램간의 화면 전환 [ Form Message 전달 ]
관련 : 2010/09/03 C# 에서 Window Message 전달 // FindWindow 사용을 위한 코드 using Microsoft.Win32; using System.Runtime.InteropServices; using System.Diagnostics; ~~~~~~~~~~~~~~~~~~~~~~~~~~~ //전역 변수 설정 bool isExecuting = false; // FindWindow 사용을 위한 코드 [DllImport("user32.dll", CharSet = CharSet.Auto)] public static extern IntPtr FindWindow(string strClassName, string StrWindowName); [DllImport("user32.dll", ..
C#
2010. 9. 7. 16:00