-
内存使用状态Delphi 探测并显示
Delphi获取内存的使用状态并显示信息,这里是使用GlobalMemoryStatus来实现,有的是使用GetSystemInfo来获龋本程序可显示内存大小和可用内存,并显示进度条。不过我这台电脑是16G内存的Windows7 64位系统,程序可能没认出啊,下面是识别内存可用量的大小,仅供参考:
memo_status.dwLength := sizeof(memo_status);
GlobalMemoryStatus(memo_status);
Gauge2.Progress := (round((100*(memo_status.dwAvailPhys
/ memo_status.dwTotalPhys))));
label1.Caption := inttostr(memo_status.dwAvailPhys);
label2.Caption := inttostr(memo_status.dwTotalPhys);
- 2022-02-03 06:55:31下载
- 积分:1
-
Contatos
Criation of Messages
- 2013-10-04 02:10:28下载
- 积分:1
-
delphi写的大小写转换的过程,从第一次做装修的问题。
delphi写的大小写转换程序,源于当初做一个项目改造时,需要做大量的转换工作,于是随手写了一个小程序来减轻工作量,这样,就可以Ctrl+X Ctrl+V 了 程序经过重新测试,运行时图标在右下任务栏
http://gudaosoft.spaces.live.com/-delphi write capitalisations conversion process, from first to do a renovation project, need to do a lot of conversion work, then threw was a small procedure to reduce the workload of the case, X can Ctrl Ctrl V of the program after re-tested running icon in the lower right task bar http :// gudaosoft.spaces.live.com /
- 2022-01-23 11:21:09下载
- 积分:1
-
Introduction to the classic Delphi
Delphi入门经典-电子书教程.新手入门教程 -Introduction to the classic Delphi- e-book tutorial. Beginners tutorial
- 2022-11-14 21:40:04下载
- 积分:1
-
Domain
一个旁注检测的源代码,对学习理解旁注具有很好的参考价值。(A sidenote detection of the source code, to learn to understand marginalia have a good reference value.)
- 2013-08-22 15:36:13下载
- 积分:1
-
串口调试助手DELPHI版
使用说明
本程序完全参照龚建伟《串口调试助手V2.2》制作而成,原软件是用VC编写的,我将它改用Delphi编写,作为我学习串口编程的一个例子与工具使用。
其中用到串口控件为ComPort,该控件为开源软件,各大网站均有下载,目前最新版为3.0。
下载网址忘记了,所以选择 原创,程序有改进
- 2022-05-30 20:39:21下载
- 积分:1
-
CPL
Sample Code to make CPL-applet by using WinAPI only. It s simple applet just start notepad, but you can modify it to your needs. Output file is just 40 kb.
- 2013-10-17 00:51:08下载
- 积分:1
-
cbuilder
站长95年时想写的模拟Delphi界面的生成C语言界面的一个程序,名字就叫CBuilder,那时C++Builder还没有呢( Stationmaster when 95 years wants to write simulation Delphi a
contact surface production C language contact surface procedure, the
name is called CBuilder, at that time C Builder not to have )
- 2020-06-26 12:20:02下载
- 积分:1
-
Mis权限管理
一个权限管理系统,我也是在网上下的,没有测试过,如果不行的话可不要怪我哟(a competence management system, I was under the Internet, without testing, if not then I can not blame yo)
- 2005-08-20 09:31:53下载
- 积分:1
-
获取windows System目录路径-Delphi示例
Delphi获取windows System目录路径,这个比较简单,觉得没啥用,只是可以练习一下GetSystemDirectory函数如何使用,下面分享出核心的代码,完整代码需要您下载哦:
begin
GetMem(SysDir,255);
GetSystemDirectory(SysDir,255);
Edit1.Text := SysDir;
end;
- 2022-03-18 16:21:27下载
- 积分:1