.net compact framework을 이용한 PDA 프로그램 개발에서 메시지 박스를 특정한 시간이 지나면 자동으로 종료되는 샘플 코드입니다. public class AutoClosingMessageBox { System.Threading.Timer _timeoutTimer; string _caption; AutoClosingMessageBox(string text, string caption, int timeout) { _caption = caption; _timeoutTimer = new System.Threadin..