摘要: //应用delphi自带的EncdDecd单元 procedure TForm1.btn3Click(Sender: TObject);var s: string;begin s := ‘abcdefg'; s := AnsiToUtf8(s); s := EncodeString(s); //De 阅读全文
posted @ 2019-09-14 10:15 襄阳古城 阅读(488) 评论(0) 推荐(0) 编辑
摘要: //引用delphi自带的HTTPApp单元 procedure TForm1.btn1Click(Sender: TObject);var s: string;begin s := 'abcdefg'; s := HttpEncode(UTF8Encode(s)); showmessage(s); 阅读全文
posted @ 2019-09-14 10:13 襄阳古城 阅读(240) 评论(0) 推荐(0) 编辑
摘要: idhttp提交post带参数并带上cookie https://www.cnblogs.com/gtsup/p/6999932.html 有这么一个提交连接 http://www.XXXXXX.com/test.php?p1=411328&p2=1&d1=HeroSkinList 一共有三个参数[ 阅读全文
posted @ 2019-09-13 15:01 襄阳古城 阅读(814) 评论(0) 推荐(0) 编辑
摘要: Delphi环境中编写调用DLL的方法和技巧 【转】 https://www.cnblogs.com/alina_yan/archive/2009/08/03/1537340.html 阅读全文
posted @ 2019-09-10 16:28 襄阳古城 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 基于Delphi的融合DLL中的窗口 https://www.cnblogs.com/okwary/archive/2008/12/26/1363113.html 阅读全文
posted @ 2019-09-10 16:07 襄阳古城 阅读(160) 评论(0) 推荐(0) 编辑
摘要: MyBean 框架入门手册<感谢[青铜]整理的如此细致和系统> https://www.cnblogs.com/DKSoft/p/3998057.html 阅读全文
posted @ 2019-09-10 15:18 襄阳古城 阅读(200) 评论(0) 推荐(0) 编辑
摘要: Delphi中一些DLL的运用(要传递Application和Screen,似乎还忘了传递提示控件) https://www.cnblogs.com/findumars/p/5951318.html 阅读全文
posted @ 2019-09-10 14:17 襄阳古城 阅读(184) 评论(0) 推荐(0) 编辑
摘要: DELPHI DATASNAP 2010 入门操作(2)不写一行代码,绿色三层我也行 https://www.cnblogs.com/zhqian/archive/2010/07/06/1771798.html 阅读全文
posted @ 2019-09-09 18:14 襄阳古城 阅读(367) 评论(0) 推荐(0) 编辑
摘要: unit PayIntf_MisDll; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type { /* 交易类型: '00'消费'01'撤销'02'退货'03'查余 '... 阅读全文
posted @ 2019-08-13 11:08 襄阳古城 阅读(1517) 评论(0) 推荐(0) 编辑
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type PUpData = ^TUpData; TUpData = record a1: array[1..2] of c... 阅读全文
posted @ 2019-08-05 10:38 襄阳古城 阅读(1121) 评论(0) 推荐(0) 编辑