上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 75 下一页

2019年3月14日

Delphi目录监控、目录监听

摘要: 资料地址: 1.https://www.cnblogs.com/studypanp/p/4890970.html 单元代码: 1 (****************************************** 2 文件和目录监控 3 当磁盘上有文件或目录操作时,产生事件 4 使用方法: 5 阅读全文

posted @ 2019-03-14 20:32 疯狂delphi 阅读(1241) 评论(0) 推荐(0) 编辑

2019年3月11日

delphi怎样把子窗体显示在pagecontrol的tabsheet

摘要: https://bbs.csdn.net/topics/391980918 1 unit Unit1; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System 阅读全文

posted @ 2019-03-11 15:13 疯狂delphi 阅读(1706) 评论(0) 推荐(0) 编辑

delphi从TRichEdit获得RTF格式文本(PC版本)

摘要: function GetRTF(RE: TRichedit): string;varstrStream: TStringStream;beginstrStream := TStringStream.Create('') ;tryRE.PlainText := False;RE.Lines.SaveT 阅读全文

posted @ 2019-03-11 11:21 疯狂delphi 阅读(1031) 评论(1) 推荐(0) 编辑

数据类型表(DELPHI、C++)

摘要: delphi整型数据表 Integer -2147483648..2147483647 signed 32-bit Cardinal 0..4294967295 unsigned 32-bit Shortint -128..127 signed 8-bit Smallint -32768..3276 阅读全文

posted @ 2019-03-11 10:33 疯狂delphi 阅读(425) 评论(0) 推荐(0) 编辑

对程序进行注释

摘要: 对程序进行注释1.注释的类型:单行注释和多行注释>单行注释使用双斜杠(//)来表示。双斜杠告诉编译器,忽略之后到行尾的所有内容。>多行注释以斜杠和星(/*)打头。这种注释标记告诉编译器,忽略之后到星号斜杠(*/)之间的所有内容。 阅读全文

posted @ 2019-03-11 10:04 疯狂delphi 阅读(635) 评论(0) 推荐(0) 编辑

2019年3月5日

QLabel设置文字大小和颜色

摘要: https://blog.csdn.net/fm0517/article/details/4805462 ui.label是QLabel ui.label_4->setText("some text"); //设置字号 QFont ft;ft.setPointSize(12);ui.label_4- 阅读全文

posted @ 2019-03-05 20:17 疯狂delphi 阅读(2854) 评论(0) 推荐(0) 编辑

2019年2月28日

使用标准名称空间

摘要: 1.using std::count; 1 int main(int argc, char *argv[]) 2 { 3 using std::count; 4 using std::endl; 5 using std::cin; 6 char response; 7 cin >> response 阅读全文

posted @ 2019-02-28 20:07 疯狂delphi 阅读(307) 评论(0) 推荐(0) 编辑

2019年2月27日

Qt-时间转换、时间加减、获取当前时间并格式化输出及将积秒转换成时间

摘要: 相关资料 https://blog.csdn.net/xb_ma/article/details/10946901 说明https://blog.csdn.net/m0_37837218/article/details/103805050 实例3https://blog.csdn.net/yangy 阅读全文

posted @ 2019-02-27 15:12 疯狂delphi 阅读(16420) 评论(0) 推荐(3) 编辑

安装python后,启动时提示“0x00000000001”内存错误

摘要: 直关资料: https://www.cnblogs.com/onewalee/p/7887747.html 问题情况:安装python后,在CMD命令中启动python就提示一个内存错误的对话框,重新安装python不行,换一个版本的python也不行。 问题原因:不清楚。 问题处理:安装win补丁 阅读全文

posted @ 2019-02-27 09:31 疯狂delphi 阅读(629) 评论(0) 推荐(0) 编辑

2019年2月9日

教程-三种空格unicode(\u00A0,\u0020,\u3000)表示的区别

摘要: 1.不间断空格\u00A0,主要用在office中,让一个单词在结尾处不会换行显示,快捷键ctrl+shift+space ; 2.半角空格(英文符号)\u0020,代码中常用的; 3.全角空格(中文符号)\u3000,中文文章中使用; 阅读全文

posted @ 2019-02-09 12:36 疯狂delphi 阅读(2711) 评论(0) 推荐(0) 编辑

上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 75 下一页

导航