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

2019年4月23日

[C++]Qt 如何处理密集型耗时的事情(频繁调用QApplication::processEvents)

摘要: https://www.cnblogs.com/senior-engineer/p/5598133.html https://www.cnblogs.com/findumars/p/5607683.html api含义:QCoreApplication::processEvents() 将处理所有事 阅读全文

posted @ 2019-04-23 13:59 疯狂delphi 阅读(1041) 评论(0) 推荐(0)

2019年4月19日

[C++]深入解析结构化异常处理(SEH)

摘要: http://www.cppblog.com/weiym/archive/2015/02/27/209884.html 尽管以前写过一篇SEH相关的文章《关于SEH的简单总结》, 但那真的只是皮毛,一直对Windows异常处理的原理似懂非懂, 看了下面的文章 ,一切都豁然开朗. 1997年文章,Wi 阅读全文

posted @ 2019-04-19 10:28 疯狂delphi 阅读(3554) 评论(1) 推荐(1)

[C++]“error C2712: 无法在要求对象展开的函数中使用__try”解决方案

摘要: https://blog.csdn.net/shiqw5696/article/details/80664749 前段时间写了一篇关于C++异常捕获及异常处理的文章:c++异常捕获及异常处理try-throw-catch 严格的来说,那不算是一篇完整的文章,更多的是提出我的疑惑。顺便总结了一下网友关 阅读全文

posted @ 2019-04-19 09:00 疯狂delphi 阅读(2797) 评论(0) 推荐(0)

2019年4月18日

[C++]Qt程式异常崩溃处理技巧(Win)

摘要: 文章转载来自 http://www.cnblogs.com/lcchuguo/p/5177715.html 作者 lcchuguo https://blog.csdn.net/baidu_33570760/article/details/52221863 这篇文章谈的是 Qt4 程式在视窗系统下的异 阅读全文

posted @ 2019-04-18 19:37 疯狂delphi 阅读(5908) 评论(0) 推荐(0)

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 阅读(1288) 评论(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 阅读(1718) 评论(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 阅读(1047) 评论(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 阅读(428) 评论(0) 推荐(0)

对程序进行注释

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

posted @ 2019-03-11 10:04 疯狂delphi 阅读(656) 评论(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 阅读(2887) 评论(0) 推荐(0)

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

导航

统计

点击右上角即可分享
微信分享提示