프로그래밍언어/Python

Python) 메모장에 텍스트보내기 파이썬3내장 ctypes

부산딸랑이 2014. 11. 6. 11:38

import ctypes


#winapi 함수들선언
SendMessage = ctypes.windll.user32.SendMessageW
FindWindow = ctypes.windll.user32.FindWindowW
FindWindowEx = ctypes.windll.user32.FindWindowExA



#Edit자식핸들구해서 SendMessage까지

hNote = FindWindow("Notepad", None)
hNoteEdit = FindWindowEx(hNote, 0, b'Edit', None)
res = SendMessage(hNoteEdit, 0xC, 0, "테스트중이에요 뿌잉뿌잉")

'프로그래밍언어 > Python' 카테고리의 다른 글

파일복사,이동  (0) 2014.11.10
Python)계산기 SendMessage예제 Ctypes  (0) 2014.11.06
(Ctypes)winAPI_user32  (0) 2014.11.06
프로세스종료  (0) 2014.10.29
SendMessage  (0) 2014.10.29