336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
[DllImport("user32.dll")]
static extern bool PostMessage(IntPtr hWnd, uint msg, int wParam, int lParam);
const uint WM_USER_CUSTOM = WM_USER + 8423;
public void Post()
{
// Get Processes
var processes = Process.GetProcessesByName("notepad.exe");
// Main part
foreach (Process p in processes)
if (p.ProcessName == "notepad.exe")
{
PostMessage(p.MainWindowHandle, WM_USER_CUSTOM, 0, 0);
}
}
출처 : http://stackoverflow.com/questions/6927431/c-sharp-using-postmessage
'Programming > C#' 카테고리의 다른 글
async, await를 이용한 비동기 프로그래밍 (0) | 2015.09.17 |
---|---|
Aggregate() vs string.Join() (0) | 2015.04.09 |
Random Class (0) | 2015.02.08 |
SynchronizationContext 가 추구하는 동기화 #1 (0) | 2015.02.07 |
SynchronizationContext 가 추구하는 동기화 #2 (0) | 2015.02.07 |