성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <div style='font-family: 맑은 고딕, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>.NET 코드 - 단일 Process 실행</div> <br /> <a target='_tab' href='http://www.sysnet.pe.kr/0/0/371'>Pomodoro Timer</a>를 만드는데, 역시 이 기능도 필요하게 되었습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; width: 800px; background-color: #fbedbb; overflow-x: scroll; font-family: Consolas, Verdana;' > [C#] 단일 Process 실행 ; <a target='_tab' href='http://www.jumptovb.net/entry/C-%EB%8B%A8%EC%9D%BC-Process-%EC%8B%A4%ED%96%89'>http://www.jumptovb.net/entry/C-%EB%8B%A8%EC%9D%BC-Process-%EC%8B%A4%ED%96%89</a> </pre> <br /> 위에서 보는 것처럼, VB.NET은 프로젝트 설정 창에서 "단일 인스턴스 응용 프로그램 작성"이라는 옵션을 자동으로 제공해 줍니다. 그리고, 설명과 함께 제공되는 링크가 하나 있는데요. <br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; width: 800px; background-color: #fbedbb; overflow-x: scroll; font-family: Consolas, Verdana;' > How to make sure that there is one instance of the application is running ; <a target='_tab' href='http://stackoverflow.com/questions/391339/how-to-make-sure-that-there-is-one-instance-of-the-application-is-running'>http://stackoverflow.com/questions/391339/how-to-make-sure-that-there-is-one-instance-of-the-application-is-running</a> </pre> <br /> 위의 질문/답변에서 제시되는 해결책은 2가지가 있습니다. 하나는 "Named Mutex"를 이용한 방법과 다른 하나는 "현재 실행 중인 응용 프로그램 검색"을 통한 방법입니다.<br /> <br /> <hr style='width: 50%' /><br /> <br /> 사실 대개의 경우, "두 번째" 프로그램을 실행했을 때 정말 중복 실행이 되지 않는 것도 중요하지만, UX적인 측면을 고려해 보면 사용자에게 이전에 실행해 둔 프로그램이 팝업되어 보여지는 기능이 필요할 수 있습니다. 그런 방식으로 구현하려면 "현재 실행 중인 응용 프로그램 검색"은 기능이 다소 모자랍니다. "Named Mutex"를 쓰는 것이 더 간단할 수 있습니다.<br /> <br /> 저 같은 경우에는 (Named)EventWaitHandle 타입을 이용해서 아래와 같이 구현해 보았습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; width: 800px; background-color: #fbedbb; overflow-x: scroll; font-family: Consolas, Verdana;' > namespace PomodoroTimer { static class Program { public static EventWaitHandle s_ewh; static bool bRun = true; [STAThread] static void Main() { try { s_ewh = EventWaitHandle.OpenExisting("OneInstance.ThisProgram"); if (s_ewh != null) { s_ewh.Set(); return; } } catch { } if (s_ewh == null) { s_ewh = new EventWaitHandle(false, EventResetMode.AutoReset, "OneInstance.ThisProgram"); } Thread thread = new Thread(WaitInstanceEvent); thread.IsBackground = true; thread.Start(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); bRun = false; s_ewh.Set(); } static void WaitInstanceEvent(object state) { while (bRun) { s_ewh.WaitOne(); // 윈도우 복원 } } } } </pre> <br /> <a target='_tab' href='http://www.sysnet.pe.kr/bbs/DownloadAttachment.aspx?fid=566&boardid=331301885'>첨부한 예제 코드는 위의 기능이 정상적으로 구현된 프로젝트</a>입니다.<br /> <br /><br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
1361
(왼쪽의 숫자를 입력해야 합니다.)