전체 글 썸네일형 리스트형 C# IPv4, IPv6 string strAddress = "10.10.10.10"; IPAddress adress = IPAddress.Parse(strAddress); if(adress.AddressFamily == AddressFamily.InterNetworkV6) // Check IPv6 { if(adress.IsIPv4MappedToIPv6) //Convert IPv6 to IPv4 adress = adress.MapToIPv4(); } string strMyIP = string.Empty; if (adress.AddressFamily == AddressFamily.InterNetwork) // Check IPv4 { strMyIP = adress.ToString(); if (string.IsNullOrEmpty(s.. 더보기 [MFC]CListCtrl > Selection change There are a few notifications based on what's happening. If you are selecting an item and nothing is selected yet, you will get one LVIF_STATE change notification: uNewState & LVIS_SELECTED. The newly selected item will be found at: pNMListView->iItem If an item is selected before you select a new object, you'll get three state changes: First you will be informed that the previous item in focus .. 더보기 SendMessage C++ to C# using WM_COPYDATA 1. C++ (Sender) typedef struct tagCOPYDATASTRUCT { ULONG_PTR dwData; DWORD cbData; CHAR* lpData; } COPYDATASTRUCT; char strChar[] = "20150601130012.xml"; //전송 할 STRING HWND hWnd = ::FindWindow(NULL, _T("XXXX")); //전송 할 Application Handle COPYDATASTRUCT cpd; cpd.dwData = 0; cpd.cbData = strlen(strChar); cpd.lpData = strChar; ::SendMessage(hWnd, WM_COPYDATA, NULL, (LPARAM)&cpd); 2. C# (Receiver) p.. 더보기 이전 1 2 3 4 ··· 11 다음 목록 더보기