04 2015 档案

摘要:作者信息:罗树鹏http://www.cnblogs.com/luoshupeng由于笔者在实践过程中走了一些弯路,所以把这些情况记录下来,希望为后来者提供一些经验。在VC6.0时代,可以通过组件为工程加入SplashScreen,具体方法是通过IDE中的菜单Project->Add to Proj... 阅读全文
posted @ 2015-04-27 23:31 Lthis 阅读(860) 评论(0) 推荐(0)
摘要:#include #include #include #include #include int SearchStr(PTSTR pszString, int iStrLen, PTSTR pszSearchStr){ int i = 0; int iSearchStrlen = _tc... 阅读全文
posted @ 2015-04-27 22:00 Lthis 阅读(543) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/qiuchenl/article/details/7774641在编写windows程序时,很多时候要用到播放音乐的函数,而windows下就提供了一个函数PlaySound首先说下这个函数的使用范围,PlaySound函数用于播放一个音频文件,且这个文件时... 阅读全文
posted @ 2015-04-27 19:00 Lthis 阅读(2230) 评论(0) 推荐(0)
摘要:转自http://www.cnblogs.com/rosesmall/archive/2012/09/12/2681897.html::WritePrivateProfileString( _T("Options"), _T("Name"), m_strName, pApp->m_szIni );I... 阅读全文
posted @ 2015-04-27 12:56 Lthis 阅读(6308) 评论(0) 推荐(0)
摘要:先贴代码(小数点后6位) vc6.0测试#include "stdafx.h"#include #include int main(int argc, char* argv[]){ double d = 0.0; int nCount = 0; srand((int)time(0)... 阅读全文
posted @ 2015-04-18 20:18 Lthis 阅读(12583) 评论(0) 推荐(0)