自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

心随舞动

cityboat的博客http://city193.blog.163.com/

  • 博客(1)
  • 资源 (71)
  • 收藏
  • 关注

原创 163博客http://cityboat.lofter.com/

163博客http://cityboat.lofter.com/

2015-10-08 11:05:37 1371

二维码生成 TDelphiZXingQRCode

// ZXing QRCode port to Delphi, by Debenu Pty Ltd // www.debenu.com // Original copyright notice (* * Copyright 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *)

2019-12-23

数据库链接池_ADO_(异步访问)_XE7_Source.zip

//执行存储过程,并返回结果集 procedure TfrmDirSQLTest.btnOpenStoredProcClick(Sender: TObject); //执行SQL,并返回结果集 procedure TfrmDirSQLTest.btnExecSQLClick(Sender: TObject); //回调函数测试 function DirSQL_CallBackProc(lpParameter:PDirSQLControlInfo):DWORD;stdcall;

2019-12-23

进程跟子进程通讯demo带源码 (1).zip

//d2010之前 procedure TmainForm.SendProcessMsg(mainHandle:THandle;wIdent:Word;sSendMsg:String); //D2010之后 function TmainForm.SendMessageToProcess(hwndSend:HWND;wIdent:word;s:string):boolean; procedure TmainForm.MyMessage(var MsgData: TWmCopyData); var wIdent:Word; lvSize:Cardinal; lvMsg:String; begin wIdent:=HiWord(MsgData.From); lvMsg:=StrPas(pchar(MsgData.CopyDataStruct^.lpData)); lvSize:=MsgData.CopyDataStruct^.cbData; case wIdent of 1000: begin Edit1.Text:= lvMsg; Memo1.Lines.Add('收到登录成功消息:'+lvMsg +',Length='+ IntToStr(lvSize)); end; 1001: begin Memo1.Lines.Add('收到发送消息:'+ lvMsg+',Length='+ IntToStr(lvSize)); end; end; end; end.

2019-12-23

分布式测试_DEMO_Client_Source_20160406_1118 (1).zip

