我用shellexecute命令访问网站,使用的是vb6,其中shell32.dll,刚刚升级
文件大小为2.27M,
声明为:
Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpoperation As String, ByVal lpfile As String, ByVal lpparameters As String, ByVal lpdirectory As String, ByVal nshowcmd As Long) As Long程序命令为:
 lngResult=ShellExecute (Me.hwnd, "open", "http://www.sina.com.cn", vbNullString, vbNullString, &H1)
运行结果lngResult=2,程序没有反映,不显示ie窗口
我其他机器上运行正常!
我怀疑是shell32.dll的问题,可是不知如何处理?