address violation 0d1a0000 delphi

解决 DELPHI 中执行外部命令出现屏幕一闪的问题的方法

解决 DELPHI 中执行外部命令出现屏幕一闪的问题的方法 有的时候我们在DELPHI中使用ShellExecuteEx(exInfo: TShellExecuteInfo)函数执行一些外部命令,但会出现,屏幕一闪的问题,解决方法如下: 设置 exinfo.nShow := SW_HIDE; //隐 ......
命令 屏幕 方法 DELPHI 问题

delphi Panel和PageControl中加载窗体

Panel和PageControl中加载窗体 代码 Panel中载入窗体 procedure TForm1.Button1Click(Sender: TObject); begin Form2.Parent := Panel1; Form2.Align := alClient; Form2.Bord ......
窗体 PageControl delphi Panel

delphi redisclient测试

unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, V ......
redisclient delphi

delphi 如何把一首mp3歌曲存入SQLite3里面qq81709989 (ChatGPT-4)

// 导入需要的单元uses System.IOUtils, System.SysUtils, FMX.Media, FMX.Types, Data.DB, FireDAC.Comp.Client, FireDAC.Stan.Param;// 定义一个全局变量,表示数据库连接var DBConnec ......
81709989 SQLite3 ChatGPT delphi SQLite

Understanding the linux kernel Chapter2 Memory Addressing

Physical Memory Layout unavailable address for kernel either because they map hardware devices’ I/O shared memory or because the corresponding page fr ......

delphi JSON序列化(五)

关于TJSONConverters的使用 unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.C ......
序列 delphi JSON

delphi JSON序列化(四)

涉及的重要类 REST.Json,REST.JsonReflect,REST.Json.Interceptors, REST.Json.Types单元中。 一、TJson类 最简单的一个类,提供了JSON -> OBJECT和OBJECT -> JSON几个方法,方法有TJsonOptions参数, ......
序列 delphi JSON

delphi XE10 连接mysql 对于 timestamp 类型字段查询的问题

目前 使用 delphi XE10.1 连接mysql (版本 8.0.19) 提示: raised exception class EFDException with message '[FireDAC][Stan]-43. Value [000⎰̴] is out of [Cardinal] ......
字段 timestamp 类型 delphi 问题

最近刚自学的DELPHI,实操一下,涉及[变量,常量,函数,写配置项]

unit LoadForm; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms ......
常量 变量 函数 DELPHI

Delphi10.3的DBGrid之外键显示(07)

要在设计的时候,界面上显示值 procedure TForm13.FDQuery1idGetText(Sender: TField; var Text: string; DisplayText: Boolean); begin if Sender.AsInteger =1 then text:='一 ......
Delphi DBGrid 10.3 10 07

uniGUI学习之脱离Delphi直接写ExtJS从入门到精通081ExtJs学习之Button.setStyle

最少代码:HelloWorld.html源文件下载 https://docs.sencha.com/extjs/6.7.0/classic/Ext.button.Button.html 点击 事件 <link rel="stylesheet" href="theme-gray-all.css"> < ......
setStyle uniGUI Delphi Button ExtJS

uniGUI学习之脱离Delphi直接写ExtJS从入门到精通00_JavaScipt基本语法

<script> function func1(){ alert('func1()'); }; </script> <select> <option>aa</option> <option>aa</option> <option>aa</option> <option>aa</option> </s ......
语法 JavaScipt uniGUI Delphi ExtJS

uniGUI学习之脱离Delphi直接写ExtJS从入门到精通10基本JavaScript_<input>与ExtJS无关

...HTML 中的 input 标签,看这一篇就够了_html input ......
ExtJS JavaScript uniGUI Delphi input

uniGUI学习之脱离Delphi直接写ExtJS从入门到精通09基本JavaScript与ExtJS无关

<script type="text/javascript"> function removeOption() { var x=document.getElementById("mySelect"); x.remove(x.selectedIndex); } </script> <select id ......
ExtJS JavaScript uniGUI Delphi

Delphi 类(TObject、TPersistent、TComponent、TControl、TWinControl、TCustomControl、TGraphicControl、TInterfacedObject)简单介绍

TObject: VCL中所有类的根类,即是说:VCL中所有的类/组件/控件都是从TObject中继承而来。TObject类中定义了基本的 构造方法和析构方法。 TPersistent: 继承于TObject,按字典中的意思是“持久类”(姑且这样叫它吧,因为我一直就是这样叫这个类的-_-|)。该类在 ......

delphi 重新打开(Reopen)或最近打开(Open Recent)列表维护