(一)提交到服务器端的控制命令 { "CmdId":"XXX控制命令", //字符类型 "Params": {} //执行此命令所需的参数;根据不同的命令要求,自由定义 } (二) 服务器返回的数据格式 1)命令执行成功后返回的数据格式 { "result":{"desc":"OK","code":0}, //命令执行结果描述,code=0表示执行成功(此处的成功是系统级的;不涉及业务逻辑是否执行正确) "data":{"Now":42455.7374488773,"SrvTime":"2016-03-26 17:41:55.583"} //data字段带回执行结果,其内容根据不同的命令,自行定义 } 2)服务器端未知的控制命令 { "result":{"desc":"Unknown Command CmdId=GetSravTime","code":-3}, //未知命令或者其它错误 "data":{} }

2019-12-23

对AdvStringGrid任意列筛选过滤

{对AdvStringGrid任意列筛选过滤 过滤条件: 大于任意值:'>100' 不小于任意值:'>=100' 等于任意值:'=100' 介于两数之间:'10,100'//两个数之间 等于某字符:'=某字符' 包含某字符:'*某字符*' 不包含某字符:'*某字符*' 开始字符:'始*' 结尾字符:'*尾' }

2019-04-08

百度人脸识别api接口demo

百度人脸识别api接口demo 含源码 请要测试的同学, 自己在百度开通账号及创建应用, 然后用自己的账号信息配置到ini中

2019-01-14

摄像头人脸识别-虹软SDK2.0-10.3编译

摄像头人脸识别-虹软SDK2.0-10.3编译 含源码,不含hrFace.dll 不含hrMath.dll dll文件太大,未打包 转发。

2019-01-14

spcomm 串口控件及例子

spcomm 串口控件及例子 开发语言:C++ 含Exe, 和源码,SPcomm使用说明

2019-01-14

SPComm 支持fmx和vcl

SPComm 支持fmx和vcl 搬运来的,因无串口设备未测.......

2019-01-14

VCLSkin最全皮肤 422套

转发: VCLSkin最全皮肤 422套 因为版本不同,可能有重复 希望大家喜欢

2018-10-18

VclSkin皮肤查看器,SkinBuilder编辑器7.0

VclSkin皮肤查看器, 支持动态切换皮肤,常见的button,pagecontrol,stringgrid SkinBuilder编辑器7.0

2018-10-18

delphi完美登陆/主界面切换

delphi完美登陆/主界面切换 implementation uses LoginUnit; //引用登陆窗体Unit1 {$R *.dfm} procedure TMainForm.Button1Click(Sender: TObject); begin //呼出登陆窗体 LoginUnit.Login(); end;

2018-02-11

DevExpressVCL一键编译安装工具_4.6(共享免费版)- 2016-05-04

DevExpressVCL一键编译安装工具_4.6(共享免费版)

2016-10-23

Delphi SQL查询分析器

Delphi SQL查询分析器

2016-10-23

TMS Component pack Full Demos

TMS Component pack Full Demos

2016-08-13

TMS Component Pack Full Source

TMS Component Pack Full Source

2016-08-13

TMS Component Pack Full Source 8.0.0

TMS Component Pack Full Source 8.0.0

2016-08-13

FastReport5.3.16.FullSource

FastReport5.3.16.FullSource

2016-08-09

TMS Grid 8.0.9 forD7-Dxe10.1-20160731 OK

tmsGrid8.0.9 and XLSio for XE10.1 单文件修改版 全部控件改名:... 耗时一天,改动代码++++行以上 TmsGrid_Xe10.dproj 单文件修改版 TmsGrid_XLS_Xe10.dproj 单文件修改版 Delphi XE 10.1 Bern测试

2016-07-31

NextGrid-20160731-OK 单文件修改版

Berg Soft NextGrid Full Source for XE10.1 单文件修改版 全部控件改名:nx... 耗时一天,改动代码3000+行以上 NxGrid6ALL_XE10.dproj 单文件修改版 Delphi XE 10.1 Bern测试 最新修改时间:2016-07-30

2016-07-31

SQL server强力卸载工具

SQL server强力卸载工具 再也不用发愁SQL卸载问题

2016-07-13

Berg Soft NextGrid Full Source for XE10.1 单文件修改版

Berg Soft NextGrid Full Source for XE10.1 单文件修改版 全部控件改名:nx... 耗时一天,改动代码3000+行以上 NxGrid6ALL_XE10.dproj 单文件修改版 Delphi XE 10.1 Bern测试

2016-07-08

Clean_CompileFile清理delphi临时文件

Clean_CompileFile清理delphi临时文件 清理以下文件 *.~ *.dcu *.bak *.tmp *.bpl *.dcp *.ddp

2016-07-05

StringAlignGrid2.1 for XE10.1

StringAlignGrid2.1 for XE10.1 XE10.1 亲测可用 理论上支持delphi 所有版本

2016-07-03

DB_monitor.rar

检查是否设置了utl_file_dir参数 show parameter utl alter system set utl_file_dir='d:\temp\a' scope=spfile; 安装 sqlplus /nolog conn /as sysdba @?/rdbms/admin/dbmslm.sql @?/rdbms/admin/dbmslmd.sql 使用LogMiner工具 9i: alter system set UTL_FILE_DIR='d:\temp' scope=spfile; 10g: 注意大小写 CREATE DIRECTORY utl AS 'd:\temp'; GRANT EXECUTE ON UTL_FILE_DIR TO a; 生成字典文件(新建表后要刷新) EXECUTE dbms_logmnr_d.build(dictionary_filename => 'orcldict.ora', dictionary_location => 'd:\temp'); 分析在线重作日志文件 EXECUTE dbms_logmnr.add_logfile(LogFileName=>'C:\ORACLE\PRODUCT\10.2.0\ORADATA\ABC\REDO03.LOG',Options=>dbms_logmnr.new); 添加其它文件 EXECUTE dbms_logmnr.add_logfile(LogFileName=>'D:\ORACLE\ORADATA\ORCL\REDO01.LOG',Options=>dbms_logmnr.addfile); 分析离线日志文件 EXECUTE dbms_logmnr.add_logfile(LogFileName=>'E:\Oracle\oradata\sxf\archive\ARCARC09108.001', Options=>dbms_logmnr.new); 使用LogMiner进行日志分析 EXECUTE dbms_logmnr.start_logmnr(DictFileName=>'d:\temp\orcldict.ora'); 或者 EXECUTE dbms_logmnr.start_logmnr(DictFileName=>'D:\temp\orcldict.ora', StartTime=>to_date('2008-06-03 18:00:00','YYYY-MM-DD HH24:MI:SS'), EndTime=>to_date('2008-06-03 19:59:59','YYYY-MM-DD HH24:MI:SS')); 观察分析结果 SELECT to_char(TIMESTAMP, 'YYYY-MM-DD HH24:MI:SS') attime, TABLE_NAME, TABLE_SPACE, SESSION#, SERIAL#, USERNAME, sql_redo FROM v$logmnr_contents where SQL_REDO like '%T1%'; 分析的结果其它会话无法访问 用以下方法转储: create table logmnr3 as select * from GV$LOGMNR_CONTENTS; 结束分析 EXECUTE DBMS_LOGMNR.END_LOGMNR;

2016-06-25

Delphi XE7开发入门教程之DataSnap三层架构篇-第一部分

Delphi XE7开发入门教程之DataSnap三层架构篇-第一部分

2016-06-06

Delphi XE7开发入门教程之DataSnap三层架构篇

Delphi XE7开发入门教程之DataSnap三层架构篇 主要是delphi 开发datasnap的案列 以前积分太多了,现在降下来 5个积分

2016-06-06

OneDelphi OneDelphi是基于Delphi IDE开发的三层中间件, 开源免费, 支持MVC及传统DataSet框

OneDelphi 简介 OneDelphi是基于Delphi IDE开发的三层中间件, 开源免费, 支持MVC及传统DataSet框架, 使用的是Mormot2的HTTP通讯 OneDelphi Cross-Socket 第一版 开源地址: https://gitee.com/cityboat/OnePascal

2023-09-24

virtualTreeview实用使用说明

virtualTreeview实用使用说明 virtualTreeview的各种操作 共17页 delphi

2023-08-26

TMS FMX UI Pack 3.7.3.0 for D10.4

For Delphi XE7, XE8, 10 , 10.1 , 10.2 ,10.3 10.4 Sydney Source Code + Demos ------------------------------------------------------------- In the IDE, select File, Open and browse for TMSFMXPackPkgD*.dproj From the project manager, right click on the TMSFMXPackPkgD*.dproj project and from the menu, choose install In the IDE, select File, Open and browse for TMSFMXPackPkgDED*.dproj From the project manager, right click on the TMSFMXPackPkgDED*.dproj project and from the menu, choose install

2020-06-05

net-tulip-1.1.15-1.x86_64.rar

在线封装和离线封装驱动 net-tulip Description DECchip 21140 Ethernet driver (This driver allows running ESXi as a VM under Microsoft Hyper-V) Author VMware Communities user john117 Vendor (Vendor Code) Digital Equipment Corp. (DEC) Current Version 1.1.15 Supported Devices / PCI IDs 1011:0009 Acceptance Level CommunitySupported Dependencies and Restrictions Depends On: vmkapi_2_1_0_0, com.vmware.driverAPI-9.2.1.0 Compatible With: ESXi 5.0, ESXi 5.1, ESXi 5.5, ESXi 6.0, ESXi 6.5 Does NOT work With: ESXi 6.7 and newer Package Properties Requires MaintMode Live Install Allowed Live Remove Allowed Stateless Ready Overlay Yes No No Yes No Additional links VMware Communities thread about running VMware ESXi inside Hyper-V Build instructions in the above mentioned forums' thread

2019-12-26

net-e1000e-3.1.0.2-glr2.x86_64.rar

在线封装和离线封装驱动 Name net-e1000e (obsolete!) Description Driver for Intel GigaBit NICs (incl. I217/I218/82579LM/82574L and others) Please note that this driver is obsolete, because with ESXi 5.5 Update 3 VMware introduced a newer version of e1000e which supports the same set of devices plus Intel i219 adapters (PCI IDs 8086:156f, 8086:1570, 8086:15b7, 8086:15b8)! Please use this instead. For details read this blog post. Author George L. Roman, VMware forums user GLRoman Vendor (Vendor Code) GLRoman (GLR) Current Version 3.1.0.2-glr2 Supported Devices / PCI IDs 8086:1049, 8086:104a, 8086:104b, 8086:104c, 8086:104d, 8086:105e, 8086:105f, 8086:1060, 8086:107d, 8086:107e, 8086:107f, 8086:108b, 8086:108c, 8086:1096, 8086:1098, 8086:109a, 8086:10a4, 8086:10a5, 8086:10b9, 8086:10ba, 8086:10bb, 8086:10bc, 8086:10bd, 8086:10bf, 8086:10c0, 8086:10c2, 8086:10c3, 8086:10c4, 8086:10c5, 8086:10cb, 8086:10cc, 8086:10cd, 8086:10ce, 8086:10d3, 8086:10d5, 8086:10d9, 8086:10da, 8086:10de, 8086:10df, 8086:10e5, 8086:10ea, 8086:10eb, 8086:10ef, 8086:10f0, 8086:10f5, 8086:10f6, 8086:1501, 8086:1502, 8086:1503, 8086:150c, 8086:1525, 8086:153a, 8086:153b, 8086:1559, 8086:155a, 8086:15a0, 8086:15a1, 8086:15a2, 8086:15a3, 8086:294c Acceptance Level CommunitySupported Dependencies and Restrictions Replaces/Updates: VMware built-in net-e1000e driver Depends On: vmkapi_2_0_0_0, com.vmware.driverAPI-9.2.0.0 Package Properties Requires MaintMode Live Install Allowed Live Remove Allowed Stateless Ready Overlay Yes No No Yes No Additional links Related VMware Forum's post Package updated to include missing device IDs 1502 and 1503 following this hint from VMware forums user cmcallen

2019-12-26

net55-r8168-8.045a-napi.x86_64.rar

在线封装和离线封装驱动 Net55-r8168 Contents 1 Name 2 Description 3 Author 4 Vendor (Vendor Code) 5 Current Version 6 Supported Devices / PCI IDs 7 Acceptance Level 8 Dependencies and Restrictions 9 Package Properties 10 History 11 Direct Download links Name net55-r8168 Description Updated driver for Realtek 8168/8111/8411/8118 based NICs Author Dmitry Nechaev, nadinpishnova@gmail.com Vendor (Vendor Code) Realtek (RTL) Current Version 8.045a-napi Supported Devices / PCI IDs 10ec:8168, 1186:4300 (Realtek RTL8111B / RTL8168B / RTL8111/RTL8168 / RTL8111C / RTL8111CP / RTL8111D(L) / RTL8168C / RTL8111DP / RTL8111E / RTL8168E / RTL8111F / RTL8411 / RTL8111G / RTL8111GUS / RTL8411B(N) / RTL8118AS / D-Link DGE-528T) Acceptance Level CommunitySupported Dependencies and Restrictions Replaces/Updates: VMware provided net-r8168 driver Conflicts with: net51-drivers Depends On: vmkapi_2_2_0_0, com.vmware.driverAPI-9.2.2.0 Compatible With: ESXi 5.5, ESXi 6.0, ESXi 6.5, ESXi 6.7 Package Properties Requires MaintMode Live Install Allowed Live Remove Allowed Stateless Ready Overlay Yes No No Yes No History 2018-04-16: Version 8.045a: Changed package metadata to include proper dependencies and restrictions 2018-02-08: Version 8.045: Support for more NIC models and VLAN tags 2015-01-16: Version 8.039.01: Changed driver code to not use IP checksum hardware offload (caused various issues with networking in VMs) 2015-01-05: Version 8.039.00: Original version

2019-12-26

net51-r8169-6.011.00-2vft.510.0.0.799733.x86_64.rar

在线封装和离线封装驱动 net51-r8169 Description Adds the blacklisted ESXi 5.1 built-in net-r8169 driver back to ESXi 6. Author Andreas Peetz (@VFrontDe) Vendor (Vendor Code) VFrontDe (VFT) Current Version 6.011.00 Supported Devices / PCI IDs 10ec:8167, 10ec:8169 Acceptance Level CommunitySupported Dependencies and Restrictions Replaces: net-r8169 Compatible With: ESXi 5.1, ESXi 5.5, ESXi 6.0, ESXi 6.5 Does NOT work With: ESXi 6.7 and newer Package Properties Requires MaintMode Live Install Allowed Live Remove Allowed Stateless Ready Overlay Yes No No Yes No

2019-12-26

idea使用教程2017-06-01.rar

idea初级教程, 主要是各个界面的介绍 中文注释,不是很详细,但介结还是比较详细 适合初学者.............. 查阅资料也不错

2019-12-23

黑群辉绑定阿里云DDNS.rar

通过阿里云购买域名 然后在黑群辉里面用docker的方式来使用阿里的DDNS绑定域名 从而实现域名解析.....

2019-12-23

VMware-PowerCLI-6.0.0-3205540.rar

ESXi-Customizer配套工具 ESXi-Customizer is a user-friendly script that automates the process of customizing the ESXi install ISO with drivers that are not originally included. Unlike other scripts and manuals that are available for this purpose ESXi-Customizer runs entirely on Windows and does not require any knowledge of or access to Linux.

2019-12-23

ESXi-Customizer-v2.7.2.rar

ESXi-Customizer is a user-friendly script that automates the process of customizing the ESXi install ISO with drivers that are not originally included. Unlike other scripts and manuals that are available for this purpose ESXi-Customizer runs entirely on Windows and does not require any knowledge of or access to Linux.

2019-12-23

ESXi-Customizer-v2.7.1.rar

esxi驱动封装 ESXi-Customizer is a user-friendly script that automates the process of customizing the ESXi install ISO with drivers that are not originally included. Unlike other scripts and manuals that are available for this purpose ESXi-Customizer runs entirely on Windows and does not require any knowledge of or access to Linux.

2019-12-23

esxi6.5/6.7e100e和r8168网卡驱动及在线驱动封装/离线驱动封装

整理的资料;含e100e和r8168网卡驱动 目前在esxi6.5上封装 e1000e 并安装成功 在esxi6.7上封装 r8168 并安装成功 网卡驱动下载 网卡驱动在线封装 网卡驱动离线封装

2019-12-23

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除