您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. DELPHI7.0获取硬盘、CPU、网卡序列号

  2. DELPHI7.0获取硬盘、CPU、网卡序列号 //调用示例 procedure TForm1.Button1Click(Sender: TObject); begin Edit3.Text:=strpas(GetIdeSerialNumber);//取硬盘号 Edit2.text:=GetCPUIDStr;//CPU系列号 edit4.Text:=NBGetAdapterAddress(12);//非集成网卡 Edit1.text:=MacStr;//集成和非集成网卡 end;
  3. 所属分类:Delphi

    • 发布日期:2009-09-08
    • 文件大小:169kb
    • 提供者:myzz02
  1. delphi7 cosesoft打印源代码

  2. unit CodeSoft; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, DdeMan, ComObj, stdctrls, IniFiles; type TDMCodeSoft = class(TDataModule) CSDdeClientConv: TDdeClientConv; procedure DataModuleCreate(Sender: TOb
  3. 所属分类:QT

    • 发布日期:2010-11-19
    • 文件大小:7kb
    • 提供者:biossave
  1. 学生上机游戏专用监控系统

  2. unit Unit3; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xpWindow, StdCtrls, AAFont, AACtrls; type TForm3 = class(TForm) Label2: TLabel; xpWindow1: TxpWindow; AAFadeText1: TAAFadeText; private {
  3. 所属分类:其它

    • 发布日期:2011-11-10
    • 文件大小:986kb
    • 提供者:wanciden
  1. 获取鼠标选中的文字

  2. 说明: 获取鼠标选中的文字,支持IE,Word,PPT等. 声明: function _GetSelectedText: PChar; stdcall; external 'GetSelectedText.dll'; 例题: var wText: string; begin wText:=StrPas(_GetSelectedText); ...... end;
  3. 所属分类:桌面系统

    • 发布日期:2012-10-25
    • 文件大小:184kb
    • 提供者:ideation_shang
  1. Delphi XE里的StrPas

  2. Delphi XE里的StrPas要注意哦 废话不多说了,直接上例子解说: procedure TForm1.Button1Click(Sender: TObject); var aa: array[0..1]of AnsiChar; bb1: string; begin aa[0] := AnsiChar('1'); aa[1] := AnsiChar('2'); bb1 := StrPas(aa); ShowMessage(bb1); //这里显示不正确 end;
  3. 所属分类:Delphi

    • 发布日期:2013-04-03
    • 文件大小:925byte
    • 提供者:w_simon
  1. DELPHI一系列开发技巧

  2. ◇[DELPHI]执行程序外文件 WINEXEC//调用可执行文件 winexec('command.com /c copy *.* c:\',SW_Normal); winexec('start abc.txt'); ShellExecute或ShellExecuteEx//启动文件关联程序 function executefile(const filename,params,defaultDir:string;showCmd:integer):THandle; ExecuteFile('C
  3. 所属分类:Delphi

    • 发布日期:2008-10-30
    • 文件大小:18kb
    • 提供者:firstzky
  1. 获取硬盘序列号的源码

  2. 获取硬盘序列号的源码,直接可使用 Edit1.Text := strpas(GetIdeSerialNumber);
  3. 所属分类:Delphi

    • 发布日期:2008-12-09
    • 文件大小:163kb
    • 提供者:tianbog
  1. Delphi XE里的StrPas要注意哦.mht

  2. Delphi XE里的StrPas要注意哦.mht
  3. 所属分类:Delphi

    • 发布日期:2019-06-07
    • 文件大小:8kb
    • 提供者:chunyangsuhao
  1. StrPCopy与StrPas功能正好相反,作用是与C语言字符串和Delphi的String相互转化 .mht

  2. StrPCopy与StrPas功能正好相反,作用是与C语言字符串和Delphi的String相互转化 .mht
  3. 所属分类:Delphi

    • 发布日期:2019-06-27
    • 文件大小:8kb
    • 提供者:chunyangsuhao
  1. Delphi7 读取 windows7 IE收藏夹内容.rar

  2. Delphi7 读取 windows7 IE收藏夹内容,这个是获取收藏夹里面的网址,不显示网址标题,如下图所示的效果,要用到标题了自己修改代码吧。   获取收藏夹主要是以下代码实现:   SHGetSpecialFolderLocation(Handle, CSIDL_FAVORITES, pidl);   SHGetPathFromIDList(pidl, favpath);   Memo1.Lines := GetFavorites(StrPas(FavPath));   获取在favou
  3. 所属分类:其它

  1. Delphi 7 获取窗口文本的例子.rar

  2. Delphi 7 获取窗口文本的例子,只要是当前窗口中的内容,都可以获取到,可能会比较乱,获取的过程被封装在按钮事件中,当用户点击后,执行事件中规定的命令:   procedure TForm1.BitBtn1Click(Sender: TObject);   var    H_window:HWND;    Text:array[0..255] of char;   begin    H_window:=GetWindow(Handle,GW_HWNDFIRST);    While H_w
  3. 所属分类:其它