vb.net 调用DLL问题
比如我要调用user32.dll中的GetWindowThreadProcessId我要怎么写?详细点...
比如我要调用user32.dll中的GetWindowThreadProcessId
我要怎么写? 详细点 展开
我要怎么写? 详细点 展开
2个回答
展开全部
Public Declare Function GetForegroundWindow Lib "user32.dll" () As IntPtr
Public Declare Function GetWindowThreadProcessId Lib "user32.dll" (ByVal hwnd As IntPtr, ByRef ProcessId As Integer) As Integer
'这样获取的数据是不是你要的! 但不会报错。
Dim hwnd As IntPtr = GetForegroundWindow
Dim ProcessId As Integer
GetWindowThreadProcessId(hwnd , ProcessId
Public Declare Function GetWindowThreadProcessId Lib "user32.dll" (ByVal hwnd As IntPtr, ByRef ProcessId As Integer) As Integer
'这样获取的数据是不是你要的! 但不会报错。
Dim hwnd As IntPtr = GetForegroundWindow
Dim ProcessId As Integer
GetWindowThreadProcessId(hwnd , ProcessId
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询