上一页 1 2 3 4 5 6 7 ··· 20 下一页
摘要: 方法一:增加TCP读写缓存的大小 DataSnap Server中负责TCP/IP通讯的组件是TDSTCPServerTransport,它默认的TCP/IP读写缓冲区的大小为32KB,由BufferKBSize属性来设置。测试结果显示,这个默认的缓冲区大小,只适合返回很小的数据集的情况,在返回较大 阅读全文
posted @ 2019-09-03 23:07 覆雨翻云 阅读(1068) 评论(0) 推荐(0) 编辑
摘要: 原文链接:http://www.cnblogs.com/hnxxcxg/archive/2012/12/29/2839358.html procedure TFrmMain.btnUpdateFilesClick(Sender: TObject);begin try if Assigned(gEXE 阅读全文
posted @ 2019-09-03 23:04 覆雨翻云 阅读(419) 评论(0) 推荐(0) 编辑
摘要: 转:https://blog.csdn.net/a00553344/article/details/51670486 1. 一个典型的DataSnap服务器至少需要三个控件: TDSServer: DataSnap的逻辑核心控件,控制服务器的运行。 TDSServerClass: DataSnap服 阅读全文
posted @ 2019-09-03 22:47 覆雨翻云 阅读(748) 评论(0) 推荐(0) 编辑
摘要: 转:https://blog.csdn.net/weixin_34247299/article/details/86055022 DATASNAP使用TCP/IP长连接的时候,由于诸如客户端非正常关闭的情况会造成中间件产生僵死SOCKET连接,随着时间的推移,僵死连接越来越多,造成中间件停止服务,表 阅读全文
posted @ 2019-09-03 22:43 覆雨翻云 阅读(383) 评论(0) 推荐(0) 编辑
摘要: Delphi2010中DataSnap技术网摘 一、为DataSnap系统服务程序添加描述 这几天一直在研究Delphi 2010的DataSnap,感觉功能真是很强大,现在足有理由证明Delphi7该下岗了。 DataSnap有三种服务模式,其中Service Application方式建立的Wi 阅读全文
posted @ 2019-09-03 22:14 覆雨翻云 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 1 准备工作 1.1 环境准备 XE5或XE7,操作系统Windows7(64位)操作系统。 数据库MSSQL选择SQLServer2008。 如果数据库服务没有在开发电脑上,则需要在开发电脑上安装Microsoft SQL Server 2008 Native Client。因为是64位开发环境, 阅读全文
posted @ 2019-09-03 21:59 覆雨翻云 阅读(532) 评论(0) 推荐(0) 编辑
摘要: FastReport 使用技巧篇 使用技巧篇 1.FastReport中如果访问报表中的对象? 可以使用FindObject方法。 TfrxMemoView(frxReport1.FindObject('memo1')).Text:='FastReport'; 2.FastReport中如何使用上下 阅读全文
posted @ 2019-08-31 10:14 覆雨翻云 阅读(1730) 评论(0) 推荐(0) 编辑
摘要: 用一般的frxMEMOview 中文换行是瞎换,缺少数据,换成frxrichview 即可, frxrichview 使用注意点 1).Delphi中文很多时换行不正确 2).要在窗体上拖一个frxrichObject 3).绑定数据库控件跟frxMEMOview 一样,如[frxdbYingYe. 阅读全文
posted @ 2019-08-31 10:12 覆雨翻云 阅读(390) 评论(0) 推荐(0) 编辑
摘要: Library that exports functions Library that imports functions 阅读全文
posted @ 2019-07-29 10:36 覆雨翻云 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 编译问题:为什么我去掉Build with runtime packages,编译没问题??? 如果不去掉,就有错误:[Linker Error] Unresolved external 'TXNetDataPkg::' referenced from D:\BOC933\CHARTS\XPLUTU 阅读全文
posted @ 2019-07-24 18:21 覆雨翻云 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 这类软件一般都有时间段的限制,例如试用30天等。当过了共享软件的试用期后,就不予运行。只有向软件作者付费注册之后才能得到一个无时间限制的注册版本。这种保护的实现方式大致如下。 首先在安装软件的时候由安装程序取得当前系统日期,或者主程序在第一次运行的时候获得系统日期,并且将其记录在系统中的某个地方;可 阅读全文
posted @ 2019-07-10 08:32 覆雨翻云 阅读(1306) 评论(0) 推荐(0) 编辑
摘要: 转:https://www.cnblogs.com/yangxuming/p/8086779.html 阅读全文
posted @ 2019-06-20 16:47 覆雨翻云 阅读(2186) 评论(0) 推荐(0) 编辑
摘要: procedure TForm4.Button2Click(Sender: TObject); var sResponse: string; EnvStr : TStringStream; begin EnvStr := TStringStream.Create(Memo.Text, TEncoding.UTF8); try idHTTP.Request.ContentType :=... 阅读全文
posted @ 2019-06-20 16:46 覆雨翻云 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.qdac.cc/?p=4189 阅读全文
posted @ 2019-06-20 15:33 覆雨翻云 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://www1.devexpress.com/Support/Center/Question/Details/CQ30369 Actually, the corresponding editor is passed to this event handler via the Se 阅读全文
posted @ 2019-06-05 23:17 覆雨翻云 阅读(418) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 20 下一页