procedure TForm2.saveDfm; var inStream,outStream:TMemoryStream; begin inStream:=TMemoryStream.Create; outStream:=TMemoryStream.Create; try inStream.Wr ...
Delphi中,自定义消息处理过程与Windows消息处理过程的定义是一样的。1.主用步骤:1>. 首先定义一个消息标识符常量;如:WM_MYMessage = WM_USER+ 5;(标识符常量的取值范围为WM_USER~WM_APP-1) 2>. 在单元文件中定义消息响应过程和消息标识符常量。 ...
分类:
其他好文 时间:
2020-01-09 20:26:38
阅读次数:
78
library frmDll; { Important note about DLL memory management: ShareMem must be the first unit in your library's USES clause AND your project's (select ...
unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, V ...
分类:
编程语言 时间:
2020-01-07 16:07:31
阅读次数:
84
Borland Delphi 7 Enterprise(企业版)官方下载地址:http://altd.embarcadero.com/download/delphi/d7/english/ent/delphi_7_ent_en.isohttp://altd.embarcadero.com/devsu ...
分类:
其他好文 时间:
2020-01-06 15:04:39
阅读次数:
998
1 print('这是编码'.encode('utf-8')) # 结果 b'\xe8\xbf\x99\xe6\x98\xaf\xe7\xbc\x96\xe7\xa0\x81' 2 print('这是编码'.encode('gbk')) # 结果 b'\xd5\xe2\xca\xc7\xb1\xe0 ...
分类:
编程语言 时间:
2020-01-04 10:21:34
阅读次数:
133
一、下载安装mysql驱动http://mysql.com/downloads/connector/odbc/二、添加adoconnection,adoquery,使用以下连接字符串http://www.connectionstrings.com/mysql#p31adoconnection的属性C ...
分类:
数据库 时间:
2019-12-30 19:47:14
阅读次数:
97
测试环境是:Delphi 6、Oracle、PLSQL 先创建一个模拟测试的数据表,并且添加几条模拟的数据 create table practice(uno varchar(8), uname varchar(20)); insert into practice values ('1', '1') ...
1、安装MySQL ODBC Driver。 2、设置ADO连接MYSQL的连接字符串: Provider=MSDASQL.1;Password=root;Persist SecurITy Info=True;User ID=root;Extended Properties="DATABASE=cl ...
分类:
数据库 时间:
2019-12-30 17:39:49
阅读次数:
219
1.anaconda与pycharm的关系 1、python python自身缺少numpy、matplotlib、scipy、scikit-learn....等一系列包,需要我们安装pip来导入这些包才能进行相应运算(python3.5自带了get-pip.py,不需额外下载安装),在cmd终端输 ...
分类:
其他好文 时间:
2019-12-27 19:44:55
阅读次数:
84