HyprLink.cpp
上传用户:geanq888
上传日期:2007-01-03
资源大小:316k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////
  2. // 1998 Microsoft Systems Journal
  3. // If this code works, it was written by Paul DiLascia.
  4. // If not, I don't know who wrote it.
  5. //
  6. #include "StdAfx.h"
  7. #include "HyprLink.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. //////////////////
  14. // Navigate link -- ie, execute the file
  15. // Returns instance handle of app run, or error code (just like ShellExecute)
  16. //
  17. HINSTANCE CHyperlink::Navigate()
  18. {
  19. return  IsEmpty() ? NULL :
  20. //   ShellExecute(NULL,"open",strLink,NULL,NULL,SW_SHOWNORMAL);
  21. // ShellExecute(::GetDesktopWindow(), _T("open"), *this, 0, 0, SW_SHOWNORMAL);
  22. ShellExecute(NULL, "open", *this, NULL, NULL, SW_SHOWNORMAL);
  23. }