-
Delphi实现禁止app截屏
2023-5-25 Delphi修改AndroidManifest.template.xml,增加下面标粗的内容: <activity android:name="com.embarca... -
Delphi重建托盘图标
2022-7-24 Delphiunit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; type TForm1... -
Self-Delete程序之Delphi版本
2022-7-24 Delphiprocedure DeleteSelf; var module : HMODULE; buf : array [ 0 .. MAX_PATH – 1 ] of char; p : ULONG; hKrnl3... -
将webbrowser的cookie给idhttp用
2017-10-17 Delphi网上搜索出来的方法是:Cookie:='Cookie:' +(Web.document as IHtmlDocument2).cookie; 但听说这个方法不能获取全部的Cookie内容,需要借助wininet.dll才可以获取完整... -
获取电脑系统空闲时间
2017-10-17 Delphifunction GetLastInput: integer; //获取闲置时间 var LInput: TLastInputInfo; begin Result := 0; &nb... -
[转]快速获取文件大小
2017-10-13 Delphifunction GetFileSize(const fName: AnsiString): Int64; var hFile: THandle; begin hFile := _lopen(PAnsiChar(fName), OF_READ)... -
【转】不管什么DateTime日期格式时间格式转换都不会出错了!
2017-7-6 Delphi在Application.Initialize后面加入对FormatSettings的设置: Application.Initialize; with FormatSettings do begin ShortDateFormat := 'yyyy... -
[转]Delphi InterlockedIncrement/InterlockedDecrement
2016-7-13 Delphi用于增减变量的并不是常用的Inc/Dec过程,而是用了InterlockedIncrement/InterlockedDecrement这一对过程,它们实现的功能完全一样,都是对变量加一或减一。但它们有一个最大的区别,那就是InterlockedIncrement/Interlo... -
[转]Delphi中释放父控件里的所有子控件
2016-4-9 Delphiprocedure TFrmMain.ClearControls(AParent: TWinControl); var i: Integer; begin for i := AParent.ControlCount - 1 downto 0 do begin ...