摘要:
Office 2007 打开故障 The setup controller has encountered a--Office 2007 打开故障 The setup controller has encountered&nbs_mfg99_新浪博客 http://blog.sina.com.cn/ 阅读全文
2021年5月14日 #
2021年5月13日 #
摘要:
例子是XE的 只是本人测试的,仅供学习!代码很乱! 在一个程序中测试 IdTcpClient和IdTcpServer有点坑, 测试的时候最好写Client和Server两个程序测试 Unit开始 unit Unit1; interface uses Windows, Messages, SysUti 阅读全文
摘要:
资料来源:delphi TStringList 用法详解 http://www.delphitop.com/html/wenjian/3407.html /TStringList 常用方法与属性 :varList: TStringList;i: Integer;begin List := TStri 阅读全文
2021年5月10日 #
摘要:
来源:inno setup win10 创建菜单里面卸载图标 https://www.icode9.com/content-4-724671.html ; 脚本由 Inno Setup 脚本向导 生成! ; 有关创建 Inno Setup 脚本文件的详细资料请查阅帮助文档! #define MyAp 阅读全文
2021年4月28日 #
摘要:
说明 模拟把数据库某个表中的数据保存到文件中,然后再把文件中的数据显示出来 仅仅是个模拟,没有连数据库。 这是一个随便测试的例子 Unit开始 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Gra 阅读全文
2021年4月24日 #
摘要:
来源:https://www.cnblogs.com/yechanglv/p/6923161.html 基本安装1、对于单个控件,Componet-->install component..-->PAS或DCU文件-->install; 2、对于带*.dpk文件的控件包,File-->Open(下拉 阅读全文
2021年4月23日 #
摘要:
Unit开始 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TF 阅读全文
2021年4月21日 #
摘要:
D7没有问题,XE有问题 这个TranComp是别人写的,拿来用, 测试(D7下)的时候正常,真正到了项目(XE)中就不行了, XE中 不行的原因不是这个TranComp没有用,有用! 没有效果的原因是在窗体Show的开始还是透明的,快Show完了这个透明又被覆盖了,郁闷! XE中 最好放一张图片作 阅读全文
2021年4月19日 #
摘要:
//创建桌面快捷方式 //FileName := ParamStr(0);procedure CreateShortcutToDesktop(ShortcutName,Description,FileName:string;AgainCreateFlag:Boolean=False);//Again 阅读全文
2021年4月7日 #
摘要:
D7- 仅仅是学习,不要太较真,哈哈 资料来源忘记了 unit开始 MyCustomForm_u开始 unit MyCustomForm_u; interface uses Windows,Classes,Messages; const MY_MESSAGE = WM_USER + 1; type 阅读全文