
Windows
文章平均质量分 78
fancylea
本博客搬迁至http://www.macode.net/
展开
-
关于GetMessage和DispatchMessage
在看 Programming Role Playing Games with DirectX 一书中有下面的代码片段 while(Msg.message != WM_QUIT)...{ if(PeekMessage(&Msg,NULL,0,0,PM_REMOVE)) ...{ TranslateMessage(&Msg); DispatchMes原创 2006-08-11 16:53:00 · 3883 阅读 · 1 评论 -
Using the WebBrowser Control from C/C++ (From MSDN)
Using the WebBrowser Control from C/C++This section describes some common implementations of the WebBrowser control in C/C++, including: WebBrowser Control Basics Adding Internet Brows转载 2008-04-23 17:53:00 · 6018 阅读 · 0 评论 -
Elaborate on video acquisition on Microsoft Windows
What’s video Video is the technology of electronically capturing, recording, processing, storing, transmitting, and reconstructing a sequence of still images representing scenes in motion. Video t原创 2008-03-13 17:55:00 · 802 阅读 · 0 评论 -
在桌面中嵌入窗体
转自:http://www.k8w.net/technology/develop/200710/67.html 前几天在网上看到一个软件的介绍:可以嵌入桌面,即使是“显示桌面”也不会影响此程序。看作者说的好像有多么的神奇一样。周未就回来试一下。最后发现,Windows这个桌面还真是复杂和有意思。 首先要分析Windows桌面。 打开老牌软件"Spy Window"。查看一下桌面。取得一个“转载 2008-03-02 16:02:00 · 910 阅读 · 0 评论 -
Video Capture and play
Capture video in machine A -> transfer the data on internet -> play the data on machine BThis article will cover follow point: Capture video on windows system( Video For Windows API)原创 2008-02-26 17:56:00 · 1707 阅读 · 0 评论 -
Wave APIs
Here is the list of all the Wave APIs that used for recording and playing audio in windows simply:The APIs are given by calling steps, refer MSDN for the detail.Recording原创 2008-02-10 21:18:00 · 778 阅读 · 0 评论 -
实时录音并显示波形、频谱
原文出处:http://vip.6to23.com/NowCan1/tech/snd_wave.htm 感谢作者分享他的成果!本文讲述如何实时录音,以及将录音波形频谱实时显示的方法。Windows提供了一个多媒体控制接口(MCI),用它可以录音,很方便。但是这种方法不能实时给出录音的原始数据,因此要显示波形和频谱都是不可能实现的。要达到实时的效果,就要使用Windows提供的另一套函数,转载 2008-02-10 15:55:00 · 3798 阅读 · 0 评论 -
Usage of MFC CRectTracker
1. Base concept and principle on how to use CRectTracker:Allows an item to be displayed, moved, and resized in different fashions. --Form MSDNExample to use this (when you drag the mouse, the RectTrac原创 2008-01-24 11:59:00 · 4011 阅读 · 3 评论 -
Windows XP快捷键
一、常规键盘快捷键 按键 目的 Ctrl + C 复制。 Ctrl + X 剪切。 Ctrl + V 粘贴。 Ctrl + Z 撤消。 DELETE 删除。 Shift + Delete 永久删除所选项,而不将它放到“回收站”中。 拖动某一项时按 CTRL 复制所选项。 拖动某一项时按 CTRL + SHIFT 创建所选项目的快捷键。 F2 重新命名所选项目。 CTRL + 向右键 将插入原创 2007-05-08 00:58:00 · 873 阅读 · 0 评论 -
windows bat
虽然windows中bat不如linux中shell强大,但是也是很好用的,看到了放这里 当字典用。-----批处理文件,在MS-DOS中,.bat文件是可执行文件,有一系列命令构成,其中可以包含对其他程序的调用。首先,批处理文件是一个文本文件,这个文件的每一行都是一条DOS命令(大部分时候就好像我们在DOS提示符下执行的命令行一样),你可以使用DOS下的Edit或者Windows的记事本转载 2008-05-04 22:46:00 · 6191 阅读 · 0 评论