新文章 网摘 文章 随笔 日记

02 2021 档案

摘要:2019年3月14日 4099点热度 5人点赞 84条评论 在音视频领域,想深入研究的话,必定会接触WebRTC。WebRTC是一个庞大的工程,就像是音视频领域的百科全书,音视频采集,编解码,传输,渲染等一条龙在WebRTC里都有,而且WebRTC还有很多先进的音视频处理算法。由于WebRTC代码过 阅读全文
posted @ 2021-02-23 16:58 岭南春 阅读(847) 评论(0) 推荐(0)
摘要:WebRTC 开发(十二)Google WebRTC 视频会议产品 Google Meet WebRTC 开发(十一)WebRTC 开发指南主页的域名被变更 WebRTC 开发(十)编译与运行 iOS 工程 WebRTC 开发(九)音频采集与渲染 WebRTC 开发(八)使用 OpenGL 渲染视频 阅读全文
posted @ 2021-02-23 16:44 岭南春 阅读(106) 评论(0) 推荐(0)
摘要:ATTable.Filter不是SQL查询。LIKE不支持(也不支持IN)。所支持的操作符=,<>,>,<,>=,“<= ,AND ,NOTand或`,根据文档 对于更复杂的过滤,请使用TDataSet.OnFilterRecord事件: procedure TForm1.Table1FilterR 阅读全文
posted @ 2021-02-20 15:26 岭南春 阅读(401) 评论(0) 推荐(0)
摘要:unit DbContext; interface uses Windows, SysUtils, IniFiles, DB, ADODB, Dialogs; type TDbContext = class private _fileFullName: string; _connString: st 阅读全文
posted @ 2021-02-20 14:40 岭南春 阅读(411) 评论(0) 推荐(0)
摘要:http://www.delphibasics.co.uk/Article.asp?Name=OO 阅读全文
posted @ 2021-02-20 09:03 岭南春 阅读(56) 评论(0) 推荐(0)
摘要:type TMyClass = class private class var FMyClassVar: Integer; end; https://stackoverflow.com/questions/18145204/class-field-static-field-in-delphi 阅读全文
posted @ 2021-02-19 14:36 岭南春 阅读(144) 评论(0) 推荐(0)
摘要:type TMyForm = class(TForm) private FUserName: string; public constructor Create(AOwner: TComponent; const UserName: string); reintroduce; overload; e 阅读全文
posted @ 2021-02-19 11:49 岭南春 阅读(258) 评论(0) 推荐(1)
摘要:Delphi 之 第九课 Windows编程 摘要:Delphi 利用Object Pascal 和可视控件库(VCL)对底层的Windows API 进行了完美的封装,所以很少需要使用基础Pascal 语言来建立Windows应用程序,也无需直接调用Windows API 函数。尽管如此,如果遇到 阅读全文
posted @ 2021-02-18 08:32 岭南春 阅读(448) 评论(0) 推荐(0)
摘要:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type // 定义接口 如果接口独立成一个文件,则在应用 阅读全文
posted @ 2021-02-17 17:17 岭南春 阅读(217) 评论(0) 推荐(1)
摘要:unit DbHelper; interface uses Classes,DB, ADODB,SysUtils,UProcParameter; type TDbHelper=class class function GetANewCon(conString:string):TADOConnecti 阅读全文
posted @ 2021-02-06 15:54 岭南春 阅读(242) 评论(0) 推荐(0)
摘要:TDBGrid属性properties面板,设置Options-->dgRowSelect及dgRowAlwaysShowSelection设为true; 选中TDBGrid一行,对应其数据集中的一行自动呈选中状态,可直接操作数据集,即操作的是所选中的行数据,如: str:= DBGrid1.Dat 阅读全文
posted @ 2021-02-06 14:06 岭南春 阅读(195) 评论(0) 推荐(0)
摘要:DBGrid非常方便,并为大多数任务提供了方便的界面。但是您可能会发现,当您尝试实现某些风吹草动时,它就不够用了。例如,向网格中添加诸如SpeedButtons或SpinButtons之类的组件确实可以为应用程序增添趣味。但是你怎么做呢?Steve Zimmelman提供了一种简单的技术。 要将按钮 阅读全文
posted @ 2021-02-06 09:34 岭南春 阅读(743) 评论(0) 推荐(0)
摘要:1.给获得焦点的单元格换上好看的色彩 程序开始: //////////////////////////////////////////////////////////////////////// //在该事件中写上代码就可以了, procedure TMainForm.DBGrid1DrawColu 阅读全文
posted @ 2021-02-06 09:15 岭南春 阅读(199) 评论(0) 推荐(0)
摘要:使用TAdoQuery组件检查这些样本。 直接从文件加载数据 ADOQuery1.Parameters.AddParameter.Name:='Param1'; ADOQuery1.Parameters.ParamByName('Param1').LoadFromFile('yourfilename 阅读全文
posted @ 2021-02-06 08:40 岭南春 阅读(341) 评论(0) 推荐(0)
摘要:Provider=OraOLEDB.Oracle.1;Password=****;Persist Security Info=True;User ID=*****;Data Source=(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TC 阅读全文
posted @ 2021-02-05 14:18 岭南春 阅读(595) 评论(0) 推荐(0)
摘要:这几天,一直为断点无效的是在烦恼,无论我怎么编译,断点就是进不去,今天终于搞定了。主要是涉及的路径的问题,看了一些资料,现在总结下: 在delphi中有两处涉及到路径的配置,一个是菜单tools\options中的environment options/delpihi options/library 阅读全文
posted @ 2021-02-04 13:33 岭南春 阅读(1376) 评论(0) 推荐(0)