Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- advColumnGrid
- rank
- 델파이
- dbadvgrid
- Delphi
- 백준
- python 3.7
- python3
- declare
- HTML
- MSSQL
- TMS
- COMMIT
- c#
- GIT
- anaconda3
- 중복제거
- templates
- delphi 10.3
- pyhcarm
- hackerrank
- pythonanywhere
- blog
- Django
- Visual Studio
- PyCharm
- queryset
- github
- get_object_or_404
- Push
Archives
- Today
- Total
목록FindWindow (1)
DevHyun
프로세스를 종료시키는 방법
1. kill private static void killps(string processName) { // 프로세스 kill 메소드 Process[] process = Process.GetProcessesByName(processName); Process currentProcess = Process.GetCurrentProcess(); foreach (Process p in process) { if (p.Id != currentProcess.Id) p.Kill(); } } processName은 보통 fom 이름일 경우가 많기 때문에 사용은 아래와 같이 하면 됨. killps(this.Text); 2. sendmessage // dll 참조 선언 [DllImportAttribute("User32.dll"..
C#
2023. 11. 9. 10:26