2008年10月25日 星期六
合并两个 Wav 文件流的函数 - 回复 "刘文强" 的问题
万一| 万一的 Delphi 博客 |22:07:00
问题来源:http://www.cnblogs.com/del/archive/2008/10/25/1069523.html#1351197unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TB...
合并两个 Wav 文件的函数
万一| 万一的 Delphi 博客 |21:54:00
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); end; var Form1: TF...
Delphi : 随机排列字符串
幸福苹果| 幸福苹果-delphi |18:02:00
procedure TForm1.Button1Click(Sender: TObject);var i: integer; s,a: widestring;begin randomize; s ...
Delphi : 字符串,数字 随机排列顺序,排序;Listbox随机排序
幸福苹果| 幸福苹果-delphi |16:44:00
假设有一组数字 1~1000,请将他们随机填充在一个数组中需求:1、数组中无重复数字2、整个程式运算非常快!阅读全文类别:delphi编程 查看评论
delphi:进程、窗口句柄、文件属性、程序运行状态
幸福苹果| 幸福苹果-delphi |16:37:00
delphi:进程、窗口句柄、文件属性、程序运行状态uses TLHelp32,PsAPI;(1)显示进程列表:procedure TForm1.Button2Click(Sender: TObject);var lppe: TProcessEntry32;found : boolean;阅读全文类别:delphi编程 查看评论
Delphi : 检测系统是否已安装了ADO(用ACCESS库时常用)
幸福苹果| 幸福苹果-delphi |16:34:00
检测系统是否已安装了ADO(用ACCESS库时常用)http://www.cnblogs.com/28088191/category/139714.html?Show=Alluses registry;function Tform1.ADOInstalled:Boolean;varr:TRegistry;s:string;beginr := TRegistry.create;trywi阅读全文类别:delphi编程 查看评论
学习 Message(6): 也可以直接覆盖祖先类的 WndProc 或 Dispatch 方法来响应消息
万一| 万一的 Delphi 博客 |12:32:00
覆盖: WndProcunit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; type TForm1 = class(TForm) protected procedure WndProc(var Message: TMessage); override; end; var Form1...
学习 Message(5): 关于 TApplicationEvents.OnMessage 的第二个参数
万一| 万一的 Delphi 博客 |12:03:00
TApplicationEvents.OnMessage 的第二个参数 Handled 如果是 True, 表示消息已经处理过了, 到此为止.unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, AppEvnts, StdCtrls; type TForm1 =...





冀公网安备 13098202000212号