'ID 구하기
Dim p As Process()
Dim pid As Long
p = Process.GetProcessesByName("notepad")
pid = p(0).Id
'핸들값 구하기
Private Declare Function FindWindow Lib "user32.dll" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Int32
Dim hNote As Long = FindWindow("notepad", vbNullString)
'p(0).handle 는 왜 안될까
'프로그래밍언어 > VB.NET' 카테고리의 다른 글
[스크랩] 웹소스 가져오는 방법 (0) | 2013.02.23 |
---|---|
레지스트리 세팅저장 (0) | 2013.02.21 |
메모장에 텍스트 보내기 (0) | 2013.02.16 |
Message Queues (Windows) (0) | 2013.02.16 |
핫키 설정하기 (0) | 2013.02.14 |