-
delphi entry of the grammar, the study applies to just a friend DELPHI door
delphi入门的语法介绍,适用于刚学DELPHI的朋友门-delphi entry of the grammar, the study applies to just a friend DELPHI door
- 2023-01-26 18:55:03下载
- 积分:1
-
LEGQQF
实现一个用于CDMA2000系统的短帧交织器,计算比较了12 16,13 15,14 14三种交织形式的性能!(A short frame Interleaver for CDMA2000 system is implemented. The performance of 1216, 1315 and 1414 interleaving forms is calculated and compared.)
- 2019-04-03 01:56:03下载
- 积分:1
-
跨平台MQTT Client 源码和demo by 漠北 2017-8-29
说明: 实现了mqtt client的数据交互流程,跨平台使用(The data interaction flow of mqtt client is realized and used across platforms)
- 2020-06-17 11:20:02下载
- 积分:1
-
RGBUtilities
usefull codes to understand better the rgb system on delphi.
- 2009-04-26 05:53:57下载
- 积分:1
-
RunExesvc
说明: 本软件以windows服务程序方式运行。
安装,执行install.bat,卸载执行uninstall.bat
配置:RunExe.ini。ExeRun设定运行程序,RunTime设定执行时间,可以是多个时间,运行后30分钟,自动关闭调用的程序。
仅当windows处于用户窗口登录状态时,也就是explorer.exe运行时,才执行。
执行时,被调用的程序显示窗口。
服务程序自动调用程序运行,并显示程序窗口。
当判断到Explorer在运行时,将根据设定时间,自动调用程序运行,30分钟后如果调用执行的程序未关闭,则自动将其关闭。(This software runs in the way of windows service program.
Install, execute install. bat, uninstall. bat unload
Configuration: RunExe.ini. ExeRun sets the running program and RunTime sets the execution time, which can be multiple times. 30 minutes after running, the calling program is automatically closed.
Windows is executed only when it is in the user window login state, that is, when explorer.exe runs.
When executed, the called program displays the window.
The service program automatically calls the program to run and displays the program window.
When it is judged that Explorer is running, the program will be automatically invoked according to the set time. If the program is not closed after 30 minutes, it will be automatically closed.)
- 2020-06-25 02:00:02下载
- 积分:1
-
商店管理系统。Delphi7和sql的。有点错误。希望大家指出。
商店管理系统。Delphi7和sql的。有点错误。希望大家指出。-Stores management system. Delphi7 and sql" s. A bit error. Wish to point out.
- 2022-12-20 05:25:04下载
- 积分:1
-
Delphi md5加密单元及DEMO
Delphi md5加密单元及DEMO,网上找了几个都不行,用其中一个修改的。可行。Delphi测试md5加密的例子
- 2022-03-18 09:14:23下载
- 积分:1
-
This is a regular expression delphi category, if necessary, take a look at the d...
这个是正则表达式的delphi类,如有需要,就下载看看已经是最新版了-This is a regular expression delphi category, if necessary, take a look at the download is the latest version of the
- 2022-01-25 20:01:19下载
- 积分:1
-
多数代码可以直接在Delphi6和Delphi7环境下运行。部分涉及.NET技术内容的代码,需要在Delphi 7上安装Borland .NET Complie...
多数代码可以直接在Delphi6和Delphi7环境下运行。部分涉及.NET技术内容的代码,需要在Delphi 7上安装Borland .NET Complier for Delphi编译器方可编译执行。Borland已经正式推出Delphi 8 for .NET,所以本书范例中部分内容可能与D8最终版本不符。-most directly in the code and Delphi6 Delphi7 operating environment. Some involved.NET technology content of the code, the need to install Delphi 7 Borland.NET Complier for Delphi compiler can compile implementation. Borland has officially launched for Delphi 8.NET, the book example might be part of the final version D8 inconsistent.
- 2022-04-22 21:10:31下载
- 积分:1
-
Delphi在TListView中显示数据库
Delphi在TListView中显示数据库,ListView控件的简单用法,在日常的编程开发中,这个比较常用 。
self.ListView1.ViewStyle:=vsReport;
for i:=0 to Query1.FieldCount-1 do
begin
TempColumn:=self.ListView1.Columns.Add;
TempColumn.Caption:=Query1.Fields[i].FieldName;
end;
Query1.First;
while not Query1.Eof do
begin
TempItem:=self.ListView1.Items.Add;
TempItem.Caption:=Query1.Fields[0].AsString;
for i:=1 to Query1.FieldCount-1 do
begin
TempItem.SubItems.Add(Query1.Fields[i].AsString);
end;
Query1.Next;
end;
- 2023-06-25 00:05:04下载
- 积分:1