上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 56 下一页

2018年3月2日

【转】C++ Incorrect Memory Usage and Corrupted Memory(模拟C++程序内存使用崩溃问题)

摘要: http://www.bogotobogo.com/cplusplus/CppCrashDebuggingMemoryLeak.php Incorrect Memory Usage and Corrupted Memory Here are the primary sources of the me 阅读全文

posted @ 2018-03-02 11:24 我来乔23 阅读(360) 评论(0) 推荐(0) 编辑

【转】Native Thread for Win32 C- Creating Processes(通俗易懂,非常好)

摘要: http://www.bogotobogo.com/cplusplus/multithreading_win32C.php To create a new process, we need to call CreateProcess(). Syntax: Parameters: The follow 阅读全文

posted @ 2018-03-02 11:10 我来乔23 阅读(307) 评论(0) 推荐(0) 编辑

【转】Native Thread for Win32 B-Threads Synchronization(通俗易懂,非常好)

摘要: http://www.bogotobogo.com/cplusplus/multithreading_win32B.php Synchronization Between Threads In the following example, two threads are used to calcul 阅读全文

posted @ 2018-03-02 11:03 我来乔23 阅读(203) 评论(0) 推荐(0) 编辑

【转】Native Thread for Win32 A- Create Thread(通俗易懂,非常好)

摘要: http://www.bogotobogo.com/cplusplus/multithreading_win32A.php Microsoft Windows operating system's support for multithreaded programming is almost sim 阅读全文

posted @ 2018-03-02 10:58 我来乔23 阅读(436) 评论(0) 推荐(0) 编辑

【转】关于OnPaint的工作机制

摘要: 转载出处:http://blog.csdn.net/foreverhuylee/article/details/21889025 用了两年的VC++,其实对OnPaint的工作原理一直都是一知半解。这两天心血来潮,到BBS上到处发帖询问,总算搞清楚了,现在总结一下。 对于窗口程序,一般有个特点:窗口 阅读全文

posted @ 2018-03-02 10:36 我来乔23 阅读(348) 评论(0) 推荐(0) 编辑

Window发声函数Beep、MessageBeep

摘要: C++ Code 1234567891011 WINBASEAPI BOOL WINAPI Beep(__in DWORD dwFreq, __in DWORD dwDuration ); WINUSERAPI BOOL WINAPI MessageBeep(__in UINT uType); C+ 阅读全文

posted @ 2018-03-02 09:51 我来乔23 阅读(3470) 评论(1) 推荐(0) 编辑

2018年3月1日

Sqlite - constraint failed[0x1555]: UNIQUE constraint failed

摘要: 执行插入操作时,出现异常constraint failed[0x1555]: UNIQUE constraint failed 意思是:sqlite 唯一约束失败 定位于某个表字段上,该字段是表的主键。 原因:插入的数据中该主键字段值在表中已有存在的记录。 解决方案:重新调整插入语句中该主键字段的值 阅读全文

posted @ 2018-03-01 15:41 我来乔23 阅读(20789) 评论(0) 推荐(1) 编辑

2018年2月13日

VC++ Splash Window封装类CSplash

摘要: Splash.h 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 阅读全文

posted @ 2018-02-13 15:50 我来乔23 阅读(568) 评论(0) 推荐(0) 编辑

通过代码注册COM、DLL组件

摘要: 注册代码如下: C++ Code 1234567891011121314151617181920212223242526272829303132333435363738 // // // //If returns Zero, DLL successfully registered... // -2  阅读全文

posted @ 2018-02-13 14:22 我来乔23 阅读(599) 评论(0) 推荐(0) 编辑

VC++:ActiveX Test Container

摘要: VC++6.0安装后包含了ActiveX Test Container工具,位置为: "C:\Program Files (x86)\Microsoft Visual Studio\Common\Tools\TSTCON32.EXE" 但是在VS2008以及VS2010中就不能明显地找到这个工具了~ 阅读全文

posted @ 2018-02-13 13:22 我来乔23 阅读(414) 评论(0) 推荐(0) 编辑

上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 56 下一页

导航