일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- tensorflow
- MX Component
- M2M
- rs422
- 텐서플로우
- vscode
- pymssql
- c#
- 크롤링
- 윈도우10
- matplot
- scrapy
- MEAN Stack
- 장고
- Serial
- oracle
- 자본주의
- 티스토리 초대장
- Python
- Visual Studio Code
- rs485
- 오라클
- MSSQL PYTHON
- 파이썬
- PYTHON MSSQL
- windows10
- MSSQL
- sql developer
- 딥러닝
- django
Archives
- Today
- Total
목록delay (1)
안까먹을라고 쓰는 블로그
[C#] 딜레이 주기 (Feat. 윈도우폼에 영향없이)
딜레이 함수 private void Delay_Manual(int iDelay) { // 현재시같은 넣어준다. DateTime ThisMoment = DateTime.Now; // 딜레이 시간에 맞춰 Term값을 구한다. TimeSpan duration = new TimeSpan(0, 0, 0, 0, iDelay * 1000); // 딜레이 시간에 맞춘 Term이 더해진, 종료시간을 구한다. DateTime AfterWards = ThisMoment.Add(duration); while (true) { ThisMoment = DateTime.Now; // 현재 메시지 큐에있는 모든 Windows 메시지를 처리합니다. System.Windows.Forms.Application.DoEvents(); // 종..
Language/C#
2020. 9. 14. 14:50