프로그래밍언어/Python

Python)계산기 SendMessage예제 Ctypes

부산딸랑이 2014. 11. 6. 12:21

import ctypes
SendMessage = ctypes.windll.user32.SendMessageW
FindWindow = ctypes.windll.user32.FindWindowW
FindWindowEx = ctypes.windll.user32.FindWindowExA

hNote = FindWindow(None, '계산기')
print(hex(hNote))
hNoteEdit = FindWindowEx(hNote, 0, b'CalcFrame', None)
print(hex(hNoteEdit))
hNoteEdit = FindWindowEx(hNoteEdit, 0, b'#32770', None)
print(hex(hNoteEdit))
hNoteEdit = FindWindowEx(hNoteEdit, 0, b'Static', '0')
print(hex(hNoteEdit))
res = SendMessage(hNoteEdit, 0xC, 0, "계산기")
print(res)




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

http.server  (0) 2014.11.11
파일복사,이동  (0) 2014.11.10
Python) 메모장에 텍스트보내기 파이썬3내장 ctypes  (0) 2014.11.06
(Ctypes)winAPI_user32  (0) 2014.11.06
프로세스종료  (0) 2014.10.29