일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- System.IndexOutOfRangeException
- 프로토타입
- C#
- MFC
- postgresql
- show
- POST
- multipart/form-data
- C# sprintf
- WinForms
- HeidiSQL
- IndexOutOfRangeException
- wss 파싱
- drop
- 정처기 실기
- Telerik
- 정보처리기사 실기
- restapi
- MariaDB
- c# 클로저
- url파싱
- git commit vi
- c# for
- create
- VisualStudio2019
- 정보처리기사
- Git
- url 파싱
- 정처기
- UI
- Today
- Total
목록C,C++ (2)
달짱달짱
1. SMTP 소스 다운로드 https://www.codeproject.com/Articles/98355/SMTP-Client-with-SSL-TLS SMTP Client with SSL/TLS C++ SMTP client, support SSL and TLS encrypted connection to SMTP server www.codeproject.com 2. Csmtp.sln 파일을 열어 모두 로드 3. Openssl 다운로드 및 stmp 의 openssl 을 최신버전으로 변경 https://m.blog.naver.com/PostView.nhn?blogId=ssabro_k&logNo=220761231627&proxyReferer=https%3A%2F%2Fwww.google.com%2F 윈도우 용 O..
* map - 헤더 : #include - 선언 : map mapName - 삽입 : mapName[key] = value * vector - 헤더 : #include - 선언 : vector vectorName - 전체 삭제 : vectorName.clear( ) - 삽입 : push_back(값) - 사이즈 : vectorName.size( ) #include #include #include #include using namespace std; map CountryMap; string FindCountryByFood(string FoodName){ //Food가 일치하는 Country 반환 map::iterator iter; string CountryName; for (iter = CountryMap..