上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 33 下一页
摘要: var StartTime, EndTime: cardinal; begin StartTime := GetTickCount; sleep(1000); EndTime := GetTickCount; caption := (IntToStr(EndTime - StartTime) + ' 阅读全文
posted @ 2022-03-26 09:08 Thenext 阅读(393) 评论(0) 推荐(0)
摘要: 0 I have the following C# code that works, ie. I get the expected result from the server. static async Task GetObjectInfo() { HttpClient httpClient = 阅读全文
posted @ 2022-03-25 17:31 Thenext 阅读(365) 评论(0) 推荐(0)
摘要: 1、对于使用TCP/IP链接的客户端应用程序,是具有状态的。一直等到客户端完成服务请求后释放配置的资源。如何掉线了,那么服务器就是傻傻地等着,可能导致资源耗尽。 如何在服务端选择一个链接切断关闭之: 2、KeepAlive功能 实现DataSnap服务器和DataSnap客户端互相查询的功能。 如果 阅读全文
posted @ 2022-03-25 13:52 Thenext 阅读(210) 评论(0) 推荐(0)
摘要: create extension pgcrypto; --增加,加密解密模块; drop extension pgcrypto; --删除,加密解密模块; 定义--encrypt(bytea, bytea, text)-- update bill_his_yun set yun_ip=encode( 阅读全文
posted @ 2022-03-23 17:18 Thenext 阅读(655) 评论(0) 推荐(0)
摘要: 用法1:在工程中加入控件cxLocalizer; 在程序中加入如下语句: Localizer.LoadFromFile(‘DevLocal.ini‘); Localizer.Language := '中文(简体,中国)'; Localizer.Active := true; 用法2:用DevExpr 阅读全文
posted @ 2022-03-19 09:24 Thenext 阅读(687) 评论(0) 推荐(0)
摘要: cxSplitter1. Control = Panel1 ; cxSplitter1.CloseSplitter; //收缩 cxSplitter1.OpenSplitter; //展开 阅读全文
posted @ 2022-03-11 15:31 Thenext 阅读(196) 评论(0) 推荐(0)
摘要: 如果WINDOWS系统的短日期格式为“yyyy/m/d”,执行下面的代码会报错:2013-01-29 00:00:00不是合法的日期procedure TFrmQuerySale.FormShow(Sender: TObject);varsDate: string;begininherited;// 阅读全文
posted @ 2022-03-03 14:42 Thenext 阅读(164) 评论(0) 推荐(0)
摘要: TCXGRID控件:属性:ActiveLevel: 当前层BorderStyle: 窗口风格Color: 颜色FocusedView: 当前View;Font: 字体LevelTabs: 类似PageControls头设置 CaptionAlgnment:标题对齐方式 Images:图标 Style 阅读全文
posted @ 2022-02-28 20:52 Thenext 阅读(621) 评论(0) 推荐(0)
摘要: 1 # 以A开头 B结尾取中间字符串 2 (?<=A).*?(?=(B|$)) 阅读全文
posted @ 2022-02-26 13:36 Thenext 阅读(1533) 评论(0) 推荐(0)
摘要: SynEdit系列的第三方控件是专门做代码编辑器的,可以不用写一行代码,就可以实现基本的功能。安装方法:点我。 Tool Palette中可以看到安装完的两项:SynEdit, SynEdit Highlighters。 SynEdit中包含一些主要控件,包括SynEdit, SynMemo, DB 阅读全文
posted @ 2022-02-18 09:21 Thenext 阅读(2631) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 33 下一页