일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- MEAN Stack
- 딥러닝
- MX Component
- 윈도우10
- tensorflow
- 오라클
- matplot
- MSSQL
- pymssql
- windows10
- 티스토리 초대장
- 장고
- MSSQL PYTHON
- M2M
- rs485
- django
- oracle
- scrapy
- Visual Studio Code
- 파이썬
- vscode
- rs422
- c#
- Serial
- 텐서플로우
- Python
- 크롤링
- 자본주의
- PYTHON MSSQL
- sql developer
Archives
- Today
- Total
목록중복실행 (1)
안까먹을라고 쓰는 블로그
[C#] 프로그램 중복실행 방지
1234567891011121314151617181920212223242526272829303132333435using System.Threading; /// /// 프로그램 중복실행 체크/// /// 중복실행 체크할 프로그램이름/// true - 실행안됨 / false - 실행중public bool IsProgramExcute(string ProgName){ bool IsExcute; Mutex mutext = new Mutex(true, ProgName, out IsExcute); if (IsExcute) return true; // 실행안됨 else return false; // 실행중} /// /// Form Load Function/// /// /// private void frmDolphine..
Language/C#
2012. 12. 11. 18:13