怎样用api函数调出windows的资源管理器窗口(50分)

  • 主题发起人 主题发起人 book789
  • 开始时间 开始时间
B

book789

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样用api函数调出windows的资源管理器窗口
 
参考参考Delphi6里面的那些"资源管理器窗口"的控件的源代码就知道了.
 
shellexecute可以
shellexecute(hinstance,'open','http://delphibbs.com',nil,nil,sw_shownormal);
 
ShellExecute(handle, 'explore', path, NULL, NULL, SW_SHOWNORMAL);
 
agree with antic_ant
 
同意 antic_ant 的意见
 
不好意思,看错了,我还以为你要调用IE
 
呵 就是它了
 
winexec('explorer.exe c:/',SW_SHOWNORMAL)
 
shellexecute('explorer.exe',sw_show);
不知道你问的是什么意思,我想这不是你要的答案吧?
 
后退
顶部