|
EVC4.0中,提示'TextOut' : is not a member of 'CClientDC'
[复制链接]
代码如下:
char buff[10];
CClientDC dc(this);
sprintf(buff,"[%o3d,%03d]",point.x,point.y);
dc.TextOut(20,20,buff,strlen(buff));
代码的意思是把鼠标当前位置输出
提示'TextOut' : is not a member of 'CClientDC'
请问是怎么回事?
|
|