摘要: TCHAR name[40]; acedGetString(0, _T("输入名字"), name); acutPrintf(name); CString na; na.Format(_T("%s"), name); acutPrintf(na);格式化字符串 阅读全文
posted @ 2015-07-30 15:23 xzh1993 阅读(884) 评论(0) 推荐(0) 编辑
摘要: strcmp用来比较ANSI字符串,而_tcscmp用来比较UNICODE(宽字符)的字符串。ANSI字符串中,1个英文字母为1个字节,1个中文字符为2个字节,遇到0字符表示字符串结束。而在UNICODE(宽字符)中,所有的字符都为2个字节,此时字符串中间的字节,可能含有0字符,此时就不能用strc... 阅读全文
posted @ 2015-07-30 13:41 xzh1993 阅读(472) 评论(0) 推荐(0) 编辑
摘要: // 提示用户选择选择方式 acedInitGet(0, _T("W CP")); int nRs = acedGetKword(_T("\n请输入关键字确定选择方式[窗选(W)/圈交(CP)]:"), szKword);if (RTCAN == nRs) // 取消 { return; } els... 阅读全文
posted @ 2015-07-30 10:13 xzh1993 阅读(1072) 评论(0) 推荐(0) 编辑