일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- debug banner
- showDialog
- c
- peaks
- dart:io
- flutter button
- array
- flutter tcpip server
- flutter tcpip client
- Server
- TCPIP
- debugShowCheckedModeBanner
- ListView.build
- AlertDialog
- flutter
- Listview filtering
- ubuntu 19 한글 입력
- Properties.Settings.Default
- Today
- Total
목록Utils (34)
Louie De Janeiru
한참을 해메었다.아래 링크대로 하니 된다. https://bytes.com/topic/c-sharp/answers/240471-system-messaging +++++++++++++++++++++++++++++++++++++++++++++++++++++++++Hello everyone I'm trying to use the namespace using System.Messaging. My Visual Studio.Net could not recognize this namespace. Should I have to install a plug in or what should I do to have this piece of demo works ==>Hi, You have to add a reference to..
Visual Studio에서 c- code정렬은Ctrl + A 후 Ctrl + K, F
=AVERAGE('1:151'!C33) =MAX('1:151'!C34) =MIN('1:151'!C35)
Graphics의 CopyFromScreen()함수가 주역 //현재 폼 캡쳐 private void btnCapture_Click(object sender, EventArgs e) { ScreenCapture(this.Width, this.Height, this.Location); } //Full Screen 캡쳐 private void btnFullScreenCapture_Click(object sender, EventArgs e) { ScreenCapture(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height, new Point(0, 0)); } //캡쳐 함수 private void ScreenCapture(i..
fputc를 새로 만들어주면 printf를 사용할 수 있다
float 표현시에 ERRORf 등으로 깨어져 나오는 경우가 있다.참 난감한데... sprintf를 이용하여 buffer에 log 저장하고 printf("%s\n", buffer); 를 이용하면 해결된다.
Printf 함수의 자리수http://spaurh.egloos.com/4512177printf() 함수의 출력 자릿수 1. %자릿수d printf("%5d",7); : 총 5자리로 표현이 되며, 공백 공백 공백 공백 7로 채워진다. 2. %0자릿수d printf(%05d", 7); : 총 5자리로 표현되는 점은 위와 같으나 빈자리는 0으로 채워진다. 그래서 00007 로 채워진다. 3. %-자릿수d printf("%-5d", 7); : 총 5자리로 표현되는 점은 위와 같으나 비록 숫자라고 하더래도 좌측부터 채워진다. 즉, 7 공백 공백 공백 공백 으로 채워진다. 4. %자릿수c printf("%5c", 'A'); : 총 5자리로 표현되고, 공백 공백 공백 공백 A 가 출력됩니다. 5. %-자릿수c pri..