win7的64位电脑如何配置使用Notebook?

来源:互联网 发布:hp c7000 网络配置 编辑:程序博客网 时间:2024/05/21 12:08

添加PtrSafe属性,将:
Private Declare Function WinHelp Lib “USER32.DLL” Alias “WinHelpA” (ByVal hWnd As Integer, ByVal lpHelpFile _
As String, ByVal wCmd As Integer, ByVal dwData As String) As Integer
Private Declare Function GetActiveWindow Lib “USER32.DLL” () As Integer
改为:
Private Declare PtrSafe Function WinHelp Lib “USER32.DLL” Alias “WinHelpA” (ByVal hWnd As Integer, ByVal lpHelpFile _
As String, ByVal wCmd As Integer, ByVal dwData As String) As Integer
Private Declare PtrSafe Function GetActiveWindow Lib “USER32.DLL” () As Integer

就是在弹出的vb窗口中的红字用下面的话复制粘贴,然后保存即可

0 0