.h 파일에 아래 함수 선언 int CopyTextToClipboard(const char *ap_string); .cpp에 아래 코드 작성 // 복사 코드 CString strTemp = _T("test"); const char* convertMsg;CT2A ascii(strTemp, CP_UTF8);convertMsg = ascii.m_psz;CopyTextToClipboard(convertMsg); // 복사 함수 int CTestDlg::CopyTextToClipboard(const char *ap_string){ // 저장할 문자열의 길이를 구한다. ('\0'까지 포함한 크기) int string_length = strlen(ap_string) + 1; // 클립보드로 문자열을 복사하기 위하여 ..
The Double class wraps a value of the primitive type double in an object. An object of type Double contains a single field whose type is double. In addition, this class provides several methods for converting a double to a String and a String to a double, as well as other constants and methods useful when dealing with a double. 1. double 형 숫자를 String으로 변환 String strTemp = Double.toString(1.23456..
- Total
- Today
- Yesterday