高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】cstring
cstring
cstring
cstring strblkdef;
strblkdef.format("%s", blkname);
if (!pblktbl->has(strblkdef))
{
acutprintf("\n当前图形中未包含指定名称的块定义!");
pblktbl->close();
return;
}
错误如下
--------------------configuration: insertblkref - win32 debug--------------------
compiling...
insertblkrefcommands.cpp
compiling stl header files in release mode.
e:\insertblkref\insertblkrefcommands.cpp(25) : error c2065: 'cstring' : undeclared identifier
e:\insertblkref\insertblkrefcommands.cpp(25) : error c2146: syntax error : missing ';' before identifier 'strblkdef'
e:\insertblkref\insertblkrefcommands.cpp(25) : error c2065: 'strblkdef' : undeclared identifier
e:\insertblkref\insertblkrefcommands.cpp(26) : error c2228: left of '.format' must have class/struct/union type
error executing cl.exe.
zffinsertblkref.arx - 4 error(s), 0 warning(s)
程序中cstring是什么?
包含在哪个文件中?
在arx的help文件中也没有cstring?
你的工程不是mfc工程,当然用不了cstring 了,头文件是:afx.h
if this article is useful to you ,please let me know ,your reply is my power!
|