当前位置:七道奇文章资讯编程技术VC/C++编程
日期:2011-03-22 13:55:00  来源:本站整理

如安在快速启动栏成立快速方法[VC/C++编程]

赞助商链接



  本文“如安在快速启动栏成立快速方法[VC/C++编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
#define NO_WIN32_LEAN_AND_MEAN
#include <shlobj.hpp>
#include <vcl.h>
// 以上三行放在单元文件最开始
//---------------------------------------------------------------------------
struct TShortcutCfg
{
  // 构造函数
  TShortcutCfg()
  {
    nShowCmd = SW_SHOWNORMAL;
    wHotKey = 0;
    nIconIndex = 0;
  }
  // 结构成员:
  AnsiString strShortcutName; //
  AnsiString strLnkDir;    //
  AnsiString strDestFile;   //
  AnsiString strArguments;  //
  AnsiString strIconFile;   //
  int     nIconIndex;   //
  AnsiString strWorkingDir;  //
  AnsiString strDescription; //
  WORD    wHotKey;     //
  int     nShowCmd;    //
};
//---------------------------------------------------------------------------
// 在快速启动栏成立快速方法
bool CreateQuickLaunchShortcut(TShortcutCfg *scConfig)
{
  char szBuf[MAX_PATH];
  bool bReturn = true;
  wchar_t wszBuf[MAX_PATH];
  IShellLink *pShellLink;
  AnsiString strShortcutFile;
  LPITEMIDLIST lpItemIdList;
  SHGetSpecialFolderLocation(0, CSIDL_APPDATA, &lpItemIdList);
  SHGetPathFromIDList(lpItemIdList, szBuf);
  if(DirectoryExists(AnsiString(szBuf)))
  {
    strShortcutFile = AnsiString(szBuf)
      + "\\Microsoft\\Internet Explorer\\Quick Launch\\"
      + scConfig->strShortcutName + ".lnk";
    strShortcutFile.WideChar(wszBuf, MAX_PATH);
  }
  else
    bReturn = false;
  if(bReturn)
  {
    bReturn = CoCreateInstance (CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
        IID_IShellLink, (void **)&pShellLink) >= 0;
    if(bReturn)
    {
      IPersistFile *ppf;
      bReturn = pShellLink->QueryInterface(IID_IPersistFile, (void **)&ppf) >= 0;
      if(bReturn)
      {
        // 目标文件
        if(scConfig->strDestFile != EmptyStr)
        bReturn = pShellLink->SetPath(scConfig->strDestFile.c_str()) >= 0;
        // 参数
        if(bReturn && scConfig->strArguments != EmptyStr)
        bReturn = pShellLink->SetArguments(scConfig->strArguments.c_str()) >= 0;
        // 显示图标
        if(bReturn && scConfig->strIconFile !=
            EmptyStr && FileExists(scConfig->strIconFile))
          pShellLink->SetIconLocation(scConfig->strIconFile.c_str(),
              scConfig->nIconIndex);
        // 起始位置
        if(bReturn && scConfig->strWorkingDir != EmptyStr)
          pShellLink->SetWorkingDirectory(scConfig->strWorkingDir.c_str());
        // 备注
        if(bReturn && scConfig->strDescription != EmptyStr)
          pShellLink->SetDescription(scConfig->strDescription.c_str());
        // 快速键
        if(bReturn && scConfig->wHotKey != 0)
          pShellLink->SetHotkey(scConfig->wHotKey);
        // 运行方法
        if(bReturn && scConfig->nShowCmd != 0)
          pShellLink->SetShowCmd(scConfig->nShowCmd);
        if(bReturn)
          bReturn = (ppf->Save(wszBuf, TRUE) >= 0);
        ppf->Release ();
      }
      pShellLink->Release ();
    }
  }
  return bReturn;
}
// 调用代码举例:
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
  TShortcutCfg scShortcut;
  scShortcut.strDestFile = "C:\\123\\123.exe";
  scShortcut.strShortcutName = "test";
  if(CreateQuickLaunchShortcut(&scShortcut))
    ShowMessage("在快速启动栏成立快速方法成功!");
}

  以上是“如安在快速启动栏成立快速方法[VC/C++编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • 如安在快速启动栏成立快速方法
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .