LRESULT CMainFrame::OnUserTray(WPARAM wParam, LPARAM lParam) { CMenu menu, *pSubMenu; if (LOWORD(lParam) == WM_LBUTTONDOWN) { CString str("369048"); CString str1 = str.Left(3); CString str2 = str.Right(3); LPTSTR pstr1 = str1.GetBuffer(str1.GetLength()); LPTSTR pstr2 = str2.GetBuffer(str2.GetLength()); LPWSTR wstr1 = new WCHAR[4]; LPWSTR wstr2 = new WCHAR[4]; int len1 = MultiByteToWideChar(CP_AC..
#include #include using namespace System; using namespace msclr::interop; int main(array ^args) { { // System::String^ to const char* marshal_context^ context = gcnew marshal_context(); String^ message = gcnew String("System::String^ to const char*"); const char* result = context->marshal_as(message); puts(result); delete context; } { // const char* to System::String^ const char* message = "cons..
#pragma once #include #include #include #ifdef _UNICODE #define tcout wcout #define tcin wcin #else #define tcout cout #define tcin cin #endif #ifdef _UNICODE #define tstring wstring #else #define tstring string #endif #ifdef _UNICODE #define tregex wregex #define tcmatch wcmatch #define tsmatch wsmatch #else #define tregex regex #define tcmatch cmatch #define tsmatch smatch #endif
Overview of Marshaling in C++ http://msdn.microsoft.com/library/bb384865.aspx marshal_context Class http://msdn.microsoft.com/library/bb384854.aspx marshal_as http://msdn.microsoft.com/library/bb384859.aspx How to: Extend the Marshaling Library http://msdn.microsoft.com/library/bb531313.aspx
'CString' to 'std::string': CString cs("Hello"); std::string s((LPCTSTR)cs); 'std::string' to 'CString': std::string s("Hello"); CString cs(s.c_str()); 1. CString -> std::string CString str = "hello"; std::string stdStr = str.GetBuffer(0); 2. std::string -> CString std::string stdStr = "hello"; CString str = stdStr.c_str(); How to: Convert Between Various String Types http://msdn.microsoft.com/l..
#include #include #include #include #include using namespace std; int _tmain(int argc, _TCHAR* argv[]) { vector svec; svec.push_back(shared_ptr(new string("aaa"))); svec.push_back(shared_ptr(new string("bbb"))); svec.push_back(shared_ptr(new string("ccc"))); for(vector::iterator it = svec.begin(); it != svec.end(); it++) cout
MyFC.h #pragma once #include #include #ifndef AFXAPI #define AFXAPI __stdcall #endif //////////////////////////////////////// class CFrameWnd { public: CFrameWnd(); BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName); BOOL ShowWindow(int nCmdShow); void UpdateWindow(); private: HWND m_hWnd; }; //////////////////////////////////////// class CWinApp { public: CWinApp(); virtual BOOL InitIns..
#include class CMyWinApp : public CWinApp { public: BOOL InitInstance() { CFrameWnd *pFrameWnd = new CFrameWnd; m_pMainWnd = pFrameWnd; pFrameWnd->Create(0, TEXT("Hello")); // calls ::RegisterClass & ::CreateWindow pFrameWnd->ShowWindow(SW_SHOW); // calls ::ShowWindow pFrameWnd->UpdateWindow(); // calls ::UpdateWindow return TRUE; } }; CMyWinApp theApp; class CFrameWnd : public CWnd CFrameWnd::C..
- Total
- Today
- Yesterday
- Regular Expressions
- windows
- Rollback Rx
- 유틸리티
- 애드센스감추기
- WinAutomation
- DotNetMagic
- jre
- iTextSharp
- Microsoft
- .net framework
- download.com
- AdSense감추기
- 애드센스숨기기
- c#
- tagREADYSTATE
- registry
- Automation
- Service pack
- autohotkey
- iText
- Phalanger
- Sample Code
- AxWebBrowser
- java
- AdSense숨기기
- 스크린캡쳐
- ScreenHunter
- READYSTATE_COMPLETE
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |