Welcome![Sign In][Sign Up]
Location:
Search - shortcut

Search list

[Mathimatics-Numerical algorithmsshortcut.zip

Description: 地图的最短路径搜索的A*算法实现
Platform: | Size: 6775 | Author: | Hits:

[GUI DevelopShortCut.rar

Description:
Platform: | Size: 33483 | Author: | Hits:

[ListView/ListBoxDOSgssc

Description: 这是一本非常实用的书籍,写明了成为DOS高手的捷径-This is a very practical book, written in the master DOS as a shortcut
Platform: | Size: 397071 | Author: 龙巨波 | Hits:

[Windows Develop怎样获取快捷方式所指向的目标文件名

Description: 怎样获取快捷方式所指向的目标文件名? HRESULT hres IShellLink* psl HRESULT hres IShellLink* psl char szGotPath[MAX_PATH] char szDescription[MAX_PATH] WIN32_FIND_DATA wfd OleInitialize(0) hres = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, (LPVOID*)&psl) if (SUCCEEDED(hres)) { IPersistFile* ppf hres = psl->QueryInterface(IID_IPersistFile, (void**)&ppf) if (SUCCEEDED(hres)) { WCHAR wsz[MAX_PATH] char lpszLinkFile[MAX_PATH] //这里存放的是快捷方式的路径 if(MultiByteToWideChar(CP_ACP, 0, lpszLinkFile, -1, wsz, MAX_PATH)==0) return hres = ppf->Load(wsz, STGM_READ) if (SUCCEEDED(hres)) { hres = psl->Resolve(m_hWnd, 0) if (SUCCEEDED(hres)) { hres = psl->GetPath(szGotPath, MAX_PATH, (WIN32_FIND_DATA*)&wfd, SLGP_SHORTPATH)-Get the path file of the Shortcut, using IShellLink.
Platform: | Size: 3317 | Author: | Hits:

[Other resourceC++编程常用捷径

Description: VC编程常用捷径 VC变成常用的一些捷径1-68 例如:1. 如何获取应用程序的 实例句柄? 应用程序的 实例句柄保存在CWinAppIm_hInstance 中,可以这么调用 AfxGetInstancdHandle获得句柄. Example: HANDLE hInstance=AfxGetInstanceHandle() -VC common programming shortcut VC into some commonly used shortcut 1-68, for example : 1. How to obtain application examples handle application examples in CWinAppIm_hInstance handle preservation, so it was called AfxGetInstancdHandle handle. Example : HANDLE hInstance = AfxGetInstanceHandle ()
Platform: | Size: 48406 | Author: 李白 | Hits:

[Printing program98BOOT

Description: Delphi的主窗口位于屏幕的上端,包括Menu(菜单)、Speed Bar(加速条)和Component Panel(部件选项板)。Menu是下拉式主菜单。Speed Bar位于主窗口的左下端,由两排共14个加速按钮组成。这些按钮是菜单功能的快捷方式,各种图标直观地表示了它能执行的动作ponent Panel由一行、若干页对象按钮所组成,利用它来选择需要的部件并将它放到窗体中去。  -Delphi main window screen at the top, including the Menu (menu), Speed Bar (acceleration) and the Component Panel (components option board). Menu is the main drop-down menu. Speed Bar located at the lower left edge of the window by two platoon, a total of 14 components accelerate button. These functional menu button is a shortcut to various visual icon said it was able to execute the moves by his ponent Panel, a number of pages comprising Object button, use it to choose the components into the form it will go.
Platform: | Size: 992893 | Author: 小许 | Hits:

[Other resourceQuartTreeNode

Description: qt实现四叉树搜索,书是讲解Windows 操作系统内部机制的专著,作者从基本概念入手,全面系统地介绍了Windows的各种基本构件,如进程、线程、DLL和内存管理等,并列举了大量应用程序,精辟地分析了构件的使用方法,为掌握Windows 编程技巧提供了一条有效的捷径。对于不同水平的Windows 编程人员来说,本书都具有极好的参考价值。-qt achieve quadtree search, book on the Windows operating system is an internal mechanism dedicated to the authors start from the basic concept, a comprehensive and systematic introduction of the Windows basic elements, such as processes, threads, memory management and DLL, and listed a large number of applications, and incisive analysis of the constitutive pieces of the use, in order to keep Windows programming skills provided an effective shortcut. For different levels of Windows programmers, this book is of great reference value.
Platform: | Size: 3533 | Author: zww | Hits:

[Other resourcewindows核心编程指南

Description: 本书是讲解Windows 操作系统内部机制的专著,作者从基本概念入手,全面系统地介绍了Windows的各种基本构件,如进程、线程、DLL和内存管理等,并列举了大量应用程序,精辟地分析了构件的使用方法,为掌握Windows 编程技巧提供了一条有效的捷径。对于不同水平的Windows 编程人员来说,本书都具有极好的参考价值。-book on the Windows operating system is an internal mechanism dedicated to the authors start from the basic concept, a comprehensive and systematic introduction of the Windows basic elements, such as processes, threads, memory management and DLL, and listed a large number of applications, and incisive analysis of the components of the methodology used, in order to keep Windows programming skills provided an effective shortcut. For different levels of Windows programmers, this book is of great reference value.
Platform: | Size: 36808113 | Author: 里冬眼 | Hits:

[OtherShortCut

Description: VC++建立桌面或开始菜单快捷方式,初学者下载,大牛绕道。-VC++ create a desktop or Start menu shortcut, beginners download, Daniel Bypass.
Platform: | Size: 19456 | Author: huajingtian | Hits:

[Windows DevelopShortCut

Description: VC++为你的应用程序创建和删除快捷方式,添加开始菜单程序组菜单,这里首先利用OLE通过调用CoCreateInstance()函数建立一个IID_IShellLink实例,并同时得到其接口指针。利用这个接口指针可以对其各项属性进行设置。为了使这些信息以快捷方式的数据文件(*.lnk)格式保存起来,还需要从IID_IShellLink对象取得其 IID_IPersistFile接口指针,以便于调用其成员函数Save(),保存前面设置的信息。删除快捷方式就更简单些了,具体请参阅代码吧。-VC++ applications you create and delete a shortcut menu to add to the Start menu program group, where the first to use OLE to create a IID_IShellLink instance by calling CoCreateInstance () function, and also get their interface pointers. Using this interface pointer can be set to its various properties. In order to make these information shortcuts data files (*. Lnk) saved format, also need to be obtained from its IID_IPersistFile IID_IShellLink object interface pointer, in order to call its member function Save (), save the information previously set. Remove shortcuts even simpler, the specific code, please refer to it.
Platform: | Size: 15360 | Author: jpudn84 | Hits:

[File FormatThe-LabVIEW-shortcut-key

Description: 整理了LabVIEW软件用于程序编写时的大多数快捷键的用法,可以提高大家的编程速度。 -Finishing the LabVIEW software for programming the most shortcut key usage, can improve the programming speed you.
Platform: | Size: 12288 | Author: 张建锋 | Hits:

[e-languagedesktop-shortcut

Description: 易语言程序 易语言源码模块 设置桌面快捷方式颜色-Easy language program easy language source code module to set the color of the desktop shortcut
Platform: | Size: 2048 | Author: | Hits:

[OtherVC-Shortcut

Description: VC开发的小工具,用于创建Windows操作系统下的快捷方式-VC ShortCut
Platform: | Size: 26624 | Author: meiya | Hits:

[Delphi VCLDesktop-Shortcut

Description: Delphi Desktop Shortcut Example -
Platform: | Size: 24576 | Author: pedro | Hits:

[LabViewCustomizing-Shortcut-Menus

Description: 简单的Labview程序,菜单与工具栏的自定义快捷菜单-Simple Labview program, menu and toolbar custom shortcut menu
Platform: | Size: 25600 | Author: 郑景仁 | Hits:

[Shell apiDELET-SHORTCUT-FILES

Description: DELETE SHORTCUT FROM ANY DIRECTORY
Platform: | Size: 1024 | Author: SEIFOO1440 | Hits:

[Otherqqucational-shortcut-file

Description: shortcut analysis,分析快捷方式的文件结构,仅供学习参考-Shortcut analysis, analyze the shortcut file structure, and for educational purposes only
Platform: | Size: 4096 | Author: BM-17605 | Hits:

[Windows Develop禁用Ctrl+Alt+Del源码

Description: The code shows how to disable Ctrl+Alt+Del shortcut in windows system.
Platform: | Size: 150528 | Author: shawn5013 | Hits:

[OtherIDEA shortcut

Description: IntelliJ IDEA是java语言开发的集成环境,附件是IntelliJ IDEA的所有快捷键(IntelliJ IDEA shortcut)
Platform: | Size: 109568 | Author: corair | Hits:

[CADCreate a Shortcut Menu

Description: create shortcut menu
Platform: | Size: 995328 | Author: farseer | Hits:
« 1 2 3 45 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net