ARX程序中怎样写文件啊
在VC中可以象下面写,就可以建立一个文件bb.txt。但在编arx程序时好像生成不了文件啊时怎么回事啊,要怎么样才能呢?
file.Open("bb.txt",CFile::modeCreate | CFile::modeWrite);<BR>file.Write("aa",2);
回复
CFile myFile("C:\\test.txt", CFile::modeCreate | CFile::modeReadWrite);CString str = "Hello World!\n How are you?";
CArchive arStore(&myFile, CArchive::store);
arStore.WriteString( str );
arStore.Close();
// for autocad2004
请问版主,arx中能不能实现像单文档或多文档那样的串行化保存对话框中的数据
页:
[1]