1 #include "iostream" 2 #include "windows.h" 3 #include "cstring" 4 using namespace std; 5 6 7 static int g_nIndex=0; 8 const int MAX_TIMES=10; 9 s...
当数据库的字段值允许为空时, 而且此时内容也为空时,则执行查询会出错,例如
CString str = pRecordset->GetFields()->GetItem((long)0)->GetValue();
或者
str=
pRecordset->GetCollect("posInfo");
会弹出如下窗口提示出错!
更加奇怪的是 catch(....
分类:
数据库 时间:
2014-06-18 12:15:56
阅读次数:
415
1 #include "iostream" 2 #include "windows.h" 3 #include "cstring" 4 using namespace std; 5 6 HANDLE g_hSemThreads=INVALID_HANDLE_VALUE; 7 8 static ...
MFCVisual Studio 2008CString 的 Format
中不能这样存在str.Format(_T("Cool(\%)")); 或者str.Format(_T("Cool(%)"));
即format非CString类型值时不能带%改:str = (_T("Cool(\%)"));
分类:
其他好文 时间:
2014-06-16 00:10:27
阅读次数:
234
1 #include "iostream" 2 #include "windows.h" 3 #include "cstring" 4 using namespace std; 5 6 static LPCTSTR g_szContinueEvent="w2kdg.EventDemo.event.....
1.使用CTime类 CString str; //获取系统时间 CTime tm;
tm=CTime::GetCurrentTime(); str=tm.Format("现在时间是%Y年%m月%d日 %X
%H:%M:%S");MessageBox(str,NULL,MB_OK);%a...
分类:
其他好文 时间:
2014-06-10 19:46:24
阅读次数:
337
std::string CStringToSTDStr(const CString& theCStr)
{
// Convert the CString to a regular char array
const int theCStrLen = theCStr.GetLength();
char *buffer = (char*)malloc(sizeof(char)*(theCStrLe...
分类:
其他好文 时间:
2014-06-08 16:33:53
阅读次数:
218
问题链接:http://acm.hdu.edu.cn/showproblem.php?pid=1495
题目大意:一个瓶子容积s,两个杯子容积分别n,m,并且都没有刻度(不能比对噢!)。相互倒水,求平分的他们的最少倒水次数。
思路:暴力搜索吧。并且求最少,(即最优解),随意上BFS;
思考:状态,转移过程,怎么剪纸。
惨痛的debug,我不解释了。...
分类:
其他好文 时间:
2014-06-08 15:48:26
阅读次数:
234
#include //使用C++标准库的string类时using namespace
std;//同上#include #include #include
//要将string类和int类型直接转换最好有这些包含,//因为自己写一个转换函数比较方便,函数定义参考如下string getstring...
分类:
编程语言 时间:
2014-06-08 06:37:42
阅读次数:
304
CString是MFC的字符串类,它不是基本类型,而是对字符串的封装,它是自适应的,在UNICODE环境下就是CStringW,在非UNICODE环境下就是CStringA。
CString的三种形式
Visual C++.NET中将CStringT作为ATL和MFC的共享的“一般”字符串类,它有CString、CStringA和CStringW三种形式,分别操作不...
分类:
其他好文 时间:
2014-06-07 15:34:06
阅读次数:
204