码迷,mamicode.com
首页 >  
搜索关键字:delphi xe7    ( 4680个结果
Delphi KeyPress KeyDown时Key的值
Shift 是一个集合变量。 type TShiftState = set of (ssShift, ssAlt, ssCtrl, ssLeft, ssRight, ssMiddle, ssDouble); 也就是说TShiftstate类型有ssShift, ssAlt, ssCtrl, ssLe ...
分类:Windows程序   时间:2020-01-10 17:18:44    阅读次数:151
delphi save .dfm to .txt
procedure TForm2.saveDfm; var inStream,outStream:TMemoryStream; begin inStream:=TMemoryStream.Create; outStream:=TMemoryStream.Create; try inStream.Wr ...
分类:Windows程序   时间:2020-01-09 20:38:16    阅读次数:77
消息处理
Delphi中,自定义消息处理过程与Windows消息处理过程的定义是一样的。1.主用步骤:1>. 首先定义一个消息标识符常量;如:WM_MYMessage = WM_USER+ 5;(标识符常量的取值范围为WM_USER~WM_APP-1) 2>. 在单元文件中定义消息响应过程和消息标识符常量。 ...
分类:其他好文   时间:2020-01-09 20:26:38    阅读次数:78
Delphi生成即调用带窗体的Dll
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 ...
分类:Windows程序   时间:2020-01-09 10:30:14    阅读次数:87
Delphi调用c++写的dll (me)
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
RAD Studio最终版合集
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
Python中编码encode()与解码decode()
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
[UWP]为番茄钟应用设计一个平平无奇的状态按钮
1.为什么需要设计一个状态按钮OnePomodoro应用里有个按钮用来控制计时器的启动/停止,本来这应该是一个包含“已启动”和“已停止”两种状态的按钮,但我以前在WPF和UWP上做过太多StateButton、ProgressButton之类的东西,已经厌倦了这种控件,所以我在OnePomodoro应用里只是简单地使用两个按钮来实现这个功能:<ButtonContent="ç
分类:其他好文   时间:2019-12-31 01:35:57    阅读次数:87
delphi连接mysql不用添加DSN(mysql connector odbc 5.1版)
一、下载安装mysql驱动http://mysql.com/downloads/connector/odbc/二、添加adoconnection,adoquery,使用以下连接字符串http://www.connectionstrings.com/mysql#p31adoconnection的属性C ...
分类:数据库   时间:2019-12-30 19:47:14    阅读次数:97
Delphi使用TADOQuery的RowsAffected属性时需要注意的一个点
测试环境是:Delphi 6、Oracle、PLSQL 先创建一个模拟测试的数据表,并且添加几条模拟的数据 create table practice(uno varchar(8), uname varchar(20)); insert into practice values ('1', '1') ...
分类:Windows程序   时间:2019-12-30 18:59:35    阅读次数:128
4680条   上一页 1 ... 22 23 24 25 26 ... 468 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!