摘要:
\n是C下的回撤换行。在MFC下得用\r\n。 阅读全文
摘要:
::Sleep(0)的使用 This function causes a thread to relinquish the remainder of its time slice and become unrunnable for an interval based on the value of 阅读全文
摘要:
Howto: Remove devices from Windows that are not connected to the system anymore 如何移除不再插入Windows设备的信息 启动命令提示符窗口,分别执行以下两条命令 reg add "HKEY_LOCAL_MACHINE\ 阅读全文
摘要:
调用memcpy不会崩溃和报错,但是调用delete和free函数都崩溃报错,报错信息如下: Heap block at 008B9968 modified at 008B9996 past requested size of 26 如果调整memcpy函数的复制长度至6则程序无反应。 所以在编程过 阅读全文
摘要:
手工修改注册表激活windows xp法: 1.安装原版windows xp 2.打开注册表regedit 3.找到主键 Hkey_Local_Machine\Software\Microsoft\WindowsNT\CurrentVersion\WPAEvents\ 4.删除子键lastWPAEv 阅读全文
摘要:
以上是不正常显示。 我这次遇到该问题的原因是资源名IDD_DLG_INTENSITY重复定义导致的, 所以在resource.h文件中去除重复定义就好了。 正常应该显示DD_XXX,如下图所示 阅读全文
摘要:
#include #include class Test { public: int a; int b; int c; Test() { a = 0; b = 0; c = 0; } } int main() { vector vecTest; for(int i... 阅读全文
摘要:
system("pause"); 这个函数存在于MSVCRTD.lib库中; 当要使用system("pause")这个函数,且libcmt.lb libcmtd.lib与MSVCRTD.lib的冲突时。我们的选择直接在Linker->Input->Ignore Specific Library中忽 阅读全文
摘要:
一 函数原型及参数 function MessageBox(hWnd: HWND; Text, Caption: PChar; Type: Word): Integer; hWnd:对话框父窗口句柄,对话框显示在Delphi窗体内,可使用窗体的Handle属性,否则可用0,使其直接作为桌面窗口的子窗 阅读全文
摘要:
第一步 使用chrome 按F12进入开发模式,拖动视频进度条到视频结束; 然后找到.m3u8以结尾的文件并保存为文本文件。 第二步 点开查看里面是否存在如下以ts结尾的文件内容 ...... /20180802/eXLFMdky/800kb/hls/QV7N1B14122999.ts/201808 阅读全文