码迷,mamicode.com
首页 >  
搜索关键字:delphi fdac    ( 4551个结果
Delphi 转义字符
Delphi 转义字符 转义字符(Escape character),又 称 数据传送换码字符,符号“\”。 所有的ASCII码都可以用“\”加数字(一般是8进制数字)来表示。 C中定义了一些字母前加"\"来表示常见的那些不能显示的ASCII字符,如\0,\t,\n等 转义字符 意义 ASCII码值 ...
分类:Windows程序   时间:2020-12-19 13:25:38    阅读次数:5
ListView在delphi中的常用用法
ListView在delphi中的常用用法 //增加 i := ListView1.Items.Count; with ListView1 do begin ListItem:=Items.Add; ListItem.Caption:=IntToStr(i); ListItem.SubItems.A ...
分类:Windows程序   时间:2020-12-17 12:43:52    阅读次数:6
看看 Delphi XE2 为 VCL 提供的 14 种样式
其实只提供了 13 个 vsf 样式文件, 还有默认的 Windows 样式, 共 14 种.在空白窗体上添加 ListBox1 等控件, 测试代码: uses IOUtils, Vcl.Styles, vcl.Themes; procedure TForm1.FormCreate(Sender: ...
分类:Windows程序   时间:2020-12-15 12:35:34    阅读次数:4
Delphi:如何将列表作为参数传递给SQL查询?
我有一个整数或字符串列表,需要作为Delphi DataSet的参数传递.怎么做? 这是一个例子. MyQuery是这样的: select * from myTable where intKey in :listParam 我将一个参数设置为列表或数组或其他内容: MyQuery.ParamByNa ...
分类:数据库   时间:2020-12-14 12:48:17    阅读次数:4
Delphi ADOQuery和ClientDataSet 错误提示:不正常地定义参数对象,提供了不一致或不完整的信息
Delphi ADOQuery和ClientDataSet 错误提示:不正常地定义参数对象,提供了不一致或不完整的信息 原因分析:SQL语句事务处理时,把":"或“::”或“@”或“@@”后的字符当作变量来使用,导致数据识别错误,或参数信息提供不一致。 解决方法: 1、ADOQuery ADOQue ...
分类:Windows程序   时间:2020-12-11 12:08:09    阅读次数:9
DBGridEh选择时高亮度显示问题 Delphi
这是我自画dbgrideh的函数,其中有些地方是根据我的实际需要设的,你可以改改看procedure TfrmCopyBook_MeterCopy.SetGridColor(var AdoTable: TDataSet; var DbGrid1: TDBGrideh; const Rect: TRe ...
分类:数据库   时间:2020-12-05 10:58:46    阅读次数:6
Delphi中inherited问题
inherited Create(AOwner); 和直接写inherited有区别吗 有区别,inherited Create是指定调用父类的Create方法,当然你也可以inherited Destory等等, 如果直接写inherited则默认以本方法名在父类中调用 inherited就是调用 ...
分类:Windows程序   时间:2020-12-03 11:38:50    阅读次数:15
delphi working with big data databases in Cassandra, Couchbase and MongoDB
delphi working with big data databases in Cassandra, Couchbase and MongoDB ...
分类:数据库   时间:2020-11-30 16:01:01    阅读次数:11
Delphi WinAPI SHGetPathFromIDList 将项标识符列表转换为文件系统路径。
Delphi WinAPI SHGetPathFromIDList 描述:将项标识符列表转换为文件系统路径。 原型: BOOL SHGetPathFromIDListA( PCIDLIST_ABSOLUTE pidl, LPSTR pszPath ); 参数: PCIDLIST_ABSOLUTE / ...
分类:Windows程序   时间:2020-11-27 11:35:31    阅读次数:16
Delphi TWebBrowser[6] 获取网页所有链接(元素)
Delphi TWebBrowser[6] 获取网页所有链接(元素) var elem: IHTMLElement; coll: IHTMLElementCollection; i: integer; url, title: string; begin coll := (WebBrowser1.Do ...
分类:Windows程序   时间:2020-11-26 14:52:04    阅读次数:13
4551条   上一页 1 ... 3 4 5 6 7 ... 456 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!