
Windows 程序设计
文章平均质量分 62
mapleaves
多结交朋友,多分享快乐。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Windows 消息处理 - PeekMessage
当运行复杂的计算或循环的时候,为了使windows程序不产生假死现象(不响应任何消息,cpu100%占用).要在适当地方添下如下消息处理机能。// Process the threads window messageMSG msg;while (PeekMessage(&msg, 0, 0, 0, PM_REMOVE)) { if(msg.message==原创 2009-02-06 10:27:00 · 645 阅读 · 0 评论 -
多显示器(Multiple Display Monitors)编程-关于多重独立显示(Multiple independent displays)和桌面扩展(Large desktops)
通过这一段时间的资料查找,和实际编程,得到点启发,总结一下关于多显示器输出的问题。:多重独立显示(Multiple independent displays)这种模式,只要不是刀架到脖子上了,最好不要采用。先说说这种模式的限制1 win98以上的系统(应该没人用win95吧)需要至少2块独立的显卡。一卡多头是不可以的。这一点微软就没说清楚。2 gdi+,openGL不原创 2009-02-26 17:14:00 · 4423 阅读 · 0 评论