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

2019年2月9日

html网页采集

摘要: UI_Less.pas: 1 unit UI_Less; 2 3 interface 4 5 uses 6 Windows, Classes, Messages, Forms, MsHtml, Urlmon, ActiveX; 7 8 const 9 WM_USER_STARTWALKING = W 阅读全文

posted @ 2019-02-09 10:48 疯狂delphi 阅读(898) 评论(0) 推荐(0) 编辑

2019年1月23日

[C++]Qt文本操作(按行读写)

摘要: 资料来源:https://blog.csdn.net/flyfish1986/article/details/79487104 1 #include <QDebug> 2 #include <QFile> 3 4 void ReadLine() 5 { 6 7 QFile file("要读的文件路径 阅读全文

posted @ 2019-01-23 17:45 疯狂delphi 阅读(1592) 评论(0) 推荐(0) 编辑

[C++]QString方法集

摘要: QString s = "hello world"; s. indexOf ( "o" )); //4 s. lastIndexOf ( "o" )); //7 阅读全文

posted @ 2019-01-23 17:08 疯狂delphi 阅读(698) 评论(0) 推荐(0) 编辑

2019年1月15日

hello.cpp 第一个C++程序(本博客没有特指都是以QT测试)

摘要: 操作步骤:1.文件->新建文件或项目(N)->New File or Project->Qt Console Application->Choose->“名称”中输入工程名称->“创建路径”中输入保存位置->下一步->选择“工具包”->下一步->完成。 1.新标准 1 #include <iostr 阅读全文

posted @ 2019-01-15 18:25 疯狂delphi 阅读(711) 评论(0) 推荐(0) 编辑

2019年1月9日

css font-family常用的黑体宋体等字体中英文对照

摘要: 资料来源: https://www.cnblogs.com/EnSnail/p/6792853.html 在实现网页效果时,细节很重要,字体也不例外,CSS:font-family常用字体中英文对照如下: 微软雅黑: Microsoft YaHei 宋体:SimSun 黑体:SimHei 仿宋: F 阅读全文

posted @ 2019-01-09 15:45 疯狂delphi 阅读(463) 评论(0) 推荐(0) 编辑

2019年1月4日

登陆方式设计

摘要: 1. 1 program Project1; 2 3 uses 4 Vcl.Forms, 5 Unit1 in 'Unit1.pas' {Form1}, 6 Unit2 in 'Unit2.pas' {Form2}; 7 8 {$R *.res} 9 10 begin 11 Application. 阅读全文

posted @ 2019-01-04 09:03 疯狂delphi 阅读(339) 评论(0) 推荐(0) 编辑

2018年12月29日

解析Delphi 窗口置顶,及非主窗口置顶

摘要: 方法一: procedure TForm1.Button2Click(Sender: TObject);begin Form2.Show; Application.NormalizeTopMosts; SetWindowPos(Form2.Handle, HWND_TOPMOST, 0, 0, 0, 阅读全文

posted @ 2018-12-29 10:08 疯狂delphi 阅读(2957) 评论(0) 推荐(0) 编辑

2018年11月29日

WIN锁屏+鼠标移动事件

摘要: winexec('rundll32.exe user32.dll, LockWorkStation', sw_hide); 1.shutdown.bat(关机) rundll32.Exe shell32.dll SHExitWindowsEx 1 2.logoff.bat(注销) rundll32. 阅读全文

posted @ 2018-11-29 20:01 疯狂delphi 阅读(939) 评论(0) 推荐(0) 编辑

2018年7月28日

BAT-显示桌面图标

摘要: echo offecho 显示用户的文件REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel /v {59031a47-3f72-44a7-89c5-5595fe6 阅读全文

posted @ 2018-07-28 00:02 疯狂delphi 阅读(1085) 评论(0) 推荐(0) 编辑

2018年6月8日

BAT-删除文件夹

摘要: 相关资料:https://www.cnblogs.com/EasonJim/p/6087636.html 可以删除空的文件夹,但是文件夹中有文件,无法删除。 @echo off rd "C:\temp" 删除整个文件夹,包括里面的文件。 @echo off rd /s /Q C:\temp 阅读全文

posted @ 2018-06-08 17:27 疯狂delphi 阅读(783) 评论(0) 推荐(0) 编辑

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

导航