重新打开(Reopen)或最近打开(Open Recent)列表维护 介绍 列出最近打开的项目和文件,供选择重新打开。 重新打开列表 由一条线分为两组: 项目列在线的上方 (例如,MyBigApp.dproj 或 MyFastApp.cbproj) 源文件列在线的下方 (例如,MyControl.p ......
delphi Reopen Recent Open

delphi 窗体设计器选项(显示非可视组件、自动创建窗体)

窗体设计器选项(显示非可视组件、自动创建窗体) 选项介绍 窗体设计器的首选项。 Tools > Options > User Interface > Form Designer Grid options Display grid 在设计器上显示点网格点,以帮助对齐控件。 Use designer g ......
窗体 组件 delphi

delphi 使用WIC(Windows 映像组件)加载图片

使用WIC(Windows 映像组件)加载图片 TWICImage 是 Microsoft Windows 映像组件的封装。 WIC映像是一个容器,允许加载多种映像格式。 可以使用 TWICImage 实例来加载、存储和显示位图、JPEG、PNG、GIF、TIFF 或使用 WIC API 注册的任何 ......
映像 组件 Windows delphi 图片

delphi - 调整表单大小,同时保持纵横比

https://www.coder.work/article/5928583 在Form1的 OnCanResize 事件添加以下处理程序似乎对我来说效果很好: procedure TForm2.FormCanResize(Sender: TObject; var NewWidth, NewHeig ......
表单 大小 同时 delphi

delphi模拟redis单元

1 unit g_uSdRedis; 2 3 interface 4 5 uses 6 Windows, 7 Messages, 8 SysUtils, 9 Variants, 10 Classes, 11 Graphics, 12 Controls, 13 Forms, 14 Dialogs, 1 ......
单元 delphi redis

Delphi:循环语句for-in

https://www.jianshu.com/p/0fd88af44e4b 1.for-in 循环中,循环对数组, 列表,字符串或其他某种类型的容器的每个元素进行操作。 2.打开IDE,新建VCL应用,添加一个button1,一个memo1,双击button1,编写代码: procedure TF ......
语句 Delphi for-in for in

Delphi服务程序打开界面程序

function WTSQueryUserToken(SessionId: ULONG; var phToken: THandle): BOOL; stdcall; external 'Wtsapi32.dll'; procedure CreateProcessByUser; var Session ......
程序 界面 Delphi

Delphi新语法IfThen

https://docwiki.embarcadero.com/Libraries/Sydney/en/System.StrUtils.IfThen function IfThen(AValue: Boolean; const ATrue: string; AFalse: string = ''): ......
语法 Delphi IfThen

delphi cxgrid 过滤列表增加右键

首先弹出来的下拉过滤列表也是一个form 思路,在不改源代码的情况:hook,捕捉 WM_SHOWWINDOW 消息,通过源码得知窗口类名 为”TcxGridFilterPopup“ 再通过句柄转得到实例,同时在本单元type 一下新的 TcxGridFilterPopup, TcxGridPopu ......
delphi cxgrid

Addressables资源如何进行完整性校验

1)Addressables资源如何进行完整性校验2)使用SpriteAtlas时出现冗余精灵,如何指定用哪一个图集3)anim文件进行精度处理后某些信息丢失 这是第365篇UWA技术知识分享的推送,精选了UWA社区的热门话题,涵盖了UWA问答、社区帖子等技术知识点,助力大家更全面地掌握和学习。 U ......
Addressables 完整性 资源

Go - error: panic: runtime error: invalid memory address or nil pointer dereference

Then looking at this code: res, err := client.Do(req) defer res.Body.Close() if err != nil { return nil, err } I'm guessing that err is not nil. You'r ......
error dereference address invalid runtime

Comparison method violates its gene

1、如果我没有写这一步,就会报这个错误了 2、 分析,应该是你一会进行长度排序,一会是字符串的compare分析。如果长度小于, 不做判断的话。显然和compare会冲突。 3、加上小于这步就可以了 ......
Comparison violates method gene its

DELPHI模板编程

DELPHI模板编程 procedure TCRUD<T>.execsql(OnTableModel: TTableModel); //执行事务性SQL begin if req.Body = nil then Exit; var pool: TDBPool := GetDBPool(dbid); ......
模板 DELPHI

delphi ADO通过ODBC连接MySQL

ADO通过ODBC连接MySQL 操作步骤 下载32位MySQL ODBC 驱动 (MySQL Connector/ODBC 下载地址) 选择ADO驱动程序 Microsoft OLE DB Provider for ODBC Drivers 设置连接字符串 连接字符串 使用数据源名称 Provid ......
delphi MySQL ODBC ADO
共335篇  :1/12页 首页上一页1下一页尾页