摘要:Document doc = Application.DocumentManager.MdiActiveDocument; Editor ed = doc.Editor; ed.WriteMessage(RXObject.GetClass(typeof(Polyline)).DxfName + "\n"); ...
阅读全文
08 2019 档案
摘要:在Solution Explorer中鼠标右键点击其project之后,Configuration(Release)->Configuration Propertity ->C++ ->Preprocessor ->Preprocessor Definitions在此处增加你想要的宏。
阅读全文
摘要:XXXXX.exe 中的 0x1004eec2 处有未经处理的异常: 0xC0000005: 读取位置 0xcccccccc 时发生访问冲突 DEBUG模式下总是出现此错误,改为Release模式,错误消失了。
阅读全文
摘要:Detected memory leaks!Dumping objects ->f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\occmgr.cpp(195) : {406} normal block at 0x0139A558, 40 bytes long. 这
阅读全文
摘要:1用反射 2只要在加事件之前先-=就可以了 button2.Click -= new EventHandler(button2_Click); button2.Click += new EventHandler(button2_Click);
阅读全文
摘要:参考https://blog.csdn.net/WU9797/article/details/81209531
阅读全文
摘要:可以直接从Navisworks 文件连接到外部数据库,并在场景中的对象与数据库表中的字段之间创建链接以引入额外特性。 1.连接mdb数据库 新建数据连接 单击“新建”按钮,新建数据连接,输入一个名称,ccc,再选择ODBC驱动类型:mdb数据库 这里的Database1.mdb内容如下: 点击确定,
阅读全文
摘要:https://docs.microsoft.com/en-us/cpp/dotnet/how-to-convert-system-string-to-standard-string?view=vs-2019 StringToHGlobalAnsi方法可以把托管 String^对象的内容复制到本机堆
阅读全文
摘要:需要在机器上安装:4.7.1的framework 下载地址: https://www.microsoft.com/zh-CN/download/details.aspx?id=56116 说明:net standard是一种标准,不是实现,core和framework才是将其实例化的载体。
阅读全